結果

問題 No.193 筒の数式
ユーザー pluto77pluto77
提出日時 2016-02-26 14:34:07
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 408 bytes
コンパイル時間 749 ms
コンパイル使用メモリ 7,156 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2023-10-23 20:17:07
合計ジャッジ時間 1,917 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,444 KB
testcase_01 AC 10 ms
6,444 KB
testcase_02 AC 10 ms
6,444 KB
testcase_03 AC 11 ms
6,444 KB
testcase_04 AC 11 ms
6,444 KB
testcase_05 AC 10 ms
6,444 KB
testcase_06 AC 10 ms
6,444 KB
testcase_07 AC 11 ms
6,444 KB
testcase_08 AC 10 ms
6,444 KB
testcase_09 AC 10 ms
6,444 KB
testcase_10 AC 10 ms
6,444 KB
testcase_11 RE -
testcase_12 AC 10 ms
6,444 KB
testcase_13 AC 11 ms
6,444 KB
testcase_14 AC 11 ms
6,444 KB
testcase_15 AC 11 ms
6,444 KB
testcase_16 AC 11 ms
6,444 KB
testcase_17 AC 11 ms
6,444 KB
testcase_18 AC 11 ms
6,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
##yuki_193
import sys
import re

s=raw_input()
n=len(s)


res=-sys.maxint
for i in xrange(n):
 x=s[-1]
 s=x+s
 s=s[:-1]
 if s[0]=='+' or s[0]=='-':
  continue
 if s[-1]=='+' or s[-1]=='-':
  continue
 while s[0]=='0':
  s=s[1:]
 sa=re.sub(r'\+[0]+','+',s)
 sb=re.sub(r'\-[0]+','-',sa)
 if sb[-1]=='+' or sb[-1]=='-':
  sb=sb[:-1]
 res_temp=eval(sb)
 if res<res_temp:
   res=res_temp
print res
0