結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー titiatitia
提出日時 2021-12-26 02:14:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,278 ms / 5,000 ms
コード長 538 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,684 KB
最終ジャッジ日時 2024-11-08 13:41:30
合計ジャッジ時間 46,162 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,954 ms
32,584 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 844 ms
18,928 KB
testcase_03 AC 1,581 ms
26,596 KB
testcase_04 AC 2,120 ms
28,236 KB
testcase_05 AC 2,166 ms
28,228 KB
testcase_06 AC 1,732 ms
28,344 KB
testcase_07 AC 2,226 ms
32,552 KB
testcase_08 AC 2,278 ms
32,676 KB
testcase_09 AC 1,751 ms
32,520 KB
testcase_10 AC 1,970 ms
26,452 KB
testcase_11 AC 2,027 ms
27,160 KB
testcase_12 AC 1,647 ms
25,956 KB
testcase_13 AC 2,108 ms
31,060 KB
testcase_14 AC 2,123 ms
31,484 KB
testcase_15 AC 1,554 ms
29,264 KB
testcase_16 AC 1,623 ms
28,228 KB
testcase_17 AC 1,572 ms
28,088 KB
testcase_18 AC 1,550 ms
28,224 KB
testcase_19 AC 1,556 ms
32,684 KB
testcase_20 AC 1,776 ms
32,424 KB
testcase_21 AC 1,436 ms
32,556 KB
testcase_22 AC 1,670 ms
27,428 KB
testcase_23 AC 1,380 ms
28,496 KB
testcase_24 AC 29 ms
10,624 KB
testcase_25 AC 80 ms
11,008 KB
testcase_26 AC 47 ms
10,880 KB
testcase_27 AC 40 ms
10,880 KB
testcase_28 AC 398 ms
13,948 KB
testcase_29 AC 221 ms
12,544 KB
testcase_30 AC 79 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
L=list(map(int,input().split()))
K=int(input())

OK=max(L)//K
NG=sum(L)//K

while NG-OK>1:
    mid=(OK+NG)//2

    ST=0
    for l in L:
        ST+=l//mid

        if ST>=K:
            break

    if ST>=K:
        OK=mid
    else:
        NG=mid

OK=max(10**(-9),OK-1)
NG=NG+1

while NG-OK>=max(10**(-9),OK/(10**9)):
    mid=(OK+NG)/2

    ST=0
    for l in L:
        ST+=l//mid

        if ST>=K:
            break

    if ST>=K:
        OK=mid
    else:
        NG=mid

print(OK)
0