結果
問題 | No.193 筒の数式 |
ユーザー | pluto77 |
提出日時 | 2016-02-26 14:01:52 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 12 ms / 1,000 ms |
コード長 | 379 bytes |
コンパイル時間 | 95 ms |
コンパイル使用メモリ | 7,072 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 13:56:35 |
合計ジャッジ時間 | 1,047 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 |
ソースコード
#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