結果

問題 No.2034 Anti Lexicography
ユーザー TomoyarnTomoyarn
提出日時 2022-10-29 16:57:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 147 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 263,744 KB
最終ジャッジ日時 2024-07-06 14:55:37
合計ジャッジ時間 22,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,840 KB
testcase_01 AC 31 ms
51,840 KB
testcase_02 AC 30 ms
51,456 KB
testcase_03 AC 30 ms
51,456 KB
testcase_04 AC 31 ms
51,712 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 36 ms
59,264 KB
testcase_14 AC 36 ms
59,520 KB
testcase_15 AC 36 ms
62,976 KB
testcase_16 AC 38 ms
71,296 KB
testcase_17 AC 42 ms
75,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
V = {}
for i in range(97, 127):
    V[chr(i)] = chr(122 - (i - 97))

ans = ""

for s in S:
    ans += V[s]

print(ans)
0