結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー KudeKude
提出日時 2021-01-25 01:18:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 230 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-06-11 19:32:09
合計ジャッジ時間 33,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,502 ms
102,144 KB
testcase_01 AC 60 ms
61,824 KB
testcase_02 AC 2,696 ms
86,784 KB
testcase_03 AC 4,750 ms
97,536 KB
testcase_04 AC 4,726 ms
105,728 KB
testcase_05 AC 4,712 ms
105,728 KB
testcase_06 AC 3,821 ms
105,728 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
L = list(map(int, input().split()))
k = int(input())
r = sum(L) + 1
l = 0
for _ in range(300):
    c = (r + l) / 2
    cnt = sum(li // c for li in L)
    if cnt >= k:
        l = c
    else:
        r = c
print(l)
0