結果

問題 No.2034 Anti Lexicography
ユーザー ohanaohana
提出日時 2023-10-02 11:47:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 68,916 KB
最終ジャッジ日時 2024-07-26 13:42:18
合計ジャッジ時間 2,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,624 KB
testcase_01 AC 33 ms
51,964 KB
testcase_02 AC 34 ms
52,348 KB
testcase_03 AC 33 ms
52,180 KB
testcase_04 AC 33 ms
52,776 KB
testcase_05 AC 43 ms
66,864 KB
testcase_06 AC 43 ms
67,228 KB
testcase_07 AC 47 ms
67,072 KB
testcase_08 AC 47 ms
67,452 KB
testcase_09 AC 48 ms
66,712 KB
testcase_10 AC 53 ms
68,340 KB
testcase_11 AC 46 ms
67,412 KB
testcase_12 AC 45 ms
68,916 KB
testcase_13 AC 40 ms
58,856 KB
testcase_14 AC 39 ms
58,124 KB
testcase_15 AC 40 ms
58,700 KB
testcase_16 AC 40 ms
59,680 KB
testcase_17 AC 39 ms
58,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()

f = lambda x: chr(abs(ord(x) - ord("a") - 25) + ord("a"))
print("".join(map(f, s)))
0