結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー vwxyzvwxyz
提出日時 2022-06-21 03:31:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 738 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 111,552 KB
最終ジャッジ日時 2024-10-13 17:21:47
合計ジャッジ時間 20,764 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 552 ms
101,660 KB
testcase_01 AC 42 ms
57,728 KB
testcase_02 AC 466 ms
78,976 KB
testcase_03 AC 856 ms
95,232 KB
testcase_04 AC 846 ms
103,808 KB
testcase_05 AC 837 ms
103,424 KB
testcase_06 AC 672 ms
103,936 KB
testcase_07 AC 1,167 ms
101,848 KB
testcase_08 AC 1,281 ms
101,800 KB
testcase_09 AC 917 ms
102,000 KB
testcase_10 AC 769 ms
98,816 KB
testcase_11 AC 815 ms
102,912 KB
testcase_12 AC 590 ms
98,688 KB
testcase_13 AC 1,137 ms
104,576 KB
testcase_14 AC 1,124 ms
107,380 KB
testcase_15 AC 808 ms
104,112 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def Bisect_Int(ok,ng,is_ok):
    while abs(ok-ng)>1:
        mid=(ok+ng)//2
        if is_ok(mid):
            ok=mid
        else:
            ng=mid
    return ok

def Bisect_Float(ok,ng,is_ok,eps=1e-12,cnt=0):
    if cnt:
        for _ in range(cnt):
            mid=(ok*ng)/2
            if is_ok(mid):
                ok=mid
            else:
                ng=mid
    else:
        while abs(ok-ng)>eps:
            mid=(ok+ng)/2
            if is_ok(mid):
                ok=mid
            else:
                ng=mid
    return ok

N=int(input())
L=list(map(int,input().split()))
K=int(input())
def is_ok(x):
    cnt=0
    for l in L:
        cnt+=l//x
    return cnt>=K
ans=Bisect_Float(1e-9,max(L),is_ok,eps=1e-9)
print(ans)
0