結果
| 問題 | No.2034 Anti Lexicography |
| コンテスト | |
| ユーザー |
sotanishy
|
| 提出日時 | 2022-08-12 21:22:36 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 61 ms / 2,000 ms |
| + 524µs | |
| コード長 | 151 bytes |
| 記録 | |
| コンパイル時間 | 240 ms |
| コンパイル使用メモリ | 96,460 KB |
| 実行使用メモリ | 83,968 KB |
| 最終ジャッジ日時 | 2026-09-02 21:00:21 |
| 合計ジャッジ時間 | 3,219 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
import sys
input = sys.stdin.readline
N = int(input())
S = input().rstrip()
T = "".join(map(lambda x: chr(ord('a')+25-(ord(x)-ord('a'))), S))
print(T)
sotanishy