結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー 大塚遥大塚遥
提出日時 2023-08-26 23:05:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 405 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 58,732 KB
最終ジャッジ日時 2024-12-26 02:47:46
合計ジャッジ時間 102,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
58,732 KB
testcase_01 AC 30 ms
15,872 KB
testcase_02 AC 2,337 ms
48,120 KB
testcase_03 AC 4,522 ms
31,944 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 4,703 ms
29,084 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 4,769 ms
26,552 KB
testcase_11 TLE -
testcase_12 AC 3,993 ms
26,520 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 4,682 ms
30,124 KB
testcase_16 AC 4,283 ms
29,420 KB
testcase_17 AC 4,066 ms
29,080 KB
testcase_18 AC 3,684 ms
29,208 KB
testcase_19 AC 3,832 ms
33,132 KB
testcase_20 AC 3,221 ms
33,144 KB
testcase_21 AC 2,932 ms
33,136 KB
testcase_22 AC 2,551 ms
27,316 KB
testcase_23 AC 2,843 ms
28,420 KB
testcase_24 AC 29 ms
10,624 KB
testcase_25 AC 156 ms
11,008 KB
testcase_26 AC 78 ms
10,624 KB
testcase_27 AC 61 ms
10,624 KB
testcase_28 AC 1,024 ms
14,076 KB
testcase_29 AC 533 ms
12,148 KB
testcase_30 AC 155 ms
43,200 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