結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 696 ms
76,672 KB
testcase_02 AC 79 ms
72,192 KB
testcase_03 AC 305 ms
76,996 KB
testcase_04 AC 1,270 ms
76,416 KB
testcase_05 AC 841 ms
76,296 KB
testcase_06 AC 1,528 ms
76,800 KB
testcase_07 AC 1,527 ms
76,952 KB
testcase_08 AC 1,532 ms
76,800 KB
testcase_09 AC 1,534 ms
77,056 KB
testcase_10 AC 1,544 ms
76,672 KB
testcase_11 AC 1,555 ms
76,460 KB
testcase_12 AC 1,573 ms
76,672 KB
testcase_13 AC 1,550 ms
76,800 KB
testcase_14 AC 1,569 ms
76,672 KB
testcase_15 AC 1,571 ms
76,672 KB
testcase_16 AC 1,536 ms
76,928 KB
testcase_17 AC 1,532 ms
76,928 KB
testcase_18 AC 1,533 ms
76,800 KB
testcase_19 AC 1,537 ms
77,128 KB
testcase_20 AC 1,554 ms
76,672 KB
testcase_21 AC 1,540 ms
76,664 KB
testcase_22 AC 1,558 ms
76,460 KB
testcase_23 AC 1,564 ms
76,976 KB
testcase_24 AC 1,554 ms
77,056 KB
testcase_25 AC 1,557 ms
76,672 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 39 ms
52,096 KB
testcase_33 AC 668 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
for _ in range(N):
    A,B=map(int,input().split())
    left,right=math.sqrt(A+B)//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