結果
問題 | No.18 うーさー暗号 |
ユーザー | RinTabata |
提出日時 | 2023-11-09 11:33:53 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 535 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-26 00:06:18 |
合計ジャッジ時間 | 1,330 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
S = input() ans_list = [] for i in range(len(S)): if 'A' <= S[i] <= 'Z': # アルファベットの場合 number = ord(S[i]) - ord('A') + 1 # A=1, B=2, ... と数値に変換 new_number = 26 - number + 1 # 数値を逆転させる new_char = chr(ord('A') + new_number - 1) # 逆転した数値を文字に戻す ans_list.append(new_char) else: # アルファベット以外の場合、そのまま追加 ans_list.append(S[i]) output = "".join(ans_list) print(output)