結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー lloyzlloyz
提出日時 2022-01-16 16:42:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 374 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 105,984 KB
最終ジャッジ日時 2024-11-08 13:40:19
合計ジャッジ時間 5,706 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
99,968 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 88 ms
79,488 KB
testcase_03 AC 122 ms
95,360 KB
testcase_04 AC 145 ms
103,424 KB
testcase_05 AC 144 ms
103,808 KB
testcase_06 AC 145 ms
103,552 KB
testcase_07 AC 155 ms
100,224 KB
testcase_08 AC 154 ms
100,224 KB
testcase_09 AC 154 ms
100,224 KB
testcase_10 AC 134 ms
98,944 KB
testcase_11 AC 140 ms
102,912 KB
testcase_12 AC 132 ms
98,816 KB
testcase_13 AC 140 ms
102,656 KB
testcase_14 AC 145 ms
105,984 KB
testcase_15 AC 137 ms
102,400 KB
testcase_16 AC 154 ms
103,424 KB
testcase_17 AC 146 ms
103,680 KB
testcase_18 AC 164 ms
105,344 KB
testcase_19 AC 159 ms
99,840 KB
testcase_20 AC 179 ms
100,352 KB
testcase_21 AC 176 ms
99,968 KB
testcase_22 AC 148 ms
98,176 KB
testcase_23 AC 157 ms
103,680 KB
testcase_24 AC 41 ms
51,840 KB
testcase_25 AC 56 ms
61,952 KB
testcase_26 AC 53 ms
61,184 KB
testcase_27 AC 48 ms
59,648 KB
testcase_28 AC 67 ms
69,120 KB
testcase_29 AC 60 ms
65,024 KB
testcase_30 AC 54 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n = int(input())
L = list(map(int, input().split()))
k = int(input())
eps = 1e-9

left = max(L) / k
right = sum(L) / k
while right - left > max(eps, left * eps):
    mid = (left + right) / 2
    cnt = 0
    for i in range(n):
        cnt += int(L[i] / mid)
    if cnt >= k:
        left = mid
    else:
        right = mid
print(left)
0