結果

問題 No.2034 Anti Lexicography
ユーザー 👑 rin204rin204
提出日時 2022-08-15 19:59:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 94 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 78,268 KB
最終ジャッジ日時 2024-10-02 08:24:11
合計ジャッジ時間 1,905 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,372 KB
testcase_01 AC 40 ms
52,272 KB
testcase_02 AC 39 ms
52,272 KB
testcase_03 AC 37 ms
52,796 KB
testcase_04 AC 37 ms
54,092 KB
testcase_05 AC 70 ms
78,052 KB
testcase_06 AC 71 ms
78,068 KB
testcase_07 AC 69 ms
77,820 KB
testcase_08 AC 69 ms
77,884 KB
testcase_09 AC 71 ms
78,268 KB
testcase_10 AC 68 ms
77,904 KB
testcase_11 AC 70 ms
78,064 KB
testcase_12 AC 70 ms
78,148 KB
testcase_13 AC 48 ms
63,060 KB
testcase_14 AC 48 ms
62,888 KB
testcase_15 AC 48 ms
62,788 KB
testcase_16 AC 48 ms
62,732 KB
testcase_17 AC 48 ms
64,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
for s in S:
    print(chr(97 + 97 + 25 - ord(s)), end="")
print()
0