結果

問題 No.2034 Anti Lexicography
ユーザー gr1msl3ygr1msl3y
提出日時 2022-08-15 22:29:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 82 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 76,316 KB
最終ジャッジ日時 2024-04-10 08:41:19
合計ジャッジ時間 1,841 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,568 KB
testcase_01 AC 32 ms
51,916 KB
testcase_02 AC 58 ms
52,812 KB
testcase_03 AC 38 ms
51,828 KB
testcase_04 AC 34 ms
52,144 KB
testcase_05 AC 50 ms
76,316 KB
testcase_06 AC 50 ms
75,872 KB
testcase_07 AC 49 ms
76,192 KB
testcase_08 AC 50 ms
76,240 KB
testcase_09 AC 51 ms
76,300 KB
testcase_10 AC 48 ms
76,072 KB
testcase_11 AC 50 ms
75,856 KB
testcase_12 AC 48 ms
75,880 KB
testcase_13 AC 38 ms
58,628 KB
testcase_14 AC 37 ms
58,616 KB
testcase_15 AC 36 ms
60,104 KB
testcase_16 AC 36 ms
59,640 KB
testcase_17 AC 37 ms
58,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
T = ''.join(chr(97*2+25-ord(s)) for s in S)
print(T)
0