結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー lloyzlloyz
提出日時 2022-01-16 16:43:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 266 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,472 KB
最終ジャッジ日時 2024-11-08 13:41:39
合計ジャッジ時間 8,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 256 ms
99,968 KB
testcase_01 AC 48 ms
58,624 KB
testcase_02 AC 133 ms
79,232 KB
testcase_03 AC 199 ms
94,848 KB
testcase_04 AC 253 ms
103,680 KB
testcase_05 AC 254 ms
103,552 KB
testcase_06 AC 252 ms
103,680 KB
testcase_07 AC 263 ms
99,968 KB
testcase_08 AC 256 ms
100,096 KB
testcase_09 AC 256 ms
100,224 KB
testcase_10 AC 225 ms
99,072 KB
testcase_11 AC 237 ms
102,912 KB
testcase_12 AC 221 ms
98,560 KB
testcase_13 AC 240 ms
102,528 KB
testcase_14 AC 249 ms
105,472 KB
testcase_15 AC 227 ms
102,656 KB
testcase_16 AC 252 ms
103,808 KB
testcase_17 AC 247 ms
103,936 KB
testcase_18 AC 252 ms
105,216 KB
testcase_19 AC 262 ms
100,224 KB
testcase_20 AC 261 ms
100,096 KB
testcase_21 AC 266 ms
99,968 KB
testcase_22 AC 233 ms
98,944 KB
testcase_23 AC 240 ms
103,808 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 57 ms
62,336 KB
testcase_26 AC 54 ms
61,696 KB
testcase_27 AC 46 ms
59,264 KB
testcase_28 AC 83 ms
69,376 KB
testcase_29 AC 66 ms
65,408 KB
testcase_30 AC 55 ms
62,080 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
for _ in range(100):
    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