結果

問題 No.2420 Simple Problem
ユーザー nikoro256nikoro256
提出日時 2023-08-12 14:24:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 77,464 KB
最終ジャッジ日時 2024-11-19 19:18:45
合計ジャッジ時間 41,753 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 660 ms
76,956 KB
testcase_02 AC 80 ms
72,576 KB
testcase_03 AC 288 ms
76,928 KB
testcase_04 AC 1,138 ms
77,112 KB
testcase_05 AC 754 ms
76,244 KB
testcase_06 AC 1,402 ms
77,184 KB
testcase_07 AC 1,387 ms
76,836 KB
testcase_08 AC 1,404 ms
77,068 KB
testcase_09 AC 1,377 ms
76,800 KB
testcase_10 AC 1,399 ms
77,012 KB
testcase_11 AC 1,546 ms
76,568 KB
testcase_12 AC 1,410 ms
77,144 KB
testcase_13 AC 1,391 ms
77,232 KB
testcase_14 AC 1,399 ms
77,144 KB
testcase_15 AC 1,407 ms
77,056 KB
testcase_16 AC 1,387 ms
76,840 KB
testcase_17 AC 1,408 ms
76,800 KB
testcase_18 AC 1,387 ms
77,296 KB
testcase_19 AC 1,374 ms
76,808 KB
testcase_20 AC 1,386 ms
76,596 KB
testcase_21 AC 1,419 ms
76,672 KB
testcase_22 AC 1,420 ms
77,168 KB
testcase_23 AC 1,395 ms
77,144 KB
testcase_24 AC 1,401 ms
77,052 KB
testcase_25 AC 1,422 ms
77,100 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 37 ms
52,224 KB
testcase_33 AC 609 ms
76,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
for _ in range(N):
    A,B=map(int,input().split())
    left,right=(math.sqrt(A+B)-1)//1+1,7*10**4
    while right-left>1:
        mid=(right+left)//2
        if 4*A*B<(mid**2-A-B)**2:
            right=mid
        else:
            left=mid
    print(int(right))
0