結果
| 問題 | No.3132 暗号メッセージ |
| コンテスト | |
| ユーザー |
回転
|
| 提出日時 | 2025-05-16 21:02:28 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 66 ms / 2,000 ms |
| コード長 | 111 bytes |
| 記録 | |
| コンパイル時間 | 695 ms |
| コンパイル使用メモリ | 96,492 KB |
| 実行使用メモリ | 79,060 KB |
| 最終ジャッジ日時 | 2026-07-10 17:47:53 |
| 合計ジャッジ時間 | 2,821 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
N = int(input())
D = list(map(int,input().split()))
D.sort()
print("".join([chr(ord("A") + i%26) for i in D]))
回転