結果
問題 | No.18 うーさー暗号 |
ユーザー | arito_asu |
提出日時 | 2020-06-10 14:47:30 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 196 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-23 05:18:41 |
合計ジャッジ時間 | 951 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
10,368 KB |
testcase_01 | AC | 24 ms
10,496 KB |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
ソースコード
S = list(input()) l = list(map(ord,S)) nl = [] for i,n in enumerate(l,1): charn = n - i + 26 if n - i < 65 else n - i nl.append(charn) ns = list(map(chr,nl)) ans = ''.join(ns) print(ans)