結果

問題 No.2420 Simple Problem
ユーザー hotate29hotate29
提出日時 2023-08-12 14:30:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 692 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 76,504 KB
最終ジャッジ日時 2024-11-19 19:47:54
合計ジャッジ時間 21,812 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 327 ms
76,040 KB
testcase_02 AC 57 ms
67,268 KB
testcase_03 AC 158 ms
76,212 KB
testcase_04 AC 550 ms
76,248 KB
testcase_05 AC 381 ms
75,920 KB
testcase_06 AC 647 ms
76,032 KB
testcase_07 AC 656 ms
75,828 KB
testcase_08 AC 654 ms
76,228 KB
testcase_09 AC 649 ms
75,960 KB
testcase_10 AC 681 ms
76,004 KB
testcase_11 AC 692 ms
76,232 KB
testcase_12 AC 659 ms
75,980 KB
testcase_13 AC 660 ms
75,848 KB
testcase_14 AC 664 ms
76,320 KB
testcase_15 AC 666 ms
76,224 KB
testcase_16 AC 670 ms
75,832 KB
testcase_17 AC 651 ms
76,448 KB
testcase_18 AC 669 ms
76,256 KB
testcase_19 AC 639 ms
76,320 KB
testcase_20 AC 637 ms
75,896 KB
testcase_21 AC 655 ms
75,956 KB
testcase_22 AC 645 ms
76,264 KB
testcase_23 AC 653 ms
75,884 KB
testcase_24 AC 655 ms
75,964 KB
testcase_25 AC 663 ms
76,352 KB
testcase_26 AC 36 ms
52,880 KB
testcase_27 AC 522 ms
76,504 KB
testcase_28 AC 535 ms
76,196 KB
testcase_29 AC 530 ms
76,092 KB
testcase_30 AC 528 ms
75,812 KB
testcase_31 AC 517 ms
75,956 KB
testcase_32 AC 35 ms
53,220 KB
testcase_33 AC 296 ms
76,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for _ in range(n):
    a, b = map(int, input().split())
    # 二分探索したくなる
    # 不等式からルートを消したい
    ok = 100000
    ng = -1
    while (ok - ng) > 1:
        mid = (ok + ng) // 2
        if 4 * a * b < (mid * mid - a - b) ** 2 and 0 < mid * mid - a - b:
            ok = mid
        else:
            ng = mid
    print(ok)
0