結果

問題 No.2034 Anti Lexicography
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-08-12 21:23:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 102 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,632 KB
実行使用メモリ 97,304 KB
最終ジャッジ日時 2023-10-24 07:53:03
合計ジャッジ時間 2,272 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,300 KB
testcase_01 AC 38 ms
53,300 KB
testcase_02 AC 39 ms
53,300 KB
testcase_03 AC 39 ms
53,300 KB
testcase_04 AC 41 ms
53,300 KB
testcase_05 AC 99 ms
96,608 KB
testcase_06 AC 103 ms
97,128 KB
testcase_07 AC 100 ms
96,540 KB
testcase_08 AC 103 ms
97,276 KB
testcase_09 AC 101 ms
96,804 KB
testcase_10 AC 102 ms
97,292 KB
testcase_11 AC 103 ms
97,304 KB
testcase_12 AC 103 ms
97,300 KB
testcase_13 AC 50 ms
62,092 KB
testcase_14 AC 50 ms
62,092 KB
testcase_15 AC 51 ms
62,092 KB
testcase_16 AC 51 ms
62,092 KB
testcase_17 AC 52 ms
62,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
ans = [chr(ord("a")+ 25-(ord(s)-ord("a"))) for s in S]
print(*ans,sep="")
0