結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
102,028 KB
testcase_01 AC 39 ms
58,448 KB
testcase_02 AC 92 ms
80,072 KB
testcase_03 AC 137 ms
95,172 KB
testcase_04 AC 171 ms
104,316 KB
testcase_05 AC 172 ms
104,028 KB
testcase_06 AC 184 ms
104,004 KB
testcase_07 AC 181 ms
101,800 KB
testcase_08 AC 184 ms
102,104 KB
testcase_09 AC 183 ms
102,200 KB
testcase_10 AC 159 ms
99,484 KB
testcase_11 AC 167 ms
103,156 KB
testcase_12 AC 155 ms
99,720 KB
testcase_13 AC 193 ms
104,868 KB
testcase_14 AC 173 ms
107,484 KB
testcase_15 AC 159 ms
103,752 KB
testcase_16 AC 175 ms
103,956 KB
testcase_17 AC 173 ms
103,872 KB
testcase_18 AC 173 ms
103,764 KB
testcase_19 AC 184 ms
101,944 KB
testcase_20 AC 210 ms
102,052 KB
testcase_21 AC 185 ms
102,052 KB
testcase_22 AC 158 ms
99,104 KB
testcase_23 AC 167 ms
103,480 KB
testcase_24 AC 36 ms
53,500 KB
testcase_25 AC 47 ms
62,340 KB
testcase_26 AC 45 ms
61,888 KB
testcase_27 AC 41 ms
59,740 KB
testcase_28 AC 64 ms
68,876 KB
testcase_29 AC 54 ms
65,564 KB
testcase_30 AC 46 ms
61,440 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(f'{ans:.10f}')
0