結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー YamadaYamada
提出日時 2019-01-17 16:39:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,260 ms / 5,000 ms
コード長 431 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,796 KB
最終ジャッジ日時 2024-11-08 12:49:49
合計ジャッジ時間 41,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,259 ms
32,696 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 810 ms
18,912 KB
testcase_03 AC 1,536 ms
26,496 KB
testcase_04 AC 2,247 ms
29,492 KB
testcase_05 AC 2,260 ms
29,236 KB
testcase_06 AC 1,911 ms
29,240 KB
testcase_07 AC 2,119 ms
32,540 KB
testcase_08 AC 2,128 ms
32,664 KB
testcase_09 AC 1,779 ms
32,540 KB
testcase_10 AC 2,025 ms
26,576 KB
testcase_11 AC 2,143 ms
28,556 KB
testcase_12 AC 1,674 ms
25,808 KB
testcase_13 AC 1,943 ms
30,708 KB
testcase_14 AC 2,012 ms
31,728 KB
testcase_15 AC 1,556 ms
29,412 KB
testcase_16 AC 1,508 ms
29,244 KB
testcase_17 AC 1,386 ms
29,356 KB
testcase_18 AC 1,159 ms
29,360 KB
testcase_19 AC 1,259 ms
32,796 KB
testcase_20 AC 1,146 ms
32,540 KB
testcase_21 AC 1,145 ms
32,668 KB
testcase_22 AC 1,047 ms
26,584 KB
testcase_23 AC 1,104 ms
28,436 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 76 ms
11,136 KB
testcase_26 AC 48 ms
11,008 KB
testcase_27 AC 42 ms
10,624 KB
testcase_28 AC 372 ms
14,060 KB
testcase_29 AC 211 ms
12,416 KB
testcase_30 AC 78 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N =int(input())
li =[int(i)for i in input().split()]
K =int(input())

def wa(L,d):
    n = 0
    for i in L:
        n += int(i/d)
    return n

def nibuntansaku(l,s):
    left = max(l)+1
    right =0
    mid =(left+right)/2.0
    while abs(right -left)/mid > 10**(-9):
        mid = (left + right)/2.0
        if wa(l,mid) >= s:
            right =mid
        else:
            left =mid
    return right
print(nibuntansaku(li,K))
0