結果
問題 | No.222 引き算と足し算 |
ユーザー | kyo1 |
提出日時 | 2020-07-02 08:53:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 803 bytes |
コンパイル時間 | 2,169 ms |
コンパイル使用メモリ | 201,192 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 20:52:58 |
合計ジャッジ時間 | 3,396 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#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; }