結果

問題 No.2420 Simple Problem
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-25 16:44:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-06-06 10:48:55
合計ジャッジ時間 9,596 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,168 KB
testcase_01 AC 119 ms
76,928 KB
testcase_02 AC 64 ms
66,432 KB
testcase_03 AC 86 ms
77,184 KB
testcase_04 AC 160 ms
76,928 KB
testcase_05 AC 119 ms
77,440 KB
testcase_06 AC 168 ms
77,824 KB
testcase_07 AC 169 ms
77,568 KB
testcase_08 AC 174 ms
77,312 KB
testcase_09 AC 174 ms
77,184 KB
testcase_10 AC 179 ms
76,928 KB
testcase_11 AC 175 ms
77,440 KB
testcase_12 AC 170 ms
77,696 KB
testcase_13 AC 170 ms
77,824 KB
testcase_14 AC 168 ms
77,440 KB
testcase_15 AC 170 ms
77,696 KB
testcase_16 AC 172 ms
77,184 KB
testcase_17 AC 171 ms
77,824 KB
testcase_18 AC 171 ms
77,056 KB
testcase_19 AC 169 ms
77,184 KB
testcase_20 AC 169 ms
77,184 KB
testcase_21 AC 170 ms
77,440 KB
testcase_22 AC 181 ms
77,184 KB
testcase_23 AC 174 ms
77,312 KB
testcase_24 AC 174 ms
77,568 KB
testcase_25 AC 182 ms
77,696 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 48 ms
55,040 KB
testcase_33 AC 113 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
for _ in range(N):
    a,b = map(int,input().split())
    
    is_ok = lambda x : 4*a*b < (x**2 - a - b)**2

    x = math.floor(math.sqrt(a)+math.sqrt(b))
    y = x + 100
    while y-x>1:
        mid = (y+x)//2
        if is_ok(mid):
            y = mid
        else:
            x = mid
    print(y)
0