結果
| 問題 | 
                            No.193 筒の数式
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2015-04-29 19:02:09 | 
| 言語 | Python2  (2.7.18)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 247 bytes | 
| コンパイル時間 | 51 ms | 
| コンパイル使用メモリ | 6,940 KB | 
| 実行使用メモリ | 6,940 KB | 
| 最終ジャッジ日時 | 2024-07-05 16:44:42 | 
| 合計ジャッジ時間 | 885 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 13 WA * 3 | 
ソースコード
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", "-")
    if s[0] in "+-" or s[-1] in "+-": continue
    ans = max(ans, eval(s))
print ans