結果
問題 | No.222 引き算と足し算 |
ユーザー |
![]() |
提出日時 | 2020-07-02 08:57:34 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 837 bytes |
コンパイル時間 | 1,771 ms |
コンパイル使用メモリ | 192,804 KB |
最終ジャッジ日時 | 2025-01-11 13:57:48 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int x = 0, y = 0, p = 0; string s; cin >> s; reverse(s.begin(), s.end()); int b = 1; for (int i = 0; i < (int)s.size(); i++) { if ((s[i] == '+' || s[i] == '-') && !(s[i + 1] == '+' || s[i + 1] == '-')) { p = i; break; } if ((s[i] == '+' || s[i] == '-') && (s[i + 1] == '+' || s[i + 1] == '-')) { if (s[i] == '-') y *= -1; } else { y += (s[i] - '0') * b; b *= 10; } } b = 1; for (int i = p + 1; i < (int)s.size(); i++) { if ((s[i] == '+' || s[i] == '-')) { if (s[i] == '-') x *= -1; } else { x += (s[i] - '0') * b; b *= 10; } } if (s[p] == '-') { cout << x + y << '\n'; } else { cout << x - y << '\n'; } return 0; }