結果

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

ソースコード

diff #

n  = int(input())

for i in range(n):
    a, b = map(int, input().split())
    l = 2
    r = 70000
    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(l)
0