結果

問題 No.2034 Anti Lexicography
ユーザー tnodinotnodino
提出日時 2022-08-12 21:23:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,104 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 11,748 KB
実行使用メモリ 11,012 KB
最終ジャッジ日時 2023-10-24 07:55:46
合計ジャッジ時間 9,361 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,056 KB
testcase_01 AC 31 ms
10,056 KB
testcase_02 AC 30 ms
10,056 KB
testcase_03 AC 30 ms
10,056 KB
testcase_04 AC 30 ms
10,056 KB
testcase_05 AC 1,049 ms
10,728 KB
testcase_06 AC 886 ms
10,872 KB
testcase_07 AC 1,032 ms
10,728 KB
testcase_08 AC 908 ms
11,008 KB
testcase_09 AC 1,104 ms
10,748 KB
testcase_10 AC 893 ms
11,012 KB
testcase_11 AC 898 ms
11,012 KB
testcase_12 AC 901 ms
11,012 KB
testcase_13 AC 31 ms
10,068 KB
testcase_14 AC 31 ms
10,068 KB
testcase_15 AC 30 ms
10,080 KB
testcase_16 AC 32 ms
10,092 KB
testcase_17 AC 32 ms
10,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
T = ''
for s in S[::-1]:
    T += chr(25-(ord(s)-97)+97)
print(T[::-1])
0