/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 328.0 KiB
#2 Accepted 1ms 540.0 KiB
#3 Wrong Answer 1ms 540.0 KiB
#4 Wrong Answer 1ms 772.0 KiB
#5 Wrong Answer 2ms 540.0 KiB
#6 Wrong Answer 1ms 772.0 KiB

Code

#include <bits/stdc++.h>

#pragma GCC optimize("Ofast")
using namespace std;

void solve(int cs) {
  string s;
  cin >> s;
  reverse(s.begin(), s.end());
  s.pop_back(), s.pop_back();
  reverse(s.begin(), s.end());
  string cc;
  while (s.back() != 'x') {
    cc += s.back();
    s.pop_back();
  }
  s.pop_back();
  reverse(cc.begin(), cc.end());
  int x = 1, c = 0;
  if (!s.empty()) { 
    if (s.size() > 1) {
      x = s[1] - '0';
      if (s[0] == '-') {
        x = -x;
      }
    } else {
      if (s[0] == '-') {
        x = -x;
      } else {
        x = s[0] - '0';
      }
    }
  }
  if (cc.size()) {
    c = stoi(cc);
  }
  int q;
  cin >> q;
  while (q--) {
    int X, Y;
    cin >> X >> Y;
    if (X * x + c == Y) cout << "YES\n";
    else cout << "NO\n";
  }
}

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  int tc = 1;
  // cin >> tc;
  for (int cs = 1; cs <= tc; cs++) {
    solve(cs);
  }
  return 0;
}

Information

Submit By
Type
Submission
Problem
P1015 Friend in need is a friend indeed
Language
C++20 (G++ 13.2.0)
Submit At
2024-07-14 05:41:39
Judged At
2024-07-14 05:41:39
Judged By
Score
30
Total Time
2ms
Peak Memory
772.0 KiB