結果

問題 No.2034 Anti Lexicography
ユーザー ikomaikoma
提出日時 2022-08-12 21:23:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 111 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 74,012 KB
最終ジャッジ日時 2024-09-23 00:37:38
合計ジャッジ時間 1,728 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,400 KB
testcase_01 AC 36 ms
53,040 KB
testcase_02 AC 36 ms
52,612 KB
testcase_03 AC 35 ms
52,488 KB
testcase_04 AC 36 ms
52,896 KB
testcase_05 AC 49 ms
72,880 KB
testcase_06 AC 49 ms
73,656 KB
testcase_07 AC 49 ms
73,332 KB
testcase_08 AC 49 ms
73,580 KB
testcase_09 AC 51 ms
73,284 KB
testcase_10 AC 51 ms
73,756 KB
testcase_11 AC 49 ms
73,472 KB
testcase_12 AC 52 ms
74,012 KB
testcase_13 AC 40 ms
58,264 KB
testcase_14 AC 40 ms
58,320 KB
testcase_15 AC 40 ms
58,664 KB
testcase_16 AC 40 ms
58,180 KB
testcase_17 AC 40 ms
59,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=map(int,input().split())
S=input().strip()
a=ord("a")
z=ord("z")
print("".join([chr(z-ord(s)+a) for s in S]))
0