結果

問題 No.193 筒の数式
ユーザー Mao-betaMao-beta
提出日時 2024-04-03 19:08:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 873 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 57,632 KB
最終ジャッジ日時 2024-10-01 00:01:24
合計ジャッジ時間 1,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 49 ms
55,908 KB
testcase_03 AC 47 ms
56,864 KB
testcase_04 AC 49 ms
56,376 KB
testcase_05 AC 49 ms
57,192 KB
testcase_06 AC 51 ms
57,276 KB
testcase_07 AC 49 ms
56,868 KB
testcase_08 AC 49 ms
56,732 KB
testcase_09 AC 48 ms
56,024 KB
testcase_10 AC 47 ms
57,268 KB
testcase_11 AC 46 ms
57,352 KB
testcase_12 AC 50 ms
55,948 KB
testcase_13 AC 47 ms
56,940 KB
testcase_14 AC 49 ms
56,596 KB
testcase_15 AC 47 ms
56,600 KB
testcase_16 AC 48 ms
57,524 KB
testcase_17 AC 48 ms
57,632 KB
testcase_18 AC 48 ms
56,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    S = SI() * 2
    N = len(S) // 2
    ans = -10**20
    for i in range(N):
        T = S[i:i+N]
        if T[0] in "+-" or T[-1] in "+-":
            continue
        try:
            ans = max(ans, eval(T))
        except:
            pass
    print(ans)


if __name__ == "__main__":
    main()
0