結果

問題 No.193 筒の数式
コンテスト
ユーザー pluto77
提出日時 2016-02-26 14:01:52
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 96 ms / 1,000 ms
コード長 379 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 134 ms
コンパイル使用メモリ 77,752 KB
最終ジャッジ日時 2025-12-03 19:30:45
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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