結果

問題 No.2420 Simple Problem
ユーザー siro53siro53
提出日時 2023-08-12 15:32:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-11-20 03:01:12
合計ジャッジ時間 12,297 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 156 ms
76,160 KB
testcase_02 AC 62 ms
66,816 KB
testcase_03 AC 96 ms
75,816 KB
testcase_04 AC 265 ms
76,888 KB
testcase_05 AC 181 ms
76,288 KB
testcase_06 AC 290 ms
77,160 KB
testcase_07 AC 292 ms
76,928 KB
testcase_08 AC 294 ms
76,972 KB
testcase_09 AC 291 ms
77,140 KB
testcase_10 AC 295 ms
76,800 KB
testcase_11 AC 292 ms
77,184 KB
testcase_12 AC 303 ms
77,056 KB
testcase_13 AC 298 ms
76,916 KB
testcase_14 AC 290 ms
77,308 KB
testcase_15 AC 290 ms
76,908 KB
testcase_16 AC 293 ms
76,800 KB
testcase_17 AC 298 ms
77,312 KB
testcase_18 AC 293 ms
76,976 KB
testcase_19 AC 289 ms
77,184 KB
testcase_20 AC 289 ms
76,928 KB
testcase_21 AC 293 ms
76,968 KB
testcase_22 AC 288 ms
77,312 KB
testcase_23 AC 288 ms
77,084 KB
testcase_24 AC 287 ms
77,312 KB
testcase_25 AC 291 ms
77,176 KB
testcase_26 AC 41 ms
52,736 KB
testcase_27 AC 230 ms
76,544 KB
testcase_28 AC 238 ms
76,504 KB
testcase_29 AC 234 ms
76,568 KB
testcase_30 AC 232 ms
76,544 KB
testcase_31 AC 229 ms
76,672 KB
testcase_32 AC 39 ms
51,456 KB
testcase_33 AC 151 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
for _ in range(N):
  A, B = map(int, input().split())
  ok, ng = 100000, 0
  while ok - ng > 1:
    mid = (ok + ng) // 2
    if mid * mid - A - B >= 0 and 4 * A * B < (mid * mid - A - B) ** 2:
      ok = mid
    else:
      ng = mid
  assert 4 * A * B < (ok * ok - A - B) ** 2
  print(ok)
0