結果

問題 No.2420 Simple Problem
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-08-12 14:04:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 809 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 79,120 KB
最終ジャッジ日時 2024-11-19 17:17:34
合計ジャッジ時間 25,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 392 ms
78,472 KB
testcase_02 AC 72 ms
68,864 KB
testcase_03 AC 219 ms
77,952 KB
testcase_04 AC 638 ms
78,180 KB
testcase_05 AC 454 ms
78,348 KB
testcase_06 AC 780 ms
78,428 KB
testcase_07 AC 776 ms
78,312 KB
testcase_08 AC 782 ms
78,132 KB
testcase_09 AC 809 ms
78,572 KB
testcase_10 AC 788 ms
78,736 KB
testcase_11 AC 785 ms
78,308 KB
testcase_12 AC 786 ms
79,120 KB
testcase_13 AC 775 ms
78,164 KB
testcase_14 AC 797 ms
78,344 KB
testcase_15 AC 789 ms
78,788 KB
testcase_16 AC 809 ms
77,768 KB
testcase_17 AC 789 ms
77,888 KB
testcase_18 AC 782 ms
78,708 KB
testcase_19 AC 772 ms
78,780 KB
testcase_20 AC 783 ms
78,304 KB
testcase_21 AC 792 ms
77,896 KB
testcase_22 AC 781 ms
78,344 KB
testcase_23 AC 800 ms
78,832 KB
testcase_24 AC 785 ms
78,652 KB
testcase_25 AC 790 ms
78,284 KB
testcase_26 AC 39 ms
52,480 KB
testcase_27 AC 610 ms
77,440 KB
testcase_28 AC 615 ms
77,696 KB
testcase_29 AC 620 ms
77,568 KB
testcase_30 AC 605 ms
77,184 KB
testcase_31 AC 614 ms
77,648 KB
testcase_32 AC 40 ms
53,500 KB
testcase_33 AC 386 ms
78,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a,b,x):

    return 4*a*b < x**4 - 2*(x**2*(a+b)) + (a+b)**2
n = int(input())
for _ in range(n):
    a,b = map(int,input().split())

    base = int(a**0.5+b**0.5)
    for i in range(base,base+5):
        if f(a,b,i):
            print(i)
            break
        
            
0