結果
| 問題 | No.18 うーさー暗号 |
| コンテスト | |
| ユーザー |
nsore38088715
|
| 提出日時 | 2019-11-21 22:49:02 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 60 ms / 5,000 ms |
| + 122µs | |
| コード長 | 153 bytes |
| 記録 | |
| コンパイル時間 | 152 ms |
| コンパイル使用メモリ | 81,200 KB |
| 実行使用メモリ | 81,280 KB |
| 最終ジャッジ日時 | 2026-07-18 20:24:15 |
| 合計ジャッジ時間 | 2,268 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
import string txt = string.ascii_uppercase S = raw_input().strip() print ''.join([txt[(txt.index(S[i]) - (i + 1)) % len(txt)] for i in range(len(S))])
nsore38088715