eolymp
bolt
Попробуйте наш новый интерфейс для отправки задач
Задачи

My brother`s diary

My brother`s diary

Nowadays, people who want to communicate in a secure way use asymmetric encryption algorithms such as RSA. However, my older brother uses another, simpler encryption method for his diary entries. He uses a substitution cipher where each letter in the plaintext is substituted by another letter from the alphabet. The distance between the plaintext letter and the encrypted letter is fixed. If we would define this fixed distance \textbf{d} to \textbf{5}, \textbf{A} would be replaced by \textbf{F}, \textbf{B} by \textbf{G}, \textbf{C }by \textbf{H}, ..., \textbf{Y} by \textbf{D}, \textbf{Z} by \textbf{E}. With a fixed and known distance d the decryption would be somewhat simple. But my brother uses random distances for each of his diary entries. To decrypt his diary I have to guess the distance d for each entry. Thus, I use the well known phenomenon that the letter E is used more often in English words than other letters. Can you write a program for me that calculates the distance d based on the fact that the most used letter in the encrypted text corresponds to the letter E in plaintext? Of course, I am interested in the decrypted text, too. \InputFile The input consists of several test cases \textbf{c} that follow (\textbf{1} ≤ \textbf{c} ≤ \textbf{100}). Each test case is given in exactly one line containing one diary entry. Diary entries only use upper case letters (\textbf{A-Z}) and spaces. Each diary entry consists of at most \textbf{1000} encrypted letters (including spaces). \OutputFile For each test case, print one line containing the smallest possible distance \textbf{d} (\textbf{0} ≤ \textbf{d} ≤ \textbf{25}) and the decrypted text. If the decryption is not possible because there are multiple distances conforming to the rules above, print \textbf{NOT POSSIBLE} instead. Spaces are not encrypted.
Лимит времени 1 секунда
Лимит использования памяти 64 MiB
Входные данные #1
4
RD TQIJW GWTYMJWX INFWD JSYWNJX ZXJ F XNRUQJ JSHWDUYNTS YJHMSNVZJ
THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG
XVIDRE TFCCVXZRKV GIFXIRDDZEX TFEKVJK UVTIPGKZFE
XVIDRE TFCCVXZRKV GIFXIRDDZEX TFEKVJK
Выходные данные #1
5 MY OLDER BROTHERS DIARY ENTRIES USE A SIMPLE ENCRYPTION TECHNIQUE
10 JXU GKYSA RHEMD VEN ZKCFI ELUH JXU BQPO TEW
17 GERMAN COLLEGIATE PROGRAMMING CONTEST DECRYPTION
NOT POSSIBLE
Источник ACM ICPC German Collegiate Programming Contest 2011