結果

問題 No.193 筒の数式
ユーザー gorugo30gorugo30
提出日時 2021-03-17 10:50:52
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 187 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 66,108 KB
最終ジャッジ日時 2024-11-14 12:44:08
合計ジャッジ時間 1,995 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 37 ms
52,692 KB
testcase_03 AC 37 ms
52,344 KB
testcase_04 AC 37 ms
52,824 KB
testcase_05 AC 38 ms
52,280 KB
testcase_06 AC 39 ms
52,576 KB
testcase_07 AC 37 ms
52,512 KB
testcase_08 AC 38 ms
53,208 KB
testcase_09 AC 36 ms
53,376 KB
testcase_10 AC 37 ms
52,588 KB
testcase_11 AC 36 ms
52,688 KB
testcase_12 AC 36 ms
52,068 KB
testcase_13 AC 37 ms
52,340 KB
testcase_14 AC 36 ms
53,004 KB
testcase_15 AC 37 ms
53,204 KB
testcase_16 AC 37 ms
52,688 KB
testcase_17 AC 37 ms
52,460 KB
testcase_18 AC 37 ms
52,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
op = "+-"
ans = -1000000000000
for i in range(len(S)):
    if not (S[0] in op or S[-1] in op):
        ans = max(ans, eval("".join(S)))
    S = S[1:] + [S[0]]
print(ans)
0