/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Accepted 7ms 600.0 KiB
#3 Accepted 7ms 564.0 KiB
#4 Accepted 7ms 600.0 KiB
#5 Accepted 6ms 580.0 KiB
#6 Accepted 5ms 576.0 KiB
#7 Accepted 5ms 588.0 KiB
#8 Accepted 5ms 572.0 KiB
#9 Accepted 7ms 608.0 KiB
#10 Accepted 7ms 604.0 KiB

Code

#include <bits/stdc++.h>

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

void solve(int cs) {
  set<int> st;
  for (int i = 0; i < 3; i++) {
    int x;
    cin >> x;
    st.insert(x);
  }
  if (st.size() == 3) {
    vector<int> a (st.begin(), st.end());
    int f = min(a[1] - a[0], a.back() - a[1]);
    int g = max(a[1] - a[0], a.back() - a[1]);
    int gc = __gcd(f, g);
    cout << (f / gc) + (g / gc) << "\n";
  }
  else if (st.size() == 2) cout << 1 << "\n";
  else cout << 0 << "\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
P1061 Bring equality
Contest
Brain Booster #4
Language
C++20 (G++ 13.2.0)
Submit At
2024-07-14 15:43:32
Judged At
2024-10-03 13:39:19
Judged By
Score
100
Total Time
7ms
Peak Memory
608.0 KiB