結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
99,864 KB
testcase_01 WA -
testcase_02 AC 101 ms
82,560 KB
testcase_03 AC 155 ms
99,840 KB
testcase_04 AC 186 ms
108,672 KB
testcase_05 AC 186 ms
108,032 KB
testcase_06 AC 191 ms
108,160 KB
testcase_07 AC 191 ms
100,884 KB
testcase_08 AC 190 ms
99,984 KB
testcase_09 AC 203 ms
100,488 KB
testcase_10 AC 176 ms
105,728 KB
testcase_11 AC 183 ms
109,056 KB
testcase_12 AC 169 ms
105,088 KB
testcase_13 AC 183 ms
100,736 KB
testcase_14 AC 195 ms
100,464 KB
testcase_15 AC 173 ms
104,704 KB
testcase_16 AC 195 ms
109,056 KB
testcase_17 AC 190 ms
108,672 KB
testcase_18 AC 198 ms
108,032 KB
testcase_19 AC 197 ms
100,492 KB
testcase_20 AC 194 ms
99,976 KB
testcase_21 AC 190 ms
99,984 KB
testcase_22 AC 177 ms
105,088 KB
testcase_23 AC 184 ms
109,184 KB
testcase_24 AC 38 ms
51,328 KB
testcase_25 WA -
testcase_26 AC 53 ms
62,592 KB
testcase_27 WA -
testcase_28 AC 72 ms
70,144 KB
testcase_29 AC 61 ms
65,664 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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
# while r - l >= 10 ** (-9):
#     mid = (l + r) / 2
#     if get_num_tree(mid) >= k:
#         l = mid
#     else:
#         r = mid
for _ in range(50):
    mid = (l + r) / 2
    if get_num_tree(mid) >= k:
        l = mid
    else:
        r = mid

print(l)
0