結果
問題 | No.193 筒の数式 |
ユーザー | dnish |
提出日時 | 2017-07-05 01:13:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 711 bytes |
コンパイル時間 | 1,660 ms |
コンパイル使用メモリ | 168,524 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-05 16:24:58 |
合計ジャッジ時間 | 2,142 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #define REP(i,n,N) for(int i=(n);i<(int) N;i++) #define p(s) cout<<(s)<<endl using namespace std; int main(){ string s; cin>>s; int ans=-1e9; REP(i,0,s.size()){ rotate(s.begin(),s.begin()+1,s.end()); if(!isdigit(s[0])||!isdigit(s.back())) continue; int tmp=0; int mx=0; bool hugo=0; bool number=0; REP(j,0,s.size()){ if(isdigit(s[j])){ tmp*=10; tmp+=s[j]-'0'; number=1; }else { if(number==0){ mx=0; break; }else if(hugo==0) mx+=tmp; else mx-=tmp; tmp=0; if(s[j]=='+') hugo=0; else if(s[j]=='-') hugo=1; } } if(number){ if(hugo==0) mx+=tmp; else mx-=tmp; } ans=max(ans,mx); } p(ans); return 0; }