結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー tnodinotnodino
提出日時 2022-03-06 14:46:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 3,931 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,396 KB
最終ジャッジ日時 2024-11-08 13:46:01
合計ジャッジ時間 72,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,456 ms
32,548 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 1,488 ms
19,024 KB
testcase_03 AC 2,866 ms
26,564 KB
testcase_04 AC 3,281 ms
29,216 KB
testcase_05 AC 3,375 ms
29,344 KB
testcase_06 AC 2,965 ms
29,216 KB
testcase_07 AC 3,891 ms
33,268 KB
testcase_08 AC 3,931 ms
33,392 KB
testcase_09 AC 3,486 ms
33,396 KB
testcase_10 AC 2,999 ms
26,428 KB
testcase_11 AC 3,131 ms
28,580 KB
testcase_12 AC 2,592 ms
26,652 KB
testcase_13 AC 3,591 ms
31,148 KB
testcase_14 AC 3,760 ms
32,316 KB
testcase_15 AC 2,958 ms
30,056 KB
testcase_16 AC 2,648 ms
29,352 KB
testcase_17 AC 2,557 ms
29,316 KB
testcase_18 AC 2,452 ms
29,340 KB
testcase_19 AC 2,446 ms
33,264 KB
testcase_20 AC 2,361 ms
33,384 KB
testcase_21 AC 2,362 ms
33,388 KB
testcase_22 AC 2,230 ms
27,652 KB
testcase_23 AC 2,344 ms
28,416 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 113 ms
11,136 KB
testcase_26 AC 60 ms
10,880 KB
testcase_27 AC 51 ms
10,752 KB
testcase_28 AC 673 ms
14,332 KB
testcase_29 AC 354 ms
12,396 KB
testcase_30 AC 114 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Check(x):
    cnt = 0
    for i in range(N):
        cnt += L[i] // x
    if cnt >= K:
        return True
    else:
        return False

N = int(input())
L = list(map(int,input().split()))
K = int(input())
ok = 0
ng = max(L) + 1
for _ in range(100):
    x = (ok + ng) / 2
    if Check(x):
        ok = x
    else:
        ng = x
print(ok)
0