結果
| 問題 | 
                            No.193 筒の数式
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2016-02-26 14:55:53 | 
| 言語 | Python2  (2.7.18)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 464 bytes | 
| コンパイル時間 | 178 ms | 
| コンパイル使用メモリ | 7,040 KB | 
| 実行使用メモリ | 6,948 KB | 
| 最終ジャッジ日時 | 2024-09-22 13:57:08 | 
| 合計ジャッジ時間 | 1,328 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | AC * 1 WA * 15 | 
ソースコード
#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=='-': print 0 sys.exit() print sb if sb[-1]=='+' or sb[-1]=='-': sb=sb[:-1] print sb res_temp=eval(sb) if res<res_temp: res=res_temp print res