結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
99,976 KB
testcase_01 WA -
testcase_02 AC 102 ms
82,560 KB
testcase_03 AC 151 ms
99,584 KB
testcase_04 AC 185 ms
108,928 KB
testcase_05 AC 189 ms
108,672 KB
testcase_06 AC 189 ms
108,928 KB
testcase_07 AC 188 ms
100,368 KB
testcase_08 AC 189 ms
100,100 KB
testcase_09 AC 188 ms
100,876 KB
testcase_10 AC 173 ms
105,728 KB
testcase_11 AC 182 ms
109,056 KB
testcase_12 AC 168 ms
105,600 KB
testcase_13 AC 174 ms
100,608 KB
testcase_14 AC 181 ms
99,820 KB
testcase_15 AC 169 ms
105,088 KB
testcase_16 AC 188 ms
108,160 KB
testcase_17 AC 187 ms
108,928 KB
testcase_18 AC 188 ms
108,928 KB
testcase_19 AC 192 ms
100,760 KB
testcase_20 AC 187 ms
100,740 KB
testcase_21 AC 191 ms
100,744 KB
testcase_22 AC 174 ms
105,728 KB
testcase_23 AC 183 ms
108,800 KB
testcase_24 AC 39 ms
51,712 KB
testcase_25 WA -
testcase_26 AC 53 ms
62,464 KB
testcase_27 WA -
testcase_28 AC 75 ms
70,912 KB
testcase_29 AC 64 ms
65,792 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