結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー noriocnorioc
提出日時 2024-08-26 00:43:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 553 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 107,468 KB
最終ジャッジ日時 2024-08-26 00:43:38
合計ジャッジ時間 6,583 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
102,300 KB
testcase_01 AC 38 ms
59,712 KB
testcase_02 AC 91 ms
79,096 KB
testcase_03 AC 134 ms
96,716 KB
testcase_04 AC 165 ms
103,692 KB
testcase_05 AC 186 ms
103,992 KB
testcase_06 AC 166 ms
104,048 KB
testcase_07 AC 179 ms
102,096 KB
testcase_08 AC 181 ms
102,068 KB
testcase_09 AC 185 ms
101,944 KB
testcase_10 AC 154 ms
99,228 KB
testcase_11 AC 164 ms
104,520 KB
testcase_12 AC 168 ms
100,152 KB
testcase_13 AC 164 ms
104,468 KB
testcase_14 AC 174 ms
107,468 KB
testcase_15 AC 158 ms
103,908 KB
testcase_16 AC 175 ms
103,828 KB
testcase_17 AC 165 ms
104,468 KB
testcase_18 AC 171 ms
104,432 KB
testcase_19 AC 200 ms
102,268 KB
testcase_20 AC 179 ms
101,908 KB
testcase_21 AC 182 ms
102,088 KB
testcase_22 AC 154 ms
98,432 KB
testcase_23 AC 166 ms
103,956 KB
testcase_24 AC 36 ms
52,444 KB
testcase_25 AC 45 ms
62,204 KB
testcase_26 AC 44 ms
61,864 KB
testcase_27 AC 43 ms
59,244 KB
testcase_28 AC 65 ms
69,580 KB
testcase_29 AC 61 ms
65,620 KB
testcase_30 AC 45 ms
62,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


# 長さ m の棒を K 本作れるか
def can(m: float) -> bool:
    cnt = 0
    for l in L:
        cnt += int(l / m)

    return cnt >= K


lo = 0
hi = max(L)
ans = lo
for _ in range(60):
    m = (lo + hi) / 2
    if can(m):
        ans = max(ans, m)
        lo = m
    else:
        hi = m

print(ans)
#print(f'{ans:.10f}')
0