結果
| 問題 |
No.2034 Anti Lexicography
|
| コンテスト | |
| ユーザー |
vwxyz
|
| 提出日時 | 2022-09-06 14:09:52 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 293 ms / 2,000 ms |
| コード長 | 221 bytes |
| コンパイル時間 | 109 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 17,220 KB |
| 最終ジャッジ日時 | 2024-11-21 15:22:22 |
| 合計ジャッジ時間 | 3,570 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
from collections import defaultdict
import sys
readline=sys.stdin.readline
write=sys.stdout.write
N=int(readline())
ans_lst=[]
for s in readline().rstrip():
ans_lst.append(chr(97+97+25-ord(s)))
print(*ans_lst,sep="")
vwxyz