結果
問題 | No.49 算数の宿題 |
ユーザー |
|
提出日時 | 2020-07-17 02:40:00 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 945 bytes |
コンパイル時間 | 963 ms |
コンパイル使用メモリ | 108,224 KB |
最終ジャッジ日時 | 2025-01-11 21:43:42 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <map> #include <queue> #include <cstdio> #include <ctime> #include <assert.h> #include <chrono> #include <random> #include <numeric> #include <set> using namespace std; typedef long long int ll; typedef unsigned long long ull; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); string s; cin >> s; int res=0; s="*"+s; int n=s.size(); for(int i=0;i<n;i++){ if(s[i]=='*'){ i++; int pos=0; while(i<n&&'0'<=s[i]&&s[i]<='9'){ pos=pos*10+s[i]-'0'; i++; } i--; res+=pos; } else{ i++; int pos=0; while(i<n&&'0'<=s[i]&&s[i]<='9'){ pos=pos*10+s[i]-'0'; i++; } i--; res*=pos; } } cout << res << endl; }