結果
問題 | No.2034 Anti Lexicography |
ユーザー | Tomoyarn |
提出日時 | 2022-10-29 16:53:16 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 107 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 81,956 KB |
実行使用メモリ | 270,032 KB |
最終ジャッジ日時 | 2024-07-06 14:52:23 |
合計ジャッジ時間 | 7,770 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
60,020 KB |
testcase_01 | AC | 40 ms
51,940 KB |
testcase_02 | AC | 38 ms
52,104 KB |
testcase_03 | AC | 39 ms
52,872 KB |
testcase_04 | AC | 39 ms
52,124 KB |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
N = int(input()) S = input() ans = "" for s in S: x = ord(s) - 97 ans += chr(122 - x) print(ans)