結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー 1101 higoo1101 higoo
提出日時 2021-03-06 12:51:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 872 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-11-08 13:33:46
合計ジャッジ時間 14,820 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 448 ms
102,272 KB
testcase_01 AC 44 ms
58,240 KB
testcase_02 AC 358 ms
87,040 KB
testcase_03 AC 639 ms
98,176 KB
testcase_04 AC 629 ms
106,368 KB
testcase_05 AC 636 ms
106,368 KB
testcase_06 AC 516 ms
106,368 KB
testcase_07 AC 867 ms
102,016 KB
testcase_08 AC 872 ms
102,016 KB
testcase_09 AC 698 ms
102,272 KB
testcase_10 AC 578 ms
102,656 KB
testcase_11 AC 602 ms
106,240 KB
testcase_12 AC 448 ms
102,656 KB
testcase_13 AC 793 ms
104,704 KB
testcase_14 AC 814 ms
107,648 KB
testcase_15 AC 589 ms
104,192 KB
testcase_16 AC 317 ms
106,368 KB
testcase_17 AC 294 ms
106,624 KB
testcase_18 AC 322 ms
106,240 KB
testcase_19 AC 309 ms
102,400 KB
testcase_20 AC 359 ms
102,016 KB
testcase_21 AC 353 ms
102,144 KB
testcase_22 AC 316 ms
102,912 KB
testcase_23 AC 316 ms
105,984 KB
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 72 ms
64,256 KB
testcase_26 AC 57 ms
62,208 KB
testcase_27 AC 53 ms
61,056 KB
testcase_28 AC 198 ms
79,616 KB
testcase_29 AC 133 ms
74,368 KB
testcase_30 AC 73 ms
64,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = list(map(int,input().split()))
K = int(input())
l = 0
r = sum(L)/K
while r-l >10**(-10) and (r-l)/r > 10**(-10):
    mid = (l+r)/2
    ans = 0
    for num in L:
        ans += num//mid
    if ans >= K:
        l = mid
    else:
        r = mid
print(l)
0