結果

問題 No.2420 Simple Problem
ユーザー nikoro256nikoro256
提出日時 2023-08-12 15:30:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 734 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-20 02:56:41
合計ジャッジ時間 23,476 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 344 ms
76,544 KB
testcase_02 AC 75 ms
67,328 KB
testcase_03 AC 176 ms
75,904 KB
testcase_04 AC 578 ms
75,904 KB
testcase_05 AC 393 ms
76,032 KB
testcase_06 AC 704 ms
76,032 KB
testcase_07 AC 699 ms
76,032 KB
testcase_08 AC 718 ms
76,288 KB
testcase_09 AC 714 ms
76,416 KB
testcase_10 AC 715 ms
75,904 KB
testcase_11 AC 728 ms
76,032 KB
testcase_12 AC 716 ms
76,032 KB
testcase_13 AC 705 ms
75,904 KB
testcase_14 AC 707 ms
76,032 KB
testcase_15 AC 717 ms
75,776 KB
testcase_16 AC 710 ms
75,904 KB
testcase_17 AC 717 ms
76,032 KB
testcase_18 AC 704 ms
76,160 KB
testcase_19 AC 706 ms
76,160 KB
testcase_20 AC 718 ms
76,288 KB
testcase_21 AC 710 ms
75,904 KB
testcase_22 AC 714 ms
76,288 KB
testcase_23 AC 713 ms
76,416 KB
testcase_24 AC 708 ms
76,160 KB
testcase_25 AC 734 ms
76,032 KB
testcase_26 AC 44 ms
52,352 KB
testcase_27 AC 584 ms
76,288 KB
testcase_28 AC 592 ms
75,776 KB
testcase_29 AC 582 ms
75,904 KB
testcase_30 AC 583 ms
76,032 KB
testcase_31 AC 586 ms
76,160 KB
testcase_32 AC 43 ms
52,224 KB
testcase_33 AC 334 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N=int(input())
for _ in range(N):
    A,B=map(int,input().split())
    mi=0
    left,right=0,6*10**5
    while right-left>1:
        mid=(right+left)//2
        if A+B<mid*mid:
            right=mid
        else:
            left=mid
    mi=left
    left,right=mi,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