結果

問題 No.2034 Anti Lexicography
ユーザー lilictakalilictaka
提出日時 2022-08-12 22:24:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 119,300 KB
最終ジャッジ日時 2024-09-23 03:01:45
合計ジャッジ時間 2,447 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,532 KB
testcase_01 AC 39 ms
52,536 KB
testcase_02 AC 40 ms
52,468 KB
testcase_03 AC 39 ms
52,312 KB
testcase_04 AC 39 ms
52,444 KB
testcase_05 AC 128 ms
117,576 KB
testcase_06 AC 128 ms
118,796 KB
testcase_07 AC 126 ms
117,072 KB
testcase_08 AC 127 ms
118,896 KB
testcase_09 AC 128 ms
118,112 KB
testcase_10 AC 127 ms
119,300 KB
testcase_11 AC 130 ms
119,032 KB
testcase_12 AC 129 ms
118,900 KB
testcase_13 AC 50 ms
63,144 KB
testcase_14 AC 50 ms
63,048 KB
testcase_15 AC 51 ms
63,592 KB
testcase_16 AC 51 ms
65,468 KB
testcase_17 AC 50 ms
64,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
tmp = []
for s in S:
    tmp.append(ord(s)-ord('a'))
ans = []
for t in tmp:
    ans.append(chr(ord('z')-t))
print(*ans,sep='')
0