結果
問題 | No.18 うーさー暗号 |
ユーザー |
|
提出日時 | 2019-01-16 13:53:12 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 36 ms / 5,000 ms |
コード長 | 194 bytes |
コンパイル時間 | 191 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-06-27 23:36:20 |
合計ジャッジ時間 | 1,098 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
st = input()new_st = 0for i in range(0, len(st)):j = i + 1new_st = ord(st[i]) - jwhile new_st < 65:new_st = new_st + 26st = st[:i] + chr(new_st) + st[j:]print(st)