結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー rlangevinrlangevin
提出日時 2023-08-24 12:21:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 517 ms / 5,000 ms
コード長 342 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,864 KB
実行使用メモリ 108,048 KB
最終ジャッジ日時 2024-12-22 19:54:09
合計ジャッジ時間 14,931 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 507 ms
102,216 KB
testcase_01 AC 43 ms
58,752 KB
testcase_02 AC 218 ms
79,232 KB
testcase_03 AC 376 ms
95,488 KB
testcase_04 AC 504 ms
103,908 KB
testcase_05 AC 482 ms
104,192 KB
testcase_06 AC 486 ms
103,808 KB
testcase_07 AC 495 ms
102,016 KB
testcase_08 AC 499 ms
102,396 KB
testcase_09 AC 514 ms
102,144 KB
testcase_10 AC 451 ms
99,200 KB
testcase_11 AC 474 ms
103,296 KB
testcase_12 AC 433 ms
98,560 KB
testcase_13 AC 472 ms
104,704 KB
testcase_14 AC 488 ms
108,048 KB
testcase_15 AC 438 ms
103,040 KB
testcase_16 AC 504 ms
103,936 KB
testcase_17 AC 503 ms
103,936 KB
testcase_18 AC 503 ms
104,192 KB
testcase_19 AC 516 ms
102,144 KB
testcase_20 AC 516 ms
102,144 KB
testcase_21 AC 517 ms
102,272 KB
testcase_22 AC 460 ms
99,072 KB
testcase_23 AC 482 ms
102,912 KB
testcase_24 AC 40 ms
52,608 KB
testcase_25 AC 54 ms
61,440 KB
testcase_26 AC 48 ms
60,416 KB
testcase_27 AC 45 ms
59,264 KB
testcase_28 AC 119 ms
68,352 KB
testcase_29 AC 82 ms
64,256 KB
testcase_30 AC 54 ms
61,184 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