結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー takeshiDtakeshiD
提出日時 2020-03-07 07:26:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,251 ms / 5,000 ms
コード長 323 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,788 KB
最終ジャッジ日時 2024-11-08 13:13:44
合計ジャッジ時間 57,230 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,873 ms
32,564 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 1,235 ms
19,160 KB
testcase_03 AC 2,356 ms
26,580 KB
testcase_04 AC 2,636 ms
29,356 KB
testcase_05 AC 2,616 ms
29,484 KB
testcase_06 AC 2,289 ms
29,352 KB
testcase_07 AC 3,249 ms
32,660 KB
testcase_08 AC 3,251 ms
32,788 KB
testcase_09 AC 2,781 ms
32,664 KB
testcase_10 AC 2,373 ms
26,564 KB
testcase_11 AC 2,523 ms
28,544 KB
testcase_12 AC 2,009 ms
25,932 KB
testcase_13 AC 2,978 ms
31,148 KB
testcase_14 AC 3,094 ms
31,592 KB
testcase_15 AC 2,397 ms
29,272 KB
testcase_16 AC 1,861 ms
29,364 KB
testcase_17 AC 1,814 ms
29,344 KB
testcase_18 AC 1,776 ms
29,224 KB
testcase_19 AC 1,705 ms
32,660 KB
testcase_20 AC 1,668 ms
32,656 KB
testcase_21 AC 1,654 ms
32,784 KB
testcase_22 AC 1,570 ms
27,640 KB
testcase_23 AC 1,659 ms
28,552 KB
testcase_24 AC 31 ms
10,880 KB
testcase_25 AC 100 ms
11,136 KB
testcase_26 AC 56 ms
10,880 KB
testcase_27 AC 50 ms
10,880 KB
testcase_28 AC 560 ms
14,304 KB
testcase_29 AC 307 ms
12,280 KB
testcase_30 AC 103 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def c(x):
    if x==0: return True
    global L,K
    ret = 0
    for l in L:
        ret += l//x
    return ret>=K

N = int(input())
L = list(map(int, input().split()))
K = int(input())
inf = 0
sup = 10**9
for i in range(100):
    mid = (inf+sup)/2.0
    if c(mid):
        inf = mid
    else:
        sup = mid
print(mid)
0