結果

問題 No.193 筒の数式
コンテスト
ユーザー roiti46
提出日時 2015-04-29 19:03:47
言語 PyPy2
(7.3.20)
コンパイル:
pypy2 -m py_compile _filename_
実行:
/usr/bin/pypy2 Main.pyc
結果
WA  
実行時間 -
コード長 280 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 67 ms
コンパイル使用メモリ 81,152 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2026-07-17 14:00:52
合計ジャッジ時間 2,458 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

S = raw_input()
ans = -999999
for i in xrange(len(S)):
    s = S[i:] + S[:i]
    while "+0" in s or "-0" in s:
        s = s.replace("+0", "+").replace("-0", "-")
    while s[0] == "0": s = s[1:]
    if s[0] in "+-" or s[-1] in "+-": continue
    ans = max(ans, eval(s))
print ans
0