/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 55ms 552.0 KiB
#2 Accepted 273ms 548.0 KiB
#3 Accepted 270ms 556.0 KiB
#4 Accepted 287ms 552.0 KiB
#5 Accepted 271ms 556.0 KiB
#6 Accepted 271ms 552.0 KiB
#7 Accepted 282ms 540.0 KiB
#8 Accepted 277ms 556.0 KiB
#9 Accepted 273ms 560.0 KiB
#10 Accepted 273ms 540.0 KiB
#11 Accepted 275ms 552.0 KiB

Code

#include <bits/stdc++.h>

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

// #ifndef ONLINE_JUDGE
// #include "Ash.cpp"
// #else
// #define dbg(...)
// #define dbgA(...)
// #endif

void solve(int cs) {
  int n;
  cin >> n;

  int64_t res = -1;
  auto issq = [&](int64_t x) -> bool {
    int64_t sq = sqrt(x);
    return sq * sq == x;
  };

  for (int64_t i = 10000000; i > 1; i--) {
    int64_t x = (i * i) - (n * n);
    if (x > 0 && issq(x)) {
      int64_t X = sqrt(x);
      res = max(res, i + n + X);
    }
  }
  cout << res << "\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
P1027 Right triangle
Language
C++20 (G++ 13.2.0)
Submit At
2024-07-14 06:05:59
Judged At
2024-07-14 06:05:59
Judged By
Score
100
Total Time
287ms
Peak Memory
560.0 KiB