結果

問題 No.193 筒の数式
ユーザー pluto77pluto77
提出日時 2016-02-26 14:01:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 11 ms / 1,000 ms
コード長 379 bytes
コンパイル時間 845 ms
コンパイル使用メモリ 7,140 KB
実行使用メモリ 6,512 KB
最終ジャッジ日時 2023-10-23 20:16:55
合計ジャッジ時間 2,399 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,512 KB
testcase_01 AC 11 ms
6,512 KB
testcase_02 AC 10 ms
6,512 KB
testcase_03 AC 11 ms
6,512 KB
testcase_04 AC 10 ms
6,512 KB
testcase_05 AC 10 ms
6,512 KB
testcase_06 AC 10 ms
6,512 KB
testcase_07 AC 10 ms
6,512 KB
testcase_08 AC 10 ms
6,512 KB
testcase_09 AC 11 ms
6,512 KB
testcase_10 AC 10 ms
6,512 KB
testcase_11 AC 11 ms
6,512 KB
testcase_12 AC 10 ms
6,512 KB
testcase_13 AC 11 ms
6,512 KB
testcase_14 AC 10 ms
6,512 KB
testcase_15 AC 11 ms
6,512 KB
testcase_16 AC 10 ms
6,512 KB
testcase_17 AC 10 ms
6,512 KB
testcase_18 AC 10 ms
6,512 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)
 if sa[-1]=='+' or sa[-1]=='-':
  sa=sa[:-1]
 res_temp=eval(sa)
 if res<res_temp:
   res=res_temp
print res
0