結果
| 問題 | No.193 筒の数式 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-04-29 19:02:09 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 247 bytes |
| 記録 | |
| コンパイル時間 | 67 ms |
| コンパイル使用メモリ | 81,280 KB |
| 実行使用メモリ | 81,280 KB |
| 最終ジャッジ日時 | 2026-07-17 14:00:38 |
| 合計ジャッジ時間 | 2,895 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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