結果

問題 No.18 うーさー暗号
ユーザー Kgm1500Kgm1500
提出日時 2017-07-12 22:11:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 161 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 53,564 KB
最終ジャッジ日時 2024-07-07 06:33:10
合計ジャッジ時間 1,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,020 KB
testcase_01 AC 31 ms
52,628 KB
testcase_02 AC 36 ms
52,204 KB
testcase_03 AC 36 ms
53,504 KB
testcase_04 AC 33 ms
53,292 KB
testcase_05 AC 35 ms
52,380 KB
testcase_06 AC 35 ms
52,384 KB
testcase_07 AC 35 ms
53,560 KB
testcase_08 AC 33 ms
52,620 KB
testcase_09 AC 33 ms
53,276 KB
testcase_10 AC 34 ms
53,564 KB
testcase_11 AC 32 ms
52,628 KB
testcase_12 AC 32 ms
51,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

strs = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
S = list(input())
Out = []
for i in range(len(S)):
    Out.append(strs[(strs.index(S[i]) - i - 1) % 26])
print("".join(Out))
0