結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,361 ms
33,128 KB
testcase_01 WA -
testcase_02 AC 1,148 ms
19,008 KB
testcase_03 AC 2,170 ms
26,552 KB
testcase_04 AC 2,643 ms
29,332 KB
testcase_05 AC 2,524 ms
29,332 KB
testcase_06 AC 2,508 ms
29,328 KB
testcase_07 AC 2,889 ms
32,640 KB
testcase_08 AC 2,973 ms
32,636 KB
testcase_09 AC 2,749 ms
32,636 KB
testcase_10 AC 2,319 ms
27,500 KB
testcase_11 AC 2,453 ms
28,440 KB
testcase_12 AC 2,120 ms
26,820 KB
testcase_13 AC 2,716 ms
31,136 KB
testcase_14 AC 2,827 ms
31,796 KB
testcase_15 AC 2,277 ms
29,372 KB
testcase_16 AC 2,243 ms
29,204 KB
testcase_17 AC 2,281 ms
29,324 KB
testcase_18 AC 2,321 ms
29,200 KB
testcase_19 AC 2,133 ms
32,512 KB
testcase_20 AC 2,082 ms
32,508 KB
testcase_21 AC 2,084 ms
32,632 KB
testcase_22 AC 1,972 ms
27,640 KB
testcase_23 AC 2,220 ms
28,532 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 92 ms
11,136 KB
testcase_26 AC 51 ms
10,880 KB
testcase_27 AC 45 ms
10,624 KB
testcase_28 AC 495 ms
14,204 KB
testcase_29 AC 287 ms
12,544 KB
testcase_30 AC 92 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(55):
    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