結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー ckawatakckawatak
提出日時 2017-09-30 18:03:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,634 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 108,256 KB
最終ジャッジ日時 2024-11-08 12:24:59
合計ジャッジ時間 26,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 824 ms
102,212 KB
testcase_01 AC 41 ms
58,368 KB
testcase_02 AC 667 ms
87,636 KB
testcase_03 AC 1,194 ms
99,456 KB
testcase_04 AC 1,175 ms
107,904 KB
testcase_05 AC 1,167 ms
108,160 KB
testcase_06 AC 883 ms
108,256 KB
testcase_07 AC 1,634 ms
102,272 KB
testcase_08 AC 1,632 ms
102,144 KB
testcase_09 AC 937 ms
102,136 KB
testcase_10 AC 1,069 ms
103,884 KB
testcase_11 AC 1,156 ms
107,496 KB
testcase_12 AC 786 ms
103,888 KB
testcase_13 AC 1,512 ms
106,112 KB
testcase_14 AC 1,571 ms
107,264 KB
testcase_15 AC 829 ms
105,600 KB
testcase_16 AC 687 ms
107,860 KB
testcase_17 AC 662 ms
108,032 KB
testcase_18 AC 651 ms
107,856 KB
testcase_19 AC 659 ms
101,888 KB
testcase_20 AC 644 ms
102,116 KB
testcase_21 AC 643 ms
101,888 KB
testcase_22 AC 592 ms
104,072 KB
testcase_23 AC 620 ms
107,336 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 AC 94 ms
69,760 KB
testcase_26 AC 68 ms
64,128 KB
testcase_27 AC 60 ms
62,336 KB
testcase_28 AC 347 ms
79,796 KB
testcase_29 AC 217 ms
77,056 KB
testcase_30 AC 97 ms
70,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

LENGTHS.sort()
l = 0
r = LENGTHS[-1]
for i in range(100):
    m = (l + r)/2
    counts = 0
    for length in LENGTHS:
        counts += length//m
    if K <= counts:
        l = m
    else:
        r = m
print("%.15f" % l)
0