結果

問題 No.2420 Simple Problem
ユーザー kemunikukemuniku
提出日時 2023-08-12 14:18:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 743 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 77,640 KB
最終ジャッジ日時 2024-11-19 18:28:27
合計ジャッジ時間 24,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,256 KB
testcase_01 AC 377 ms
77,112 KB
testcase_02 AC 70 ms
68,928 KB
testcase_03 AC 184 ms
76,624 KB
testcase_04 AC 608 ms
76,840 KB
testcase_05 AC 417 ms
76,980 KB
testcase_06 AC 752 ms
77,512 KB
testcase_07 AC 762 ms
77,328 KB
testcase_08 AC 776 ms
77,144 KB
testcase_09 AC 748 ms
76,628 KB
testcase_10 AC 749 ms
76,916 KB
testcase_11 AC 756 ms
76,848 KB
testcase_12 AC 758 ms
77,520 KB
testcase_13 AC 766 ms
77,244 KB
testcase_14 AC 744 ms
76,928 KB
testcase_15 AC 744 ms
77,252 KB
testcase_16 AC 757 ms
77,256 KB
testcase_17 AC 758 ms
76,956 KB
testcase_18 AC 765 ms
77,092 KB
testcase_19 AC 747 ms
77,032 KB
testcase_20 AC 784 ms
77,388 KB
testcase_21 AC 743 ms
77,004 KB
testcase_22 AC 736 ms
77,640 KB
testcase_23 AC 742 ms
76,856 KB
testcase_24 AC 795 ms
77,208 KB
testcase_25 AC 738 ms
76,912 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 40 ms
51,840 KB
testcase_33 AC 369 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#https://aotamasaki.hatenablog.com/entry/meguru_bisect
def is_ok(arg,Z):
    # 条件を満たすかどうか?問題ごとに定義
    return  Z< arg


def meguru_bisect(ng, ok,Z):
    '''
    初期値のng,okを受け取り,is_okを満たす最小(最大)のokを返す
    まずis_okを定義すべし
    ng ok は  とり得る最小の値-1 とり得る最大の値+1
    最大最小が逆の場合はよしなにひっくり返す
    '''
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid,Z):
            ok = mid
        else:
            ng = mid
    return ok
N = int(input())
for i in range(N):
    A,B = map(int,input().split())
    Z = A**0.5+B**0.5
    X = meguru_bisect(0,10**9,Z)
    print(X)
0