結果
問題 | No.49 算数の宿題 |
ユーザー | Shawn stayC |
提出日時 | 2020-07-20 22:25:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 520 bytes |
コンパイル時間 | 1,472 ms |
コンパイル使用メモリ | 167,656 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-02 07:31:22 |
合計ジャッジ時間 | 2,335 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:10:13: warning: 'pos' may be used uninitialized [-Wmaybe-uninitialized] 10 | int pos; | ^~~ main.cpp:23:9: warning: 'op' may be used uninitialized [-Wmaybe-uninitialized] 23 | if(op=='+') ans*=stoi(b); | ^~ main.cpp:9:14: note: 'op' was declared here 9 | char op; | ^~
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0; i<(n); i++) int main(){ string s; cin>>s; int k=s.size(), ans=0; string a,b; char op; int pos; rep(i,k){ if(s[i]=='+'||s[i]=='*'){pos=i+1; op=s[i]; break;} else a+=s[i]; } ans=stoi(a); for(int i=pos; i<k; i++){ b+=s[i]; if(s[i]=='+'||s[i]=='*'){ if(op=='+') {ans*=stoi(b); op=s[i]; b=" ";} if(op=='*') {ans+=stoi(b); op=s[i]; b=" ";} } } if(op=='+') ans*=stoi(b); if(op=='*') ans+=stoi(b); cout<<ans<<" "<<endl; }