結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,401 ms
35,892 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 977 ms
20,188 KB
testcase_03 AC 1,887 ms
28,756 KB
testcase_04 AC 2,156 ms
34,092 KB
testcase_05 AC 2,108 ms
33,968 KB
testcase_06 AC 1,844 ms
33,960 KB
testcase_07 AC 2,662 ms
35,732 KB
testcase_08 AC 2,576 ms
35,764 KB
testcase_09 AC 2,542 ms
35,732 KB
testcase_10 AC 1,962 ms
30,664 KB
testcase_11 AC 1,992 ms
32,900 KB
testcase_12 AC 1,542 ms
29,900 KB
testcase_13 AC 2,349 ms
33,964 KB
testcase_14 AC 2,443 ms
34,664 KB
testcase_15 AC 2,183 ms
31,956 KB
testcase_16 AC 1,280 ms
33,972 KB
testcase_17 AC 1,162 ms
33,960 KB
testcase_18 AC 767 ms
34,084 KB
testcase_19 AC 1,221 ms
35,736 KB
testcase_20 AC 898 ms
35,772 KB
testcase_21 AC 932 ms
35,728 KB
testcase_22 AC 696 ms
31,752 KB
testcase_23 AC 729 ms
32,900 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 78 ms
11,264 KB
testcase_26 AC 47 ms
11,008 KB
testcase_27 AC 42 ms
10,880 KB
testcase_28 AC 429 ms
14,688 KB
testcase_29 AC 233 ms
12,664 KB
testcase_30 AC 81 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