結果

問題 No.2034 Anti Lexicography
ユーザー mink1618033mink1618033
提出日時 2022-08-12 21:25:29
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 81,796 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2023-10-24 08:04:01
合計ジャッジ時間 2,181 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,284 KB
testcase_01 AC 39 ms
53,284 KB
testcase_02 AC 38 ms
53,284 KB
testcase_03 AC 39 ms
53,284 KB
testcase_04 AC 38 ms
53,284 KB
testcase_05 AC 82 ms
96,252 KB
testcase_06 AC 83 ms
96,360 KB
testcase_07 AC 83 ms
96,232 KB
testcase_08 AC 82 ms
96,384 KB
testcase_09 AC 82 ms
96,304 KB
testcase_10 AC 83 ms
96,384 KB
testcase_11 AC 82 ms
96,384 KB
testcase_12 AC 81 ms
96,384 KB
testcase_13 AC 44 ms
59,532 KB
testcase_14 AC 42 ms
59,532 KB
testcase_15 AC 42 ms
59,532 KB
testcase_16 AC 43 ms
59,532 KB
testcase_17 AC 43 ms
59,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(input())
ansl = []
for i in s:
    num = ord(i)-97
    #print(i,num)
    ansl.append(chr(97+25-num))
print("".join(ansl))
0