結果
| 問題 |
No.3132 暗号メッセージ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-05-02 22:00:34 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 36 ms / 2,000 ms |
| コード長 | 734 bytes |
| コンパイル時間 | 386 ms |
| コンパイル使用メモリ | 82,048 KB |
| 実行使用メモリ | 52,480 KB |
| 最終ジャッジ日時 | 2025-05-02 22:00:36 |
| 合計ジャッジ時間 | 1,769 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
def solve(n, D):
original = [num % 26 for num in D]
alpha = {
0: 'A', 1: 'B', 2: 'C', 3: 'D', 4: 'E', 5: 'F', 6: 'G', 7: 'H',
8: 'I', 9: 'J', 10: 'K', 11: 'L', 12: 'M', 13: 'N', 14: 'O', 15: 'P',
16: 'Q', 17: 'R', 18: 'S', 19: 'T', 20: 'U', 21: 'V', 22: 'W', 23: 'X',
24: 'Y', 25: 'Z'
}
B = [(num - (num % 26)) // 26 for num in D]
sortedB = [(i, b) for i, b in enumerate(B)]
sortedB.sort(key=lambda x: x[1])
original_positions = [pair[0] for pair in sortedB]
decrypt = ''.join([alpha[original[pos]] for pos in original_positions])
return decrypt
n = int(input())
D = list(map(int, input().split()))
decrypted_message = solve(n, D)
print(decrypted_message)