結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nisizawanisizawa
提出日時 2017-12-09 16:20:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,256 KB
最終ジャッジ日時 2024-05-07 12:07:37
合計ジャッジ時間 42,527 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,529 ms
33,256 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1,452 ms
26,644 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,831 ms
32,640 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1,460 ms
27,080 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1,624 ms
29,292 KB
testcase_16 AC 1,538 ms
29,336 KB
testcase_17 AC 1,454 ms
29,332 KB
testcase_18 AC 1,566 ms
29,424 KB
testcase_19 AC 1,567 ms
32,636 KB
testcase_20 AC 1,587 ms
32,632 KB
testcase_21 AC 1,421 ms
32,548 KB
testcase_22 AC 1,307 ms
27,648 KB
testcase_23 AC 1,439 ms
28,624 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

low = 0
high = max(ls)

for i in range(40):
    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