結果

問題 No.2034 Anti Lexicography
ユーザー TomoyarnTomoyarn
提出日時 2022-10-29 16:57:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 147 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 87,060 KB
実行使用メモリ 264,072 KB
最終ジャッジ日時 2023-09-20 20:02:48
合計ジャッジ時間 7,246 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,644 KB
testcase_01 AC 66 ms
71,432 KB
testcase_02 AC 66 ms
71,348 KB
testcase_03 AC 65 ms
71,360 KB
testcase_04 AC 66 ms
71,572 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 70 ms
76,276 KB
testcase_14 AC 70 ms
76,148 KB
testcase_15 AC 93 ms
76,156 KB
testcase_16 AC 72 ms
75,940 KB
testcase_17 AC 73 ms
76,576 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