結果

問題 No.2420 Simple Problem
ユーザー OnjoujiToki
提出日時 2023-09-08 04:15:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 287 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-06-25 21:30:04
合計ジャッジ時間 5,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other TLE * 1 -- * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

n  = int(input())

for i in range(n):
    a, b = map(int, input().split())
    l = 0
    r = 1e7
    while l < r :
        x =  (l + r) // 2
        d = x * x - a - b
        if 4 * a * b < d * d and x * x > a + b:
            r = x
        else:
            l = x + 1
    print(int(l))
0