結果

問題 No.2034 Anti Lexicography
ユーザー 👑 KazunKazun
提出日時 2022-08-12 21:23:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 107,204 KB
最終ジャッジ日時 2024-09-23 00:34:12
合計ジャッジ時間 2,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
65,400 KB
testcase_01 AC 56 ms
64,928 KB
testcase_02 AC 56 ms
63,812 KB
testcase_03 AC 56 ms
64,876 KB
testcase_04 AC 55 ms
63,684 KB
testcase_05 AC 129 ms
106,048 KB
testcase_06 AC 131 ms
106,788 KB
testcase_07 AC 127 ms
106,184 KB
testcase_08 AC 131 ms
106,952 KB
testcase_09 AC 128 ms
106,364 KB
testcase_10 AC 130 ms
106,944 KB
testcase_11 AC 129 ms
107,204 KB
testcase_12 AC 129 ms
106,848 KB
testcase_13 AC 64 ms
68,868 KB
testcase_14 AC 64 ms
69,040 KB
testcase_15 AC 66 ms
70,148 KB
testcase_16 AC 66 ms
69,740 KB
testcase_17 AC 64 ms
70,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from string import ascii_lowercase as X

N=int(input())
S=list(input())
T=[""]*N

for i in range(N):
    T[i]=X[~(X.index(S[i]))]

print(*T,sep="")
0