結果
| 問題 | No.3132 暗号メッセージ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-05-23 14:12:21 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 100 bytes |
| 記録 | |
| コンパイル時間 | 241 ms |
| コンパイル使用メモリ | 95,728 KB |
| 実行使用メモリ | 93,440 KB |
| 最終ジャッジ日時 | 2026-07-10 22:48:31 |
| 合計ジャッジ時間 | 5,270 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 17 |
ソースコード
input()
a=sorted(map(int,input().split()))
print(''.join([string.ascii_uppercase[i%26] for i in a]))