結果

問題 No.2420 Simple Problem
ユーザー ThetaTheta
提出日時 2024-03-06 18:57:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 549 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-09-29 18:32:46
合計ジャッジ時間 19,133 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,480 KB
testcase_01 AC 245 ms
76,632 KB
testcase_02 AC 61 ms
69,248 KB
testcase_03 AC 137 ms
76,632 KB
testcase_04 AC 419 ms
76,716 KB
testcase_05 AC 307 ms
76,724 KB
testcase_06 AC 544 ms
77,184 KB
testcase_07 AC 516 ms
76,672 KB
testcase_08 AC 540 ms
76,720 KB
testcase_09 AC 549 ms
76,784 KB
testcase_10 AC 535 ms
77,184 KB
testcase_11 AC 535 ms
76,928 KB
testcase_12 AC 532 ms
76,912 KB
testcase_13 AC 530 ms
76,852 KB
testcase_14 AC 528 ms
76,848 KB
testcase_15 AC 518 ms
76,544 KB
testcase_16 AC 514 ms
77,184 KB
testcase_17 AC 514 ms
76,800 KB
testcase_18 AC 533 ms
77,088 KB
testcase_19 AC 521 ms
76,672 KB
testcase_20 AC 523 ms
76,544 KB
testcase_21 AC 529 ms
76,544 KB
testcase_22 AC 514 ms
76,944 KB
testcase_23 AC 503 ms
76,984 KB
testcase_24 AC 530 ms
76,672 KB
testcase_25 AC 531 ms
76,672 KB
testcase_26 AC 36 ms
52,736 KB
testcase_27 AC 413 ms
76,564 KB
testcase_28 AC 418 ms
76,544 KB
testcase_29 AC 438 ms
76,608 KB
testcase_30 AC 416 ms
76,416 KB
testcase_31 AC 431 ms
76,928 KB
testcase_32 AC 37 ms
52,224 KB
testcase_33 AC 257 ms
77,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import count
from math import sqrt
import sys


def printe(*args, end="\n", **kwargs):
    print(*args, end=end, file=sys.stderr, **kwargs)


def main():
    N = int(input())
    for _ in range(N):
        A, B = map(int, input().split())
        X_floor = sqrt(A) + sqrt(B)

        for num in count(int(X_floor - 3)):
            if num < 1:
                continue
            if num**2 - A - B <= 0:
                continue
            if 4 * A * B < (num**2 - A - B)**2:
                print(num)
                break

    # A+B+2√AB < X^2
    # 2√AB < X^2-A-B
    # 4AB < (X^2-A-B)^2


if __name__ == "__main__":
    main()
0