結果
| 問題 |
No.193 筒の数式
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-26 14:34:07 |
| 言語 | Python2 (2.7.18) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 408 bytes |
| コンパイル時間 | 287 ms |
| コンパイル使用メモリ | 7,040 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-22 13:56:44 |
| 合計ジャッジ時間 | 902 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 RE * 1 |
ソースコード
#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