結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー titiatitia
提出日時 2021-12-26 02:17:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 763 ms / 5,000 ms
コード長 333 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 105,728 KB
最終ジャッジ日時 2024-11-08 13:41:53
合計ジャッジ時間 13,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 362 ms
99,968 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 322 ms
86,528 KB
testcase_03 AC 563 ms
96,896 KB
testcase_04 AC 564 ms
105,472 KB
testcase_05 AC 557 ms
104,960 KB
testcase_06 AC 456 ms
105,472 KB
testcase_07 AC 758 ms
100,224 KB
testcase_08 AC 763 ms
100,096 KB
testcase_09 AC 605 ms
100,224 KB
testcase_10 AC 513 ms
101,888 KB
testcase_11 AC 541 ms
105,088 KB
testcase_12 AC 409 ms
101,888 KB
testcase_13 AC 700 ms
103,040 KB
testcase_14 AC 723 ms
105,728 KB
testcase_15 AC 531 ms
103,040 KB
testcase_16 AC 303 ms
105,088 KB
testcase_17 AC 279 ms
105,216 KB
testcase_18 AC 291 ms
105,344 KB
testcase_19 AC 292 ms
100,352 KB
testcase_20 AC 332 ms
100,352 KB
testcase_21 AC 294 ms
100,224 KB
testcase_22 AC 312 ms
101,760 KB
testcase_23 AC 258 ms
105,088 KB
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 69 ms
64,512 KB
testcase_26 AC 55 ms
61,696 KB
testcase_27 AC 53 ms
60,800 KB
testcase_28 AC 180 ms
79,744 KB
testcase_29 AC 124 ms
73,344 KB
testcase_30 AC 70 ms
64,640 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>=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