結果
問題 | No.49 算数の宿題 |
ユーザー | ふっぴー |
提出日時 | 2017-04-16 22:23:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 955 bytes |
コンパイル時間 | 787 ms |
コンパイル使用メモリ | 93,300 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 07:19:55 |
合計ジャッジ時間 | 1,210 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
ソースコード
#include<iostream> #include<vector> #include<string> #include<algorithm> #include<map> #include<set> #include<utility> #include<cmath> #include<cstring> #include<queue> #include<stack> #include<cstdio> #include<sstream> #include<iomanip> #include<assert.h> #include<ctime> #include<cstdlib> #include<numeric> #include <typeinfo> using namespace std; typedef long long ll; #define loop(i,a,b) for(ll i=a;i<b;i++) #define rloop(i,a,b) for(int i=a;i>=b;i--) const int inf=1e8; const ll INF=1e16; #define MOD 1000000007 #define mod 1000000009 #define m 1000003 int main(){ string s; cin>>s; int i=0,ans=0; int a=0; string kazu; char kigou='*'; while(s[i]!='\0'){ if(s[i]>='0' && s[i]<='9'){ kazu.push_back(s[i]); }else{ int n=atoi(kazu.c_str()); if(kigou=='*'){ ans+=n; }else{ ans*=n; } kazu=""; kigou=s[i]; } i++; } int n=atoi(kazu.c_str()); if(kigou=='*'){ ans+=n; }else{ ans*=n; } cout<<ans<<"\n"; }