結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー しらっ亭しらっ亭
提出日時 2016-03-11 00:17:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 5,000 ms
コード長 258 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-11-08 11:47:53
合計ジャッジ時間 8,580 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 241 ms
102,144 KB
testcase_01 AC 48 ms
58,240 KB
testcase_02 AC 147 ms
87,040 KB
testcase_03 AC 216 ms
98,688 KB
testcase_04 AC 271 ms
107,264 KB
testcase_05 AC 270 ms
107,904 KB
testcase_06 AC 272 ms
108,032 KB
testcase_07 AC 279 ms
102,016 KB
testcase_08 AC 278 ms
102,016 KB
testcase_09 AC 282 ms
101,888 KB
testcase_10 AC 251 ms
103,936 KB
testcase_11 AC 262 ms
107,008 KB
testcase_12 AC 244 ms
103,296 KB
testcase_13 AC 256 ms
105,472 KB
testcase_14 AC 263 ms
107,392 KB
testcase_15 AC 246 ms
105,344 KB
testcase_16 AC 270 ms
107,648 KB
testcase_17 AC 267 ms
108,032 KB
testcase_18 AC 271 ms
107,520 KB
testcase_19 AC 284 ms
101,760 KB
testcase_20 AC 281 ms
102,016 KB
testcase_21 AC 278 ms
101,632 KB
testcase_22 AC 246 ms
103,424 KB
testcase_23 AC 262 ms
107,008 KB
testcase_24 AC 42 ms
51,712 KB
testcase_25 AC 68 ms
68,096 KB
testcase_26 AC 65 ms
65,664 KB
testcase_27 AC 59 ms
62,976 KB
testcase_28 AC 105 ms
79,104 KB
testcase_29 AC 86 ms
76,544 KB
testcase_30 AC 68 ms
68,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

L.sort()

l = L[-1] / K
r = L[-1] + 1

for _ in range(60):
    m = (l + r) / 2
    n = sum(int(l / m) for l in L)
    if n >= K:
        l = m
    else:
        r = m

print((l + r) / 2)
0