結果
問題 | No.18 うーさー暗号 |
ユーザー | RinTabata |
提出日時 | 2023-11-09 10:56:08 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 614 bytes |
コンパイル時間 | 92 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-26 00:05:52 |
合計ジャッジ時間 | 1,143 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,496 KB |
testcase_01 | AC | 30 ms
10,496 KB |
testcase_02 | RE | - |
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 | RE | - |
testcase_12 | RE | - |
ソースコード
# お年玉まではやる S = input() LS = list(S) ans_list = [] #答えを格納するリスト。最終的にこれを文字列に変換して出力する。 alphabettonumber = [] cut = [] for i in LS: if 'A' <= i <= 'Z': number = ord(i) alphabettonumber.append(number) for i in range(0,len(S)): number2 = alphabettonumber[i] - ( i + 1 ) cut.append(number2) for i in cut: if 65 <= i < 90: ans_list += chr(i) elif int(i) < 65: while 65 <= i + 26 <= 90: i += 26 ans_list.append(chr(i)) for i in ans_list: print(i, end='')