結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー irumo8202irumo8202
提出日時 2022-01-24 16:15:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,651 ms / 5,000 ms
コード長 358 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,856 KB
最終ジャッジ日時 2024-11-08 13:43:42
合計ジャッジ時間 44,260 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,413 ms
35,768 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 980 ms
20,056 KB
testcase_03 AC 1,881 ms
28,756 KB
testcase_04 AC 2,122 ms
33,916 KB
testcase_05 AC 2,101 ms
33,940 KB
testcase_06 AC 1,812 ms
33,964 KB
testcase_07 AC 2,651 ms
35,612 KB
testcase_08 AC 2,620 ms
35,732 KB
testcase_09 AC 2,539 ms
35,732 KB
testcase_10 AC 1,959 ms
30,660 KB
testcase_11 AC 1,994 ms
32,768 KB
testcase_12 AC 1,569 ms
29,892 KB
testcase_13 AC 2,363 ms
33,840 KB
testcase_14 AC 2,425 ms
34,532 KB
testcase_15 AC 2,179 ms
31,960 KB
testcase_16 AC 1,276 ms
33,968 KB
testcase_17 AC 1,169 ms
33,904 KB
testcase_18 AC 766 ms
33,960 KB
testcase_19 AC 1,218 ms
35,740 KB
testcase_20 AC 900 ms
35,732 KB
testcase_21 AC 926 ms
35,856 KB
testcase_22 AC 693 ms
31,756 KB
testcase_23 AC 730 ms
32,772 KB
testcase_24 AC 28 ms
10,880 KB
testcase_25 AC 78 ms
11,264 KB
testcase_26 AC 48 ms
10,880 KB
testcase_27 AC 42 ms
10,880 KB
testcase_28 AC 433 ms
14,692 KB
testcase_29 AC 230 ms
12,544 KB
testcase_30 AC 80 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = list(map(lambda x: int(x) * 10 ** 10, input().split()))
K = int(input())


def solve(x):
    cnt = 0
    for l in L:
        cnt += l // x
    return cnt >= K


left = 0
right = 10 ** 20

while right - left > 1:
    mid = (right + left) // 2
    if solve(mid):
        left = mid
    else:
        right = mid - 1

print(left / 10 ** 10)
0