結果

問題 No.193 筒の数式
ユーザー flippergoflippergo
提出日時 2025-01-01 15:09:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 430 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 65,036 KB
最終ジャッジ日時 2025-01-01 15:09:25
合計ジャッジ時間 2,686 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
64,236 KB
testcase_01 AC 52 ms
63,892 KB
testcase_02 AC 53 ms
63,852 KB
testcase_03 AC 52 ms
64,896 KB
testcase_04 AC 53 ms
63,972 KB
testcase_05 AC 53 ms
63,556 KB
testcase_06 AC 57 ms
63,992 KB
testcase_07 AC 58 ms
65,036 KB
testcase_08 AC 51 ms
64,024 KB
testcase_09 AC 52 ms
63,724 KB
testcase_10 AC 52 ms
64,036 KB
testcase_11 AC 53 ms
64,704 KB
testcase_12 AC 53 ms
63,952 KB
testcase_13 AC 54 ms
63,492 KB
testcase_14 AC 53 ms
63,564 KB
testcase_15 AC 52 ms
63,628 KB
testcase_16 AC 53 ms
63,824 KB
testcase_17 AC 56 ms
63,628 KB
testcase_18 AC 54 ms
64,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
def safe_eval(expression):
    # 演算子の前後にあるリーディングゼロを除去
    processed_expression = re.sub(r'(?<!\d)0+(\d+)', r'\1', expression)
    return eval(processed_expression)
S = input().strip()

NUM = [str(i) for i in range(10)]
ans = -10**10
for i in range(len(S)):
    x = S[i:]+S[:i]
    if x[0] not in NUM or x[-1] not in NUM:
        continue
    ans = max(ans,safe_eval(x))
print(ans)
0