結果
問題 | No.708 (+ー)の式 |
ユーザー | re_re0101 |
提出日時 | 2021-10-27 05:22:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,793 bytes |
コンパイル時間 | 1,783 ms |
コンパイル使用メモリ | 167,880 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 21:10:15 |
合計ジャッジ時間 | 2,419 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function 'int factor(State&)': main.cpp:79:14: warning: control reaches end of non-void function [-Wreturn-type] 79 | begin++; // ')'を飛ばす。 | ^~
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i, n) for (ll i = 0; i < (ll)(n); i++) typedef long long ll; typedef vector<ll> vl; typedef vector<vl>vvl; typedef vector<vvl>vvvl; typedef vector<vvvl>vvvvl; typedef vector<vvvvl>vvvvvl; typedef vector<int>vi; typedef vector<vi>vvi; typedef vector<vvi>vvvi; typedef vector<vvvi>vvvvi; typedef vector<vvvvi>vvvvvi; typedef pair<ll,ll> P; typedef string::const_iterator State; ll exp(ll n,ll r){if(r==0)return 1;return n*exp(n,r-1);} int term(State &begin); int expression(State &begin); int number(State &begin); int factor(State &begin); int term(State &begin) { int ret = number(begin); for (;;) { if (*begin == '*') { begin++; ret *= factor(begin); } else if (*begin == '/') { begin++; ret /= factor(begin); } else { break; } } return ret; } int expression(State &begin) { int ret = term(begin); for (;;) { if (*begin == '+') { begin++; ret += term(begin); } else if (*begin == '-') { begin++; ret -= term(begin); } else { break; } } return ret; } int number(State &begin) { int ret = 0; while (isdigit(*begin)) { ret *= 10; ret += *begin - '0'; begin++; } return ret; } // 括弧か数をパースして、その評価結果を返す。 int factor(State &begin) { if (*begin == '(') { begin++; // '('を飛ばす。 int ret = expression(begin); begin++; // ')'を飛ばす。 } else { return number(begin); } } int main(){ string s;cin>>s; State begin=s.begin(); cout<<expression(begin)<<endl; }