結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nisizawanisizawa
提出日時 2017-12-09 16:19:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,213 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,256 KB
最終ジャッジ日時 2024-11-08 12:29:33
合計ジャッジ時間 66,154 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,597 ms
33,256 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 1,217 ms
18,920 KB
testcase_03 AC 2,291 ms
26,428 KB
testcase_04 AC 2,953 ms
29,204 KB
testcase_05 AC 2,906 ms
29,332 KB
testcase_06 AC 2,567 ms
29,204 KB
testcase_07 AC 3,213 ms
32,516 KB
testcase_08 AC 3,172 ms
32,636 KB
testcase_09 AC 2,954 ms
32,508 KB
testcase_10 AC 2,485 ms
27,624 KB
testcase_11 AC 2,801 ms
28,508 KB
testcase_12 AC 2,311 ms
26,948 KB
testcase_13 AC 2,952 ms
31,004 KB
testcase_14 AC 3,017 ms
31,788 KB
testcase_15 AC 2,464 ms
29,248 KB
testcase_16 AC 2,535 ms
29,204 KB
testcase_17 AC 2,386 ms
29,320 KB
testcase_18 AC 2,317 ms
29,196 KB
testcase_19 AC 2,254 ms
32,516 KB
testcase_20 AC 2,270 ms
32,504 KB
testcase_21 AC 2,285 ms
32,632 KB
testcase_22 AC 2,114 ms
27,512 KB
testcase_23 AC 2,320 ms
28,404 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 97 ms
11,136 KB
testcase_26 AC 55 ms
10,880 KB
testcase_27 AC 48 ms
10,624 KB
testcase_28 AC 541 ms
14,072 KB
testcase_29 AC 293 ms
12,288 KB
testcase_30 AC 98 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ls = list(map(int, input().split()))
k = int(input())

low = 0
high = max(ls)

for i in range(60):
    mid = (low + high) / 2
    
    ct = 0
    for l in ls:
        ct += l // mid
        
    if ct >= k:
        low = mid
    else:
        high = mid

print('{:.20f}'.format(mid))
0