結果

問題 No.2034 Anti Lexicography
ユーザー 👑 rin204rin204
提出日時 2022-08-15 19:59:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 94 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 78,264 KB
最終ジャッジ日時 2024-04-10 06:44:12
合計ジャッジ時間 1,989 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,568 KB
testcase_01 AC 36 ms
51,908 KB
testcase_02 AC 36 ms
51,752 KB
testcase_03 AC 35 ms
52,548 KB
testcase_04 AC 36 ms
52,400 KB
testcase_05 AC 64 ms
78,012 KB
testcase_06 AC 67 ms
78,100 KB
testcase_07 AC 69 ms
78,048 KB
testcase_08 AC 70 ms
78,004 KB
testcase_09 AC 68 ms
78,060 KB
testcase_10 AC 69 ms
78,232 KB
testcase_11 AC 69 ms
78,264 KB
testcase_12 AC 68 ms
78,088 KB
testcase_13 AC 47 ms
61,988 KB
testcase_14 AC 47 ms
62,440 KB
testcase_15 AC 47 ms
62,092 KB
testcase_16 AC 48 ms
63,824 KB
testcase_17 AC 50 ms
63,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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