結果

問題 No.2034 Anti Lexicography
ユーザー DrDrpilotDrDrpilot
提出日時 2022-08-19 16:24:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 110 bytes
コンパイル時間 1,028 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 262,716 KB
最終ジャッジ日時 2024-10-07 23:38:19
合計ジャッジ時間 6,176 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,004 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
51,328 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 38 ms
51,456 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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