結果
| 問題 |
No.2034 Anti Lexicography
|
| コンテスト | |
| ユーザー |
kuruton456
|
| 提出日時 | 2022-08-12 21:33:37 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 80 ms / 2,000 ms |
| コード長 | 92 bytes |
| コンパイル時間 | 301 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 12,892 KB |
| 最終ジャッジ日時 | 2024-09-23 01:10:24 |
| 合計ジャッジ時間 | 1,780 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
N = int(input())
S = input()
print(''.join([chr(122 - (ord(S[i]) - 97)) for i in range(N)]))
kuruton456