結果

問題 No.2420 Simple Problem
ユーザー pありpあり
提出日時 2023-08-12 14:07:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 898 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 77,092 KB
最終ジャッジ日時 2024-11-19 17:31:09
合計ジャッジ時間 27,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 417 ms
76,904 KB
testcase_02 AC 76 ms
72,380 KB
testcase_03 AC 209 ms
76,624 KB
testcase_04 AC 689 ms
76,760 KB
testcase_05 AC 474 ms
76,644 KB
testcase_06 AC 861 ms
76,672 KB
testcase_07 AC 864 ms
76,544 KB
testcase_08 AC 869 ms
76,544 KB
testcase_09 AC 852 ms
76,800 KB
testcase_10 AC 835 ms
76,672 KB
testcase_11 AC 840 ms
76,784 KB
testcase_12 AC 898 ms
76,704 KB
testcase_13 AC 859 ms
76,672 KB
testcase_14 AC 840 ms
77,092 KB
testcase_15 AC 851 ms
77,056 KB
testcase_16 AC 842 ms
76,800 KB
testcase_17 AC 845 ms
76,716 KB
testcase_18 AC 871 ms
76,800 KB
testcase_19 AC 849 ms
76,672 KB
testcase_20 AC 877 ms
76,596 KB
testcase_21 AC 835 ms
76,976 KB
testcase_22 AC 850 ms
76,544 KB
testcase_23 AC 834 ms
77,056 KB
testcase_24 AC 862 ms
76,544 KB
testcase_25 AC 852 ms
76,544 KB
testcase_26 AC 45 ms
58,368 KB
testcase_27 AC 702 ms
76,740 KB
testcase_28 AC 697 ms
76,544 KB
testcase_29 AC 681 ms
76,928 KB
testcase_30 AC 725 ms
76,544 KB
testcase_31 AC 689 ms
76,800 KB
testcase_32 AC 39 ms
52,224 KB
testcase_33 AC 407 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())


def is_ok(mid, a, b):
  c = mid*mid-a-b
  if(c < 0):
    return False
  
  if(4*a*b < c*c):
    return True
  else:
    return False

def binary_search(ng, ok, a, b):
    while ok - ng > 1:
        mid = (ok + ng) // 2
        if is_ok(mid, a, b):
            ok = mid
        else:
            ng = mid
    return ok




for _ in range(n):
  a,b = map(int, input().split()) 
  
  x = binary_search(0, 10**9, a, b)
  
  print(x)
    
    
0