結果
問題 | No.222 引き算と足し算 |
ユーザー |
![]() |
提出日時 | 2020-07-02 08:53:40 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 803 bytes |
コンパイル時間 | 1,752 ms |
コンパイル使用メモリ | 193,540 KB |
最終ジャッジ日時 | 2025-01-11 13:57:30 |
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 WA * 25 |
ソースコード
#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; } 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; } x += (s[i] - '0') * b; b *= 10; } if (s[p] == '-') { cout << x + y << '\n'; } else { cout << x - y << '\n'; } return 0; }