結果

問題 No.18 うーさー暗号
ユーザー kohei2019kohei2019
提出日時 2021-02-10 00:05:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 165 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 59,684 KB
最終ジャッジ日時 2024-07-07 05:33:15
合計ジャッジ時間 1,038 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,276 KB
testcase_01 AC 32 ms
52,932 KB
testcase_02 AC 33 ms
53,868 KB
testcase_03 AC 36 ms
59,436 KB
testcase_04 AC 35 ms
52,508 KB
testcase_05 AC 31 ms
53,000 KB
testcase_06 AC 32 ms
54,144 KB
testcase_07 AC 35 ms
59,684 KB
testcase_08 AC 35 ms
59,540 KB
testcase_09 AC 32 ms
53,564 KB
testcase_10 AC 30 ms
52,508 KB
testcase_11 AC 30 ms
53,228 KB
testcase_12 AC 31 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
lsAl = list('ABCDEFGHIJKLMNOPQRSTUVWXYZ')
lsans = []
for i in range(len(S)):
    lsans.append(lsAl[(lsAl.index(S[i])-i-1)%26])
print(*lsans,sep='')
0