結果

問題 No.2420 Simple Problem
ユーザー 👑 Nafmo2Nafmo2
提出日時 2023-06-20 20:07:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 584 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 2,376 ms
コンパイル使用メモリ 199,920 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 11:29:46
合計ジャッジ時間 21,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 239 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 87 ms
5,376 KB
testcase_04 AC 458 ms
5,376 KB
testcase_05 AC 294 ms
5,376 KB
testcase_06 AC 584 ms
5,376 KB
testcase_07 AC 571 ms
5,376 KB
testcase_08 AC 575 ms
5,376 KB
testcase_09 AC 572 ms
5,376 KB
testcase_10 AC 567 ms
5,376 KB
testcase_11 AC 579 ms
5,376 KB
testcase_12 AC 566 ms
5,376 KB
testcase_13 AC 575 ms
5,376 KB
testcase_14 AC 570 ms
5,376 KB
testcase_15 AC 571 ms
5,376 KB
testcase_16 AC 580 ms
5,376 KB
testcase_17 AC 574 ms
5,376 KB
testcase_18 AC 578 ms
5,376 KB
testcase_19 AC 575 ms
5,376 KB
testcase_20 AC 574 ms
5,376 KB
testcase_21 AC 579 ms
5,376 KB
testcase_22 AC 581 ms
5,376 KB
testcase_23 AC 575 ms
5,376 KB
testcase_24 AC 581 ms
5,376 KB
testcase_25 AC 572 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 458 ms
5,376 KB
testcase_28 AC 452 ms
5,376 KB
testcase_29 AC 455 ms
5,376 KB
testcase_30 AC 455 ms
5,376 KB
testcase_31 AC 461 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 233 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(void) {
  int N;
  cin >> N;
  for(int i = 0; i < N; i++){
	  uint64_t A, B, mid;
	  cin >> A >> B;
	  int ok = 70000, ng = 2;
	  while (abs(ok - ng) > 1) {
	    mid = (ok + ng) / 2;
	    uint64_t Y = ((mid * mid) - A - B);
	    if (4 * A * B < Y * Y && mid * mid > A + B) {
	      ok = mid;
	    } else {
	      ng = mid;
	    }
	  }
	cout << ok << endl;
  }
}
0