結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー 大塚遥大塚遥
提出日時 2023-08-26 23:00:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 391 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 62,860 KB
最終ジャッジ日時 2024-12-26 02:41:53
合計ジャッジ時間 108,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
37,928 KB
testcase_01 AC 36 ms
43,764 KB
testcase_02 AC 1,651 ms
24,528 KB
testcase_03 AC 3,255 ms
55,412 KB
testcase_04 AC 3,986 ms
58,296 KB
testcase_05 AC 3,970 ms
34,468 KB
testcase_06 AC 3,377 ms
34,632 KB
testcase_07 AC 4,421 ms
38,648 KB
testcase_08 AC 4,428 ms
62,860 KB
testcase_09 TLE -
testcase_10 AC 3,532 ms
59,424 KB
testcase_11 AC 3,732 ms
61,416 KB
testcase_12 AC 2,854 ms
31,776 KB
testcase_13 AC 3,984 ms
36,524 KB
testcase_14 AC 4,332 ms
37,440 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 35 ms
10,624 KB
testcase_25 AC 126 ms
11,008 KB
testcase_26 AC 66 ms
10,752 KB
testcase_27 AC 55 ms
10,624 KB
testcase_28 AC 734 ms
13,952 KB
testcase_29 AC 395 ms
12,400 KB
testcase_30 AC 125 ms
39,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = list(map(int,input().split()))
K = int(input())

ok = 0
ng = 10**9


def is_ok(x):
    cnt = 0
    for i in range(N):
        num = L[i] // x
        cnt += num
        if cnt >= K:
            return 1
        
    return 0

while ng - ok > 10**(-10):
    mid = (ng + ok) / 2
    if is_ok(mid):
        ok = mid
    else:
        ng = mid
    # print(ok,ng)
print(ok)

0