結果

問題 No.2034 Anti Lexicography
ユーザー miya145592miya145592
提出日時 2023-05-04 07:47:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 90,792 KB
最終ジャッジ日時 2024-05-01 20:28:31
合計ジャッジ時間 2,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,128 KB
testcase_01 AC 35 ms
52,308 KB
testcase_02 AC 34 ms
52,848 KB
testcase_03 AC 35 ms
52,736 KB
testcase_04 AC 36 ms
52,152 KB
testcase_05 AC 68 ms
90,792 KB
testcase_06 AC 69 ms
90,596 KB
testcase_07 AC 69 ms
90,400 KB
testcase_08 AC 69 ms
90,660 KB
testcase_09 AC 69 ms
90,296 KB
testcase_10 AC 71 ms
90,368 KB
testcase_11 AC 70 ms
90,568 KB
testcase_12 AC 69 ms
90,576 KB
testcase_13 AC 40 ms
58,644 KB
testcase_14 AC 40 ms
59,748 KB
testcase_15 AC 39 ms
59,100 KB
testcase_16 AC 40 ms
59,432 KB
testcase_17 AC 40 ms
59,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
T = []
for i, s in enumerate(S):
    c = ord(s)-ord('a')
    c = ord('z')-c
    T.append(chr(c))
print("".join(T))
0