結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー dice4084dice4084
提出日時 2023-01-03 15:56:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 5,000 ms
コード長 350 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 109,184 KB
最終ジャッジ日時 2024-05-05 07:14:41
合計ジャッジ時間 6,556 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
99,992 KB
testcase_01 AC 40 ms
57,728 KB
testcase_02 AC 104 ms
82,432 KB
testcase_03 AC 159 ms
99,328 KB
testcase_04 AC 200 ms
108,416 KB
testcase_05 AC 201 ms
108,672 KB
testcase_06 AC 201 ms
108,672 KB
testcase_07 AC 204 ms
100,980 KB
testcase_08 AC 204 ms
100,816 KB
testcase_09 AC 204 ms
100,756 KB
testcase_10 AC 188 ms
105,216 KB
testcase_11 AC 197 ms
109,184 KB
testcase_12 AC 187 ms
104,832 KB
testcase_13 AC 191 ms
100,736 KB
testcase_14 AC 199 ms
100,576 KB
testcase_15 AC 184 ms
105,088 KB
testcase_16 AC 205 ms
108,672 KB
testcase_17 AC 206 ms
108,032 KB
testcase_18 AC 206 ms
108,672 KB
testcase_19 AC 206 ms
100,680 KB
testcase_20 AC 207 ms
100,352 KB
testcase_21 AC 205 ms
100,672 KB
testcase_22 AC 186 ms
105,728 KB
testcase_23 AC 197 ms
108,928 KB
testcase_24 AC 36 ms
51,840 KB
testcase_25 AC 51 ms
62,464 KB
testcase_26 AC 49 ms
62,976 KB
testcase_27 AC 51 ms
60,416 KB
testcase_28 AC 72 ms
71,168 KB
testcase_29 AC 58 ms
66,432 KB
testcase_30 AC 52 ms
63,232 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