結果

問題 No.193 筒の数式
ユーザー karinohitokarinohito
提出日時 2024-05-08 02:12:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 409 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 53,616 KB
最終ジャッジ日時 2024-12-14 01:39:14
合計ジャッジ時間 1,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,796 KB
testcase_01 AC 42 ms
52,328 KB
testcase_02 AC 41 ms
52,768 KB
testcase_03 AC 41 ms
52,684 KB
testcase_04 AC 39 ms
53,364 KB
testcase_05 AC 41 ms
53,616 KB
testcase_06 AC 39 ms
53,096 KB
testcase_07 AC 40 ms
52,820 KB
testcase_08 AC 41 ms
52,080 KB
testcase_09 AC 41 ms
52,676 KB
testcase_10 AC 40 ms
53,376 KB
testcase_11 AC 40 ms
53,496 KB
testcase_12 AC 40 ms
52,728 KB
testcase_13 AC 40 ms
53,292 KB
testcase_14 AC 40 ms
52,468 KB
testcase_15 AC 41 ms
52,396 KB
testcase_16 AC 42 ms
52,524 KB
testcase_17 AC 41 ms
53,160 KB
testcase_18 AC 41 ms
51,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
an=-10**18
for i in range(len(S)):
    T=S    
    
    if T[0].isdigit() and T[-1].isdigit():
        for i in range(len(S)):
            T=T.replace('+0','+')
            T=T.replace('-0','-')
        while T[0]=='0':
            T=T[1::]
        if not T[0].isdigit():
            T='0'+T
        if not T[-1].isdigit():
            T=T+'0'
        an=max(an,eval(T))
    S=S[1::]+S[0]

print(an)
0