結果
| 問題 |
No.2034 Anti Lexicography
|
| コンテスト | |
| ユーザー |
hir355
|
| 提出日時 | 2022-08-12 21:21:41 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 109 ms / 2,000 ms |
| コード長 | 105 bytes |
| コンパイル時間 | 223 ms |
| コンパイル使用メモリ | 82,720 KB |
| 実行使用メモリ | 100,480 KB |
| 最終ジャッジ日時 | 2024-09-23 00:26:28 |
| 合計ジャッジ時間 | 2,284 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
n = int(input())
s = input()
t = []
for c in s:
t.append(chr(25 - ord(c) + 97 * 2))
print(*t, sep='')
hir355