結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー szkhtsszkhts
提出日時 2024-08-04 08:21:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,294 ms / 5,000 ms
コード長 365 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,520 KB
最終ジャッジ日時 2024-08-04 08:22:25
合計ジャッジ時間 42,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,268 ms
32,804 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 818 ms
19,024 KB
testcase_03 AC 1,555 ms
26,696 KB
testcase_04 AC 2,294 ms
29,472 KB
testcase_05 AC 2,272 ms
29,340 KB
testcase_06 AC 1,947 ms
29,468 KB
testcase_07 AC 2,141 ms
33,392 KB
testcase_08 AC 2,142 ms
33,520 KB
testcase_09 AC 1,808 ms
33,392 KB
testcase_10 AC 2,056 ms
26,680 KB
testcase_11 AC 2,189 ms
28,528 KB
testcase_12 AC 1,662 ms
26,656 KB
testcase_13 AC 1,973 ms
31,144 KB
testcase_14 AC 2,054 ms
32,320 KB
testcase_15 AC 1,554 ms
30,124 KB
testcase_16 AC 1,483 ms
29,348 KB
testcase_17 AC 1,394 ms
29,460 KB
testcase_18 AC 1,248 ms
29,468 KB
testcase_19 AC 1,272 ms
33,520 KB
testcase_20 AC 1,138 ms
33,384 KB
testcase_21 AC 1,162 ms
33,388 KB
testcase_22 AC 1,059 ms
27,660 KB
testcase_23 AC 1,113 ms
28,548 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 75 ms
11,264 KB
testcase_26 AC 45 ms
10,880 KB
testcase_27 AC 42 ms
10,752 KB
testcase_28 AC 367 ms
14,204 KB
testcase_29 AC 209 ms
12,400 KB
testcase_30 AC 77 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def summery(L, d):
    n = 0
    for i in L:
        n += int(i / d)
    return n

low = 0
high = max(L) + 1
mid = (low + high) / 2.0
while abs(low - high) / mid > 10**(-9):
    mid = (low + high) / 2.0
    if summery(L, mid) >= K:
        low = mid
    else:
        high = mid
    
print(low)
0