結果
| 問題 |
No.2034 Anti Lexicography
|
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-20 21:14:19 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 69 ms / 2,000 ms |
| コード長 | 163 bytes |
| コンパイル時間 | 212 ms |
| コンパイル使用メモリ | 82,724 KB |
| 実行使用メモリ | 87,100 KB |
| 最終ジャッジ日時 | 2025-03-20 21:14:59 |
| 合計ジャッジ時間 | 2,111 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
n = int(input())
s = input().strip()
result = []
for c in s:
new_char = chr(ord('z') - (ord(c) - ord('a')))
result.append(new_char)
print(''.join(result))
lam6er