結果

問題 No.2034 Anti Lexicography
ユーザー ikomaikoma
提出日時 2022-08-12 21:23:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 111 bytes
コンパイル時間 1,055 ms
コンパイル使用メモリ 81,508 KB
実行使用メモリ 73,632 KB
最終ジャッジ日時 2023-10-24 07:54:42
合計ジャッジ時間 1,919 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,160 KB
testcase_01 AC 39 ms
53,160 KB
testcase_02 AC 40 ms
53,160 KB
testcase_03 AC 39 ms
53,160 KB
testcase_04 AC 39 ms
53,160 KB
testcase_05 AC 53 ms
73,528 KB
testcase_06 AC 54 ms
73,612 KB
testcase_07 AC 55 ms
73,528 KB
testcase_08 AC 54 ms
73,632 KB
testcase_09 AC 54 ms
73,576 KB
testcase_10 AC 55 ms
73,632 KB
testcase_11 AC 54 ms
73,632 KB
testcase_12 AC 54 ms
73,632 KB
testcase_13 AC 44 ms
59,000 KB
testcase_14 AC 43 ms
59,000 KB
testcase_15 AC 42 ms
59,000 KB
testcase_16 AC 42 ms
59,000 KB
testcase_17 AC 43 ms
59,000 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