結果
| 問題 | No.3132 暗号メッセージ | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2025-05-23 14:12:21 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                RE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 100 bytes | 
| コンパイル時間 | 508 ms | 
| コンパイル使用メモリ | 81,784 KB | 
| 実行使用メモリ | 69,588 KB | 
| 最終ジャッジ日時 | 2025-05-23 14:12:26 | 
| 合計ジャッジ時間 | 3,031 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | RE * 3 | 
| other | RE * 17 | 
ソースコード
input()
a=sorted(map(int,input().split()))
print(''.join([string.ascii_uppercase[i%26] for i in a]))
            
            
            
        