結果

問題 No.2034 Anti Lexicography
ユーザー ニックネームニックネーム
提出日時 2022-08-12 21:22:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,029 ms / 2,000 ms
コード長 77 bytes
コンパイル時間 1,153 ms
コンパイル使用メモリ 11,656 KB
実行使用メモリ 10,888 KB
最終ジャッジ日時 2023-10-24 07:46:45
合計ジャッジ時間 9,042 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,004 KB
testcase_01 AC 28 ms
10,004 KB
testcase_02 AC 29 ms
10,004 KB
testcase_03 AC 28 ms
10,004 KB
testcase_04 AC 28 ms
10,004 KB
testcase_05 AC 1,029 ms
10,552 KB
testcase_06 AC 869 ms
10,556 KB
testcase_07 AC 1,021 ms
10,552 KB
testcase_08 AC 895 ms
10,764 KB
testcase_09 AC 772 ms
10,888 KB
testcase_10 AC 908 ms
10,764 KB
testcase_11 AC 904 ms
10,764 KB
testcase_12 AC 896 ms
10,764 KB
testcase_13 AC 29 ms
10,024 KB
testcase_14 AC 29 ms
10,024 KB
testcase_15 AC 29 ms
10,028 KB
testcase_16 AC 31 ms
10,040 KB
testcase_17 AC 30 ms
10,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = ""
for v in input(): ans += chr(219-ord(v))
print(ans)
0