結果

問題 No.2420 Simple Problem
ユーザー とりゐとりゐ
提出日時 2023-08-12 13:35:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 474 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-11-19 15:38:08
合計ジャッジ時間 15,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 212 ms
77,312 KB
testcase_02 AC 62 ms
70,016 KB
testcase_03 AC 131 ms
76,544 KB
testcase_04 AC 346 ms
78,464 KB
testcase_05 AC 242 ms
77,696 KB
testcase_06 AC 406 ms
79,104 KB
testcase_07 AC 437 ms
78,976 KB
testcase_08 AC 414 ms
79,360 KB
testcase_09 AC 439 ms
79,104 KB
testcase_10 AC 457 ms
78,848 KB
testcase_11 AC 436 ms
78,976 KB
testcase_12 AC 408 ms
79,104 KB
testcase_13 AC 415 ms
79,112 KB
testcase_14 AC 442 ms
79,104 KB
testcase_15 AC 439 ms
78,976 KB
testcase_16 AC 406 ms
78,976 KB
testcase_17 AC 409 ms
78,816 KB
testcase_18 AC 415 ms
78,720 KB
testcase_19 AC 437 ms
79,104 KB
testcase_20 AC 474 ms
79,360 KB
testcase_21 AC 411 ms
78,720 KB
testcase_22 AC 409 ms
78,680 KB
testcase_23 AC 408 ms
79,088 KB
testcase_24 AC 410 ms
79,104 KB
testcase_25 AC 410 ms
79,104 KB
testcase_26 AC 43 ms
58,496 KB
testcase_27 AC 368 ms
78,336 KB
testcase_28 AC 341 ms
78,592 KB
testcase_29 AC 341 ms
78,080 KB
testcase_30 AC 364 ms
78,592 KB
testcase_31 AC 364 ms
78,336 KB
testcase_32 AC 38 ms
52,216 KB
testcase_33 AC 219 ms
77,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input=lambda :stdin.readline()[:-1]

def check(a,b,x):
  y=x*x-a-b
  if y>0 and y*y>4*a*b:
    return True
  return False

def solve():
  a,b=map(int,input().split())
  ng,ok=-1,3*10**9  
  while abs(ng-ok)>1:
    mid=(ng+ok)//2
    if check(a,b,mid):
      ok=mid
    else:
      ng=mid
  print(ok)


for _ in range(int(input())):
  solve()
0