結果

問題 No.2034 Anti Lexicography
ユーザー PralaPrala
提出日時 2024-08-12 13:14:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,060 KB
最終ジャッジ日時 2024-08-12 13:14:13
合計ジャッジ時間 3,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
64,400 KB
testcase_01 AC 55 ms
64,256 KB
testcase_02 AC 53 ms
63,688 KB
testcase_03 AC 53 ms
63,964 KB
testcase_04 AC 55 ms
63,776 KB
testcase_05 AC 79 ms
88,060 KB
testcase_06 AC 75 ms
87,876 KB
testcase_07 AC 74 ms
87,884 KB
testcase_08 AC 78 ms
87,420 KB
testcase_09 AC 76 ms
87,388 KB
testcase_10 AC 75 ms
87,828 KB
testcase_11 AC 74 ms
87,540 KB
testcase_12 AC 77 ms
87,908 KB
testcase_13 AC 54 ms
65,124 KB
testcase_14 AC 54 ms
66,344 KB
testcase_15 AC 54 ms
66,716 KB
testcase_16 AC 59 ms
66,520 KB
testcase_17 AC 59 ms
66,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from string import ascii_lowercase
abc = ascii_lowercase

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

ans = []
for i in range(N):
	ans.append(abc[25-abc.index(S[i])])
	
print(''.join(ans))
0