結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー 大塚遥大塚遥
提出日時 2023-08-26 23:05:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 405 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,396 KB
最終ジャッジ日時 2024-06-07 18:32:03
合計ジャッジ時間 30,009 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
32,676 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 2,177 ms
19,024 KB
testcase_03 AC 4,201 ms
26,436 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 4,608 ms
29,468 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 4,751 ms
33,232 KB
testcase_10 AC 4,694 ms
26,676 KB
testcase_11 AC 4,879 ms
28,404 KB
testcase_12 AC 3,715 ms
26,652 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 4,066 ms
30,252 KB
testcase_16 AC 3,840 ms
29,224 KB
testcase_17 AC 3,785 ms
29,336 KB
testcase_18 AC 3,399 ms
29,212 KB
testcase_19 AC 3,601 ms
33,260 KB
testcase_20 AC 3,010 ms
33,384 KB
testcase_21 AC 2,421 ms
33,396 KB
testcase_22 AC 2,413 ms
27,656 KB
testcase_23 AC 2,585 ms
28,420 KB
testcase_24 AC 28 ms
10,880 KB
testcase_25 AC 145 ms
11,136 KB
testcase_26 AC 67 ms
10,880 KB
testcase_27 AC 55 ms
10,624 KB
testcase_28 AC 967 ms
14,336 KB
testcase_29 AC 512 ms
12,268 KB
testcase_30 AC 152 ms
11,008 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
inde = 0
while inde <= 100:
    inde += 1
    mid = (ng + ok) / 2
    if is_ok(mid):
        ok = mid
    else:
        ng = mid
    # print(ok,ng)
print(ok)

0