結果
| 問題 |
No.2034 Anti Lexicography
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 2 TLE * 2 -- * 11 |
ソースコード
N = int(input())
S = input()
ans = ""
for s in S:
x = ord(s) - 97
ans += chr(122 - x)
print(ans)