結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー lloyzlloyz
提出日時 2022-01-16 16:40:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 357 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 203,824 KB
最終ジャッジ日時 2024-11-23 11:44:29
合計ジャッジ時間 64,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 39 ms
163,200 KB
testcase_02 AC 85 ms
184,064 KB
testcase_03 AC 122 ms
199,552 KB
testcase_04 AC 145 ms
203,648 KB
testcase_05 AC 146 ms
109,056 KB
testcase_06 AC 156 ms
203,824 KB
testcase_07 AC 163 ms
199,808 KB
testcase_08 AC 161 ms
106,924 KB
testcase_09 AC 171 ms
99,968 KB
testcase_10 AC 135 ms
98,560 KB
testcase_11 AC 142 ms
102,784 KB
testcase_12 AC 141 ms
98,592 KB
testcase_13 AC 147 ms
102,016 KB
testcase_14 AC 153 ms
105,216 KB
testcase_15 AC 150 ms
102,528 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 35 ms
52,096 KB
testcase_25 AC 50 ms
62,336 KB
testcase_26 AC 46 ms
61,824 KB
testcase_27 AC 42 ms
59,648 KB
testcase_28 AC 63 ms
68,992 KB
testcase_29 AC 55 ms
65,280 KB
testcase_30 AC 48 ms
166,912 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 > 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