結果

問題 No.2034 Anti Lexicography
ユーザー 👑 H20H20
提出日時 2022-08-12 21:23:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 96,324 KB
最終ジャッジ日時 2023-10-24 07:52:49
合計ジャッジ時間 2,035 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,292 KB
testcase_01 AC 38 ms
53,292 KB
testcase_02 AC 38 ms
53,292 KB
testcase_03 AC 38 ms
53,292 KB
testcase_04 AC 38 ms
53,292 KB
testcase_05 AC 82 ms
96,168 KB
testcase_06 AC 82 ms
96,300 KB
testcase_07 AC 82 ms
96,172 KB
testcase_08 AC 81 ms
96,324 KB
testcase_09 AC 81 ms
96,244 KB
testcase_10 AC 83 ms
96,324 KB
testcase_11 AC 80 ms
96,324 KB
testcase_12 AC 80 ms
96,324 KB
testcase_13 AC 43 ms
59,816 KB
testcase_14 AC 43 ms
59,816 KB
testcase_15 AC 44 ms
59,816 KB
testcase_16 AC 44 ms
59,816 KB
testcase_17 AC 44 ms
59,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(input())
ANS = []
for a in A:
    ANS.append(chr(ord('a')+25-(ord(a)-ord('a'))))
print(''.join(map(str, ANS)))
0