Advertisement
Dmaxiya

拼正方形 参考代码

Apr 3rd, 2025
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.71 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. typedef long long LL;
  5.  
  6. LL sq(LL x) {
  7.     LL high = 1000000000;
  8.     LL low = 1;
  9.     LL mid;
  10.     while (high - low > 1) {
  11.         mid = (high + low) >> 1;
  12.         if (mid * mid <= x) {
  13.             low = mid;
  14.         } else {
  15.             high = mid;
  16.         }
  17.     }
  18.     return low;
  19. }
  20.  
  21. int main() {
  22. #ifdef ExRoc
  23.     freopen("test.txt", "r", stdin);
  24. #endif // ExRoc
  25.     ios::sync_with_stdio(false);
  26.  
  27.     LL x = sq(7385137888721LL * 4 + 10470245);
  28.     cout << x << endl;
  29.     cout << (5435122LL / 2 * (5435122LL / 2) <= 7385137888721LL) << endl;
  30.     cout << (x * x - 5435122LL * 5435122LL <= 10470245) << endl;
  31.     cout << 5435122 << endl;
  32.  
  33.     return 0;
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement