結果
問題 | No.2420 Simple Problem |
ユーザー | takumi152 |
提出日時 | 2023-08-12 15:11:27 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 421 ms / 2,000 ms |
コード長 | 925 bytes |
コンパイル時間 | 1,147 ms |
コンパイル使用メモリ | 102,072 KB |
実行使用メモリ | 9,384 KB |
最終ジャッジ日時 | 2024-11-20 00:09:32 |
合計ジャッジ時間 | 16,050 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 33 |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <algorithm> #include <utility> #include <string> #include <queue> #include <stack> #include <unordered_map> using namespace std; typedef long long int ll; typedef pair<int, int> Pii; const ll mod = 998244353; int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector<pair<ll, ll>> ab(n); for (auto &x: ab) cin >> x.first >> x.second; vector<ll> ans; for (int i = 0; i < n; i++) { __int128_t a = ab[i].first; __int128_t b = ab[i].second; __int128_t ng = 0; __int128_t ok = 100000; while (abs((ll) (ng - ok)) > 1) { __int128_t mid = (ng + ok) / 2; __int128_t x2ab = (mid * mid - a - b); __int128_t x2ab2 = x2ab * x2ab; if (x2ab >= 0 && a * b * 4 < x2ab2) ok = mid; else ng = mid; } ans.push_back(ok); } for (auto &x: ans) cout << x << endl; return 0; }