結果

問題 No.2034 Anti Lexicography
ユーザー lilictakalilictaka
提出日時 2022-08-12 22:24:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 118,436 KB
最終ジャッジ日時 2023-10-24 10:37:05
合計ジャッジ時間 2,435 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,420 KB
testcase_01 AC 35 ms
53,420 KB
testcase_02 AC 36 ms
53,420 KB
testcase_03 AC 36 ms
53,420 KB
testcase_04 AC 35 ms
53,420 KB
testcase_05 AC 122 ms
117,264 KB
testcase_06 AC 122 ms
118,268 KB
testcase_07 AC 126 ms
116,988 KB
testcase_08 AC 123 ms
118,392 KB
testcase_09 AC 123 ms
117,800 KB
testcase_10 AC 124 ms
118,436 KB
testcase_11 AC 125 ms
118,436 KB
testcase_12 AC 124 ms
118,436 KB
testcase_13 AC 48 ms
62,300 KB
testcase_14 AC 48 ms
62,300 KB
testcase_15 AC 51 ms
64,348 KB
testcase_16 AC 49 ms
64,348 KB
testcase_17 AC 51 ms
64,348 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