結果

問題 No.2034 Anti Lexicography
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-04 21:42:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 111 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 76,284 KB
最終ジャッジ日時 2024-09-04 21:42:33
合計ジャッジ時間 2,960 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,812 KB
testcase_01 AC 37 ms
52,032 KB
testcase_02 AC 38 ms
52,832 KB
testcase_03 AC 37 ms
52,684 KB
testcase_04 AC 37 ms
51,684 KB
testcase_05 AC 52 ms
74,844 KB
testcase_06 AC 53 ms
76,152 KB
testcase_07 AC 52 ms
74,604 KB
testcase_08 AC 54 ms
75,760 KB
testcase_09 AC 53 ms
76,284 KB
testcase_10 AC 54 ms
76,228 KB
testcase_11 AC 52 ms
75,984 KB
testcase_12 AC 53 ms
76,120 KB
testcase_13 AC 59 ms
58,528 KB
testcase_14 AC 41 ms
58,384 KB
testcase_15 AC 41 ms
59,240 KB
testcase_16 AC 41 ms
59,408 KB
testcase_17 AC 41 ms
59,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=list(input())
for i in range(n):
	s[i]=chr(25-(ord(s[i])-ord("a"))+ord("a"))
print("".join(s))
0