結果
問題 | No.193 筒の数式 |
ユーザー | Konton7 |
提出日時 | 2019-05-10 00:40:09 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 419 bytes |
コンパイル時間 | 91 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-02 00:53:50 |
合計ジャッジ時間 | 1,400 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,624 KB |
testcase_01 | WA | - |
testcase_02 | AC | 32 ms
10,752 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | RE | - |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 31 ms
10,752 KB |
testcase_07 | AC | 32 ms
10,752 KB |
testcase_08 | AC | 31 ms
10,624 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 30 ms
10,752 KB |
testcase_13 | AC | 31 ms
10,752 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
s = input() eval_list = [] for i in range(len(s)): s = s[-1] + s[:-1] if s[0] not in ["+","-"] and s[-1] not in ["+","-"]: num_list = [str(int(v)) for v in s.split("+")] ope_list = [] for j in range(len(s)): if s[j] in ["+","-"]: ope_list.append(s[j]) s = "" for j in range(len(ope_list)): s += (num_list[j]+ope_list[j]) s += num_list[-1] eval_list.append(eval(s)) print(max(eval_list))