結果

問題 No.2034 Anti Lexicography
ユーザー Sigma_ArfSigma_Arf
提出日時 2022-08-12 21:25:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 260 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 265,292 KB
最終ジャッジ日時 2024-09-23 00:46:42
合計ジャッジ時間 7,070 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,768 KB
testcase_01 AC 38 ms
52,476 KB
testcase_02 AC 38 ms
53,136 KB
testcase_03 AC 38 ms
52,072 KB
testcase_04 AC 37 ms
52,316 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 48 ms
60,416 KB
testcase_14 AC 46 ms
60,544 KB
testcase_15 AC 49 ms
63,616 KB
testcase_16 AC 54 ms
72,320 KB
testcase_17 AC 60 ms
75,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=str(input())
A=['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
B=list(S)
C=[25-A.index(S[i]) for i in range(N)]
D=""
for i in range(N):
    D+=A[C[i]]
print(D)
0