結果

問題 No.18 うーさー暗号
ユーザー Luoto-greenLuoto-green
提出日時 2017-07-03 19:08:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 124 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-07 06:33:05
合計ジャッジ時間 1,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
cou = 0
for i in s:
    cou +=1
    a = ord(i)-65-cou
    while a < 0:
        a+=26
    print(chr(a+65),end="")
0