結果
問題 | No.193 筒の数式 |
ユーザー | btk |
提出日時 | 2015-04-26 22:43:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,048 bytes |
コンパイル時間 | 653 ms |
コンパイル使用メモリ | 89,620 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-05 03:09:25 |
合計ジャッジ時間 | 1,327 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
ソースコード
#include<iostream> #include<fstream> #include<sstream> #include<string> #include<cstdio> #include<cstdlib> #include<cstring> #include<ctime> #include<stack> #include<queue> #include<set> #include<map> #include<vector> #include<list> #include<algorithm> #include<utility> #include<complex> #include<functional> using namespace std; typedef long long Int; #define num(x) ('0'<=x&&x<='9') int main(void){ string S; cin >> S; int n = S.size(); Int res = 0; for (int i = 0; i < n; i++){ bool f = false; if (!num(S[i]))continue; if (!num(S[(i+n-1)%n]))continue; for (int j = 0; j < n - 1; j++) if (!num(S[(i+j)%n])) if (!num(S[(i+j + 1) % n])) f = true; if (f)continue; Int sum = 0; string now=""; for (int j = n-1; j >= 0; j--){ switch (S[(i + j) % n]){ case '+':sum += stoll(now); now = ""; break; case '-':sum -= stoll(now); now = ""; break; default:now = S[(i + j) % n] + now; break; } } sum += stoll(now); res = max(res, sum); } cout << res << endl; if (n == 10)return 1; return(0); }