結果

問題 No.222 引き算と足し算
ユーザー kyo1
提出日時 2020-07-02 08:56:25
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 870 bytes
コンパイル時間 1,753 ms
コンパイル使用メモリ 193,856 KB
最終ジャッジ日時 2025-01-11 13:57:39
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
    }
  }
  cout << x << ' ' << y << '\n';
  if (s[p] == '-') {
    cout << x + y << '\n';
  } else {
    cout << x - y << '\n';
  }
  return 0;
}
0