結果

問題 No.2420 Simple Problem
ユーザー nikoro256nikoro256
提出日時 2023-08-12 15:27:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-11-20 02:26:56
合計ジャッジ時間 24,102 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 336 ms
76,032 KB
testcase_02 AC 73 ms
67,840 KB
testcase_03 AC 177 ms
76,032 KB
testcase_04 AC 577 ms
75,776 KB
testcase_05 AC 399 ms
76,032 KB
testcase_06 AC 713 ms
76,160 KB
testcase_07 AC 728 ms
76,032 KB
testcase_08 AC 707 ms
76,288 KB
testcase_09 AC 702 ms
76,032 KB
testcase_10 AC 710 ms
76,160 KB
testcase_11 AC 713 ms
76,032 KB
testcase_12 AC 710 ms
76,032 KB
testcase_13 AC 718 ms
76,416 KB
testcase_14 AC 723 ms
76,416 KB
testcase_15 AC 715 ms
76,032 KB
testcase_16 AC 719 ms
76,416 KB
testcase_17 AC 718 ms
76,032 KB
testcase_18 AC 709 ms
76,032 KB
testcase_19 AC 714 ms
75,904 KB
testcase_20 AC 706 ms
76,032 KB
testcase_21 AC 702 ms
75,904 KB
testcase_22 AC 717 ms
76,032 KB
testcase_23 AC 715 ms
76,032 KB
testcase_24 AC 704 ms
75,776 KB
testcase_25 AC 707 ms
76,288 KB
testcase_26 WA -
testcase_27 AC 579 ms
76,160 KB
testcase_28 AC 577 ms
76,032 KB
testcase_29 AC 584 ms
76,032 KB
testcase_30 AC 590 ms
75,904 KB
testcase_31 AC 598 ms
76,160 KB
testcase_32 AC 42 ms
52,224 KB
testcase_33 AC 334 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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