結果

問題 No.2034 Anti Lexicography
ユーザー TomoyarnTomoyarn
提出日時 2022-10-29 16:53:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 107 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 87,208 KB
実行使用メモリ 264,404 KB
最終ジャッジ日時 2023-09-20 19:59:02
合計ジャッジ時間 23,933 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,256 KB
testcase_01 AC 65 ms
71,356 KB
testcase_02 AC 67 ms
71,324 KB
testcase_03 AC 64 ms
71,360 KB
testcase_04 AC 69 ms
71,556 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 71 ms
76,044 KB
testcase_14 AC 76 ms
76,200 KB
testcase_15 AC 71 ms
75,980 KB
testcase_16 AC 71 ms
75,928 KB
testcase_17 AC 74 ms
76,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

ans = ""

for s in S:
    x = ord(s) - 97
    ans += chr(122 - x)

print(ans)
0