結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー flippergoflippergo
提出日時 2020-12-21 14:44:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 872 ms / 5,000 ms
コード長 311 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-11-08 13:26:49
合計ジャッジ時間 15,302 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 464 ms
101,888 KB
testcase_01 AC 46 ms
58,368 KB
testcase_02 AC 365 ms
87,040 KB
testcase_03 AC 644 ms
97,920 KB
testcase_04 AC 642 ms
106,496 KB
testcase_05 AC 642 ms
106,240 KB
testcase_06 AC 523 ms
106,112 KB
testcase_07 AC 872 ms
101,888 KB
testcase_08 AC 871 ms
101,888 KB
testcase_09 AC 711 ms
101,760 KB
testcase_10 AC 591 ms
102,656 KB
testcase_11 AC 618 ms
105,984 KB
testcase_12 AC 466 ms
102,528 KB
testcase_13 AC 801 ms
104,704 KB
testcase_14 AC 833 ms
107,392 KB
testcase_15 AC 606 ms
104,064 KB
testcase_16 AC 328 ms
106,112 KB
testcase_17 AC 302 ms
106,112 KB
testcase_18 AC 336 ms
106,240 KB
testcase_19 AC 323 ms
101,760 KB
testcase_20 AC 369 ms
102,016 KB
testcase_21 AC 373 ms
101,888 KB
testcase_22 AC 328 ms
102,656 KB
testcase_23 AC 328 ms
105,856 KB
testcase_24 AC 43 ms
51,968 KB
testcase_25 AC 76 ms
64,512 KB
testcase_26 AC 61 ms
61,952 KB
testcase_27 AC 58 ms
60,672 KB
testcase_28 AC 207 ms
79,488 KB
testcase_29 AC 137 ms
74,880 KB
testcase_30 AC 78 ms
64,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = list(map(int,input().split()))
K = int(input())
eps = 1e-10
high = sum(L)/K+5
low = eps
while (high-low>eps) and (high-low)/high>eps:
    mid = (high+low)/2
    cnt = 0
    for i in range(N):
        cnt += L[i]//mid
    if cnt>=K:
        low = mid
    else:
        high = mid
print(high)
0