結果

問題 No.2420 Simple Problem
ユーザー 遭難者遭難者
提出日時 2023-08-12 13:32:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 76,556 KB
最終ジャッジ日時 2024-11-19 15:30:21
合計ジャッジ時間 22,998 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,624 KB
testcase_01 AC 275 ms
76,304 KB
testcase_02 AC 59 ms
70,024 KB
testcase_03 AC 141 ms
76,060 KB
testcase_04 AC 506 ms
76,320 KB
testcase_05 AC 333 ms
76,072 KB
testcase_06 AC 577 ms
75,976 KB
testcase_07 AC 605 ms
76,192 KB
testcase_08 AC 626 ms
76,076 KB
testcase_09 AC 584 ms
76,380 KB
testcase_10 AC 602 ms
76,216 KB
testcase_11 AC 600 ms
76,228 KB
testcase_12 AC 593 ms
75,952 KB
testcase_13 AC 582 ms
76,164 KB
testcase_14 AC 585 ms
76,248 KB
testcase_15 AC 590 ms
76,020 KB
testcase_16 AC 613 ms
76,500 KB
testcase_17 AC 581 ms
76,428 KB
testcase_18 AC 586 ms
76,124 KB
testcase_19 AC 594 ms
76,200 KB
testcase_20 AC 580 ms
75,972 KB
testcase_21 AC 566 ms
76,044 KB
testcase_22 AC 577 ms
75,960 KB
testcase_23 AC 581 ms
75,952 KB
testcase_24 AC 599 ms
76,084 KB
testcase_25 AC 601 ms
75,992 KB
testcase_26 AC 37 ms
53,812 KB
testcase_27 AC 478 ms
76,556 KB
testcase_28 AC 509 ms
76,220 KB
testcase_29 AC 490 ms
76,456 KB
testcase_30 AC 489 ms
76,440 KB
testcase_31 AC 489 ms
76,184 KB
testcase_32 AC 38 ms
53,296 KB
testcase_33 AC 277 ms
76,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    a, b = map(int, input().split())
    ok, ng = 10**5, 0
    while ok - ng != 1:
        vs = (ok + ng) >> 1
        jud = vs * vs - a - b
        if jud < 0:
            ng = vs
            continue
        if 4 * a * b < jud * jud:
            ok = vs
        else:
            ng = vs
    print(ok)
0