結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー rlangevinrlangevin
提出日時 2023-08-24 12:21:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 472 ms / 5,000 ms
コード長 342 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 108,096 KB
最終ジャッジ日時 2024-06-02 03:07:29
合計ジャッジ時間 13,022 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 463 ms
102,348 KB
testcase_01 AC 38 ms
58,580 KB
testcase_02 AC 196 ms
80,044 KB
testcase_03 AC 346 ms
96,164 KB
testcase_04 AC 462 ms
104,744 KB
testcase_05 AC 470 ms
103,972 KB
testcase_06 AC 462 ms
104,936 KB
testcase_07 AC 472 ms
102,400 KB
testcase_08 AC 472 ms
102,280 KB
testcase_09 AC 460 ms
102,176 KB
testcase_10 AC 406 ms
100,700 KB
testcase_11 AC 432 ms
104,580 KB
testcase_12 AC 394 ms
99,192 KB
testcase_13 AC 420 ms
104,948 KB
testcase_14 AC 431 ms
108,096 KB
testcase_15 AC 390 ms
103,252 KB
testcase_16 AC 451 ms
104,052 KB
testcase_17 AC 458 ms
104,060 KB
testcase_18 AC 460 ms
104,608 KB
testcase_19 AC 454 ms
102,108 KB
testcase_20 AC 462 ms
102,516 KB
testcase_21 AC 462 ms
102,192 KB
testcase_22 AC 403 ms
99,748 KB
testcase_23 AC 427 ms
104,560 KB
testcase_24 AC 33 ms
53,060 KB
testcase_25 AC 46 ms
61,544 KB
testcase_26 AC 42 ms
62,160 KB
testcase_27 AC 39 ms
59,732 KB
testcase_28 AC 104 ms
68,532 KB
testcase_29 AC 73 ms
64,568 KB
testcase_30 AC 50 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = list(map(int, input().split()))
K = int(input())

from math import floor
def check(m):
    val = 0
    for i in range(N):
        val += floor(L[i]/m)
    return val >= K    

yes = 10**-9
no = 10 ** 18
for i in range(200):
    mid = (yes + no)/2
    if check(mid):
        yes = mid
    else:
        no = mid
print(yes)
0