結果

問題 No.2034 Anti Lexicography
ユーザー hir355hir355
提出日時 2022-08-12 21:21:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,616 KB
実行使用メモリ 99,776 KB
最終ジャッジ日時 2023-10-24 07:42:11
合計ジャッジ時間 2,512 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,280 KB
testcase_01 AC 38 ms
53,280 KB
testcase_02 AC 38 ms
53,280 KB
testcase_03 AC 38 ms
53,280 KB
testcase_04 AC 39 ms
53,280 KB
testcase_05 AC 118 ms
98,976 KB
testcase_06 AC 106 ms
99,504 KB
testcase_07 AC 106 ms
98,972 KB
testcase_08 AC 106 ms
99,776 KB
testcase_09 AC 104 ms
99,232 KB
testcase_10 AC 106 ms
99,776 KB
testcase_11 AC 106 ms
99,772 KB
testcase_12 AC 110 ms
99,776 KB
testcase_13 AC 50 ms
62,164 KB
testcase_14 AC 50 ms
62,164 KB
testcase_15 AC 52 ms
62,164 KB
testcase_16 AC 51 ms
64,212 KB
testcase_17 AC 52 ms
64,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
t = []
for c in s:
    t.append(chr(25 - ord(c) + 97 * 2))
print(*t, sep='')
0