結果

問題 No.2420 Simple Problem
ユーザー titiatitia
提出日時 2023-08-19 06:35:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 238 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 78,664 KB
最終ジャッジ日時 2024-11-28 20:47:03
合計ジャッジ時間 24,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,940 KB
testcase_01 AC 360 ms
78,360 KB
testcase_02 AC 80 ms
75,224 KB
testcase_03 AC 219 ms
77,368 KB
testcase_04 AC 611 ms
77,884 KB
testcase_05 AC 472 ms
78,500 KB
testcase_06 AC 701 ms
77,428 KB
testcase_07 AC 718 ms
78,248 KB
testcase_08 AC 723 ms
77,248 KB
testcase_09 AC 740 ms
78,380 KB
testcase_10 AC 702 ms
77,296 KB
testcase_11 AC 742 ms
77,880 KB
testcase_12 AC 706 ms
77,836 KB
testcase_13 AC 777 ms
77,816 KB
testcase_14 AC 716 ms
77,912 KB
testcase_15 AC 702 ms
77,768 KB
testcase_16 AC 758 ms
78,428 KB
testcase_17 AC 714 ms
78,464 KB
testcase_18 AC 728 ms
77,892 KB
testcase_19 AC 698 ms
78,288 KB
testcase_20 AC 717 ms
77,828 KB
testcase_21 AC 702 ms
77,688 KB
testcase_22 AC 770 ms
78,664 KB
testcase_23 AC 717 ms
78,552 KB
testcase_24 AC 717 ms
77,572 KB
testcase_25 AC 692 ms
77,360 KB
testcase_26 WA -
testcase_27 AC 577 ms
77,360 KB
testcase_28 AC 567 ms
77,028 KB
testcase_29 AC 573 ms
77,372 KB
testcase_30 AC 589 ms
77,784 KB
testcase_31 AC 578 ms
77,512 KB
testcase_32 AC 37 ms
53,436 KB
testcase_33 AC 373 ms
77,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

N=int(input())

for i in range(N):
    a,b=map(int,input().split())
    t=round(sqrt(a)+sqrt(b))

    for x in range(t-3,t+4):
        if 2*x*x*a+2*x*x*b<x*x*x*x+a*a+b*b-2*a*b:
            print(x)
            break
0