結果

問題 No.2034 Anti Lexicography
ユーザー ああいいああいい
提出日時 2022-08-14 07:26:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 87,128 KB
最終ジャッジ日時 2024-09-25 09:01:06
合計ジャッジ時間 1,887 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,036 KB
testcase_01 AC 38 ms
52,364 KB
testcase_02 AC 37 ms
53,004 KB
testcase_03 AC 36 ms
52,688 KB
testcase_04 AC 37 ms
51,940 KB
testcase_05 AC 71 ms
86,968 KB
testcase_06 AC 71 ms
87,128 KB
testcase_07 AC 72 ms
86,732 KB
testcase_08 AC 73 ms
86,744 KB
testcase_09 AC 72 ms
86,724 KB
testcase_10 AC 71 ms
86,744 KB
testcase_11 AC 72 ms
86,852 KB
testcase_12 AC 72 ms
86,728 KB
testcase_13 AC 41 ms
58,360 KB
testcase_14 AC 42 ms
58,276 KB
testcase_15 AC 41 ms
58,552 KB
testcase_16 AC 43 ms
60,332 KB
testcase_17 AC 41 ms
58,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

ans = []
for s in S:
    t = ord(s) - ord("a")
    c = chr(25 - t + ord("a"))
    ans.append(c)
print("".join(ans))
0