結果

問題 No.3132 暗号メッセージ
コンテスト
ユーザー 👑 loop0919
提出日時 2025-05-02 21:27:15
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 206 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 240 ms
コンパイル使用メモリ 96,372 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2026-07-10 10:44:21
合計ジャッジ時間 2,854 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

N = int(input())
C = list(map(int, input().split()))

A = [c // 26 for c in C]
B = [c % 26 for c in C]

order = sorted([*range(N)], key=lambda i: A[i])
print(*[chr(B[i] + ord('A')) for i in order], sep="")
0