結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nisizawanisizawa
提出日時 2017-12-09 16:34:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 300 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,128 KB
最終ジャッジ日時 2024-06-26 11:23:16
合計ジャッジ時間 58,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,264 ms
33,128 KB
testcase_01 WA -
testcase_02 AC 1,072 ms
18,888 KB
testcase_03 AC 2,026 ms
26,420 KB
testcase_04 AC 2,575 ms
29,204 KB
testcase_05 AC 2,482 ms
29,208 KB
testcase_06 AC 2,585 ms
29,204 KB
testcase_07 AC 2,899 ms
32,640 KB
testcase_08 AC 2,808 ms
32,504 KB
testcase_09 AC 2,554 ms
32,640 KB
testcase_10 AC 2,305 ms
27,504 KB
testcase_11 AC 2,456 ms
28,516 KB
testcase_12 AC 2,079 ms
26,952 KB
testcase_13 AC 2,602 ms
31,136 KB
testcase_14 AC 2,808 ms
31,788 KB
testcase_15 AC 2,192 ms
29,376 KB
testcase_16 AC 2,245 ms
29,212 KB
testcase_17 AC 2,082 ms
29,200 KB
testcase_18 AC 2,067 ms
29,324 KB
testcase_19 AC 2,063 ms
32,512 KB
testcase_20 AC 2,203 ms
32,508 KB
testcase_21 AC 2,019 ms
32,552 KB
testcase_22 AC 1,930 ms
27,640 KB
testcase_23 AC 1,984 ms
28,408 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 87 ms
11,264 KB
testcase_26 AC 51 ms
11,008 KB
testcase_27 AC 44 ms
10,624 KB
testcase_28 AC 479 ms
14,204 KB
testcase_29 AC 273 ms
12,416 KB
testcase_30 AC 91 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(53):
    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