結果
| 問題 |
No.193 筒の数式
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-04-29 19:03:47 |
| 言語 | Python2 (2.7.18) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 280 bytes |
| コンパイル時間 | 47 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2024-07-05 16:44:43 |
| 合計ジャッジ時間 | 934 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 WA * 4 |
ソースコード
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