結果

問題 No.2034 Anti Lexicography
ユーザー mrngmrng
提出日時 2022-08-27 15:22:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 113 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 90,672 KB
最終ジャッジ日時 2024-10-14 13:04:40
合計ジャッジ時間 2,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,796 KB
testcase_01 AC 39 ms
52,168 KB
testcase_02 AC 40 ms
53,292 KB
testcase_03 AC 39 ms
51,876 KB
testcase_04 AC 38 ms
52,872 KB
testcase_05 AC 72 ms
90,492 KB
testcase_06 AC 73 ms
90,484 KB
testcase_07 AC 73 ms
90,248 KB
testcase_08 AC 76 ms
90,332 KB
testcase_09 AC 73 ms
90,468 KB
testcase_10 AC 73 ms
90,672 KB
testcase_11 AC 73 ms
90,092 KB
testcase_12 AC 73 ms
90,396 KB
testcase_13 AC 42 ms
58,136 KB
testcase_14 AC 42 ms
58,952 KB
testcase_15 AC 42 ms
58,676 KB
testcase_16 AC 42 ms
60,316 KB
testcase_17 AC 42 ms
58,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
t = []
for i in s:
	t.append(chr(ord('a')+(25-(ord(i)-ord('a')))))
print(''.join(t))
0