結果

問題 No.2420 Simple Problem
ユーザー titiatitia
提出日時 2023-08-19 06:35:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 238 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 78,664 KB
最終ジャッジ日時 2024-05-06 13:48:29
合計ジャッジ時間 25,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 379 ms
78,216 KB
testcase_02 AC 82 ms
75,008 KB
testcase_03 AC 223 ms
77,312 KB
testcase_04 AC 622 ms
78,116 KB
testcase_05 AC 499 ms
78,628 KB
testcase_06 AC 765 ms
77,376 KB
testcase_07 AC 748 ms
78,124 KB
testcase_08 AC 760 ms
77,480 KB
testcase_09 AC 800 ms
78,300 KB
testcase_10 AC 735 ms
77,312 KB
testcase_11 AC 774 ms
77,876 KB
testcase_12 AC 728 ms
77,184 KB
testcase_13 AC 789 ms
77,692 KB
testcase_14 AC 752 ms
77,792 KB
testcase_15 AC 731 ms
77,440 KB
testcase_16 AC 788 ms
78,292 KB
testcase_17 AC 745 ms
77,736 KB
testcase_18 AC 765 ms
78,352 KB
testcase_19 AC 705 ms
77,640 KB
testcase_20 AC 731 ms
77,732 KB
testcase_21 AC 715 ms
77,312 KB
testcase_22 AC 787 ms
78,664 KB
testcase_23 AC 757 ms
78,348 KB
testcase_24 AC 730 ms
77,312 KB
testcase_25 AC 730 ms
77,184 KB
testcase_26 WA -
testcase_27 AC 588 ms
77,312 KB
testcase_28 AC 597 ms
77,376 KB
testcase_29 AC 597 ms
77,312 KB
testcase_30 AC 596 ms
77,696 KB
testcase_31 AC 597 ms
77,440 KB
testcase_32 AC 37 ms
51,968 KB
testcase_33 AC 384 ms
77,408 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