結果

問題 No.2034 Anti Lexicography
ユーザー 👑 KazunKazun
提出日時 2022-08-12 21:23:00
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 81,524 KB
実行使用メモリ 106,364 KB
最終ジャッジ日時 2023-10-24 07:50:44
合計ジャッジ時間 2,881 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
63,488 KB
testcase_01 AC 58 ms
63,488 KB
testcase_02 AC 57 ms
63,488 KB
testcase_03 AC 58 ms
63,488 KB
testcase_04 AC 63 ms
63,488 KB
testcase_05 AC 133 ms
105,372 KB
testcase_06 AC 135 ms
106,180 KB
testcase_07 AC 132 ms
105,244 KB
testcase_08 AC 134 ms
106,336 KB
testcase_09 AC 134 ms
105,732 KB
testcase_10 AC 135 ms
106,364 KB
testcase_11 AC 134 ms
106,364 KB
testcase_12 AC 135 ms
106,360 KB
testcase_13 AC 68 ms
68,752 KB
testcase_14 AC 68 ms
68,752 KB
testcase_15 AC 69 ms
68,752 KB
testcase_16 AC 69 ms
70,800 KB
testcase_17 AC 68 ms
70,800 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