結果
問題 | No.18 うーさー暗号 |
ユーザー |
|
提出日時 | 2025-03-11 02:27:14 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 257 bytes |
コンパイル時間 | 827 ms |
コンパイル使用メモリ | 12,032 KB |
実行使用メモリ | 10,112 KB |
最終ジャッジ日時 | 2025-03-11 02:27:16 |
合計ジャッジ時間 | 1,893 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
def main(): inp = input() temp = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" count = 1 ans = "" for s in inp: ans = ans + temp[temp.index(s) - count % len(temp)] count += 1 print(ans) if __name__ == '__main__': main()