結果

問題 No.2034 Anti Lexicography
ユーザー DrDrpilotDrDrpilot
提出日時 2022-08-19 16:24:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 110 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 262,828 KB
最終ジャッジ日時 2024-04-16 20:35:02
合計ジャッジ時間 4,422 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,704 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 38 ms
51,840 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 41 ms
60,128 KB
testcase_14 AC 41 ms
60,056 KB
testcase_15 AC 42 ms
64,712 KB
testcase_16 AC 44 ms
72,180 KB
testcase_17 AC 47 ms
75,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

alp='abcdefghijklmnopqrstuvwxyz'
input()
s=input()
ans=''
for i in s:
    ans+=alp[25-alp.index(i)]
print(ans)
0