結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー dice4084dice4084
提出日時 2023-01-03 15:56:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 5,000 ms
コード長 350 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-11-27 01:58:42
合計ジャッジ時間 6,713 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
100,452 KB
testcase_01 AC 41 ms
57,856 KB
testcase_02 AC 107 ms
82,048 KB
testcase_03 AC 162 ms
99,584 KB
testcase_04 AC 200 ms
108,928 KB
testcase_05 AC 197 ms
108,288 KB
testcase_06 AC 200 ms
108,288 KB
testcase_07 AC 201 ms
100,104 KB
testcase_08 AC 204 ms
99,988 KB
testcase_09 AC 202 ms
100,108 KB
testcase_10 AC 188 ms
105,088 KB
testcase_11 AC 197 ms
109,056 KB
testcase_12 AC 183 ms
105,216 KB
testcase_13 AC 193 ms
100,864 KB
testcase_14 AC 199 ms
100,224 KB
testcase_15 AC 187 ms
104,576 KB
testcase_16 AC 204 ms
108,672 KB
testcase_17 AC 204 ms
108,928 KB
testcase_18 AC 203 ms
108,288 KB
testcase_19 AC 203 ms
100,608 KB
testcase_20 AC 205 ms
100,488 KB
testcase_21 AC 205 ms
100,736 KB
testcase_22 AC 187 ms
105,472 KB
testcase_23 AC 193 ms
109,056 KB
testcase_24 AC 36 ms
51,456 KB
testcase_25 AC 53 ms
63,488 KB
testcase_26 AC 51 ms
62,464 KB
testcase_27 AC 46 ms
60,288 KB
testcase_28 AC 75 ms
70,144 KB
testcase_29 AC 63 ms
65,920 KB
testcase_30 AC 54 ms
63,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline


def get_num_tree(length):
    ans = sum(int(tree / length) for tree in L)
    return ans


n = int(input())
L = tuple(map(int, input().split()))
k = int(input())

l = 0
r = max(L) + 1
for _ in range(60):
    mid = (l + r) / 2
    if get_num_tree(mid) >= k:
        l = mid
    else:
        r = mid

print(l)
0