結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー YKiyofujiYKiyofuji
提出日時 2019-11-26 23:56:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,339 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 1,695 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-11-08 13:06:09
合計ジャッジ時間 31,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 811 ms
102,016 KB
testcase_01 AC 46 ms
58,368 KB
testcase_02 AC 838 ms
78,976 KB
testcase_03 AC 1,577 ms
95,104 KB
testcase_04 AC 1,539 ms
103,936 KB
testcase_05 AC 1,535 ms
104,064 KB
testcase_06 AC 1,168 ms
103,680 KB
testcase_07 AC 2,186 ms
102,016 KB
testcase_08 AC 2,339 ms
102,016 KB
testcase_09 AC 1,694 ms
102,016 KB
testcase_10 AC 1,404 ms
99,456 KB
testcase_11 AC 1,469 ms
103,168 KB
testcase_12 AC 1,025 ms
98,560 KB
testcase_13 AC 1,992 ms
104,448 KB
testcase_14 AC 2,072 ms
107,392 KB
testcase_15 AC 1,477 ms
104,192 KB
testcase_16 AC 662 ms
103,552 KB
testcase_17 AC 582 ms
103,680 KB
testcase_18 AC 553 ms
103,040 KB
testcase_19 AC 742 ms
102,016 KB
testcase_20 AC 570 ms
101,888 KB
testcase_21 AC 573 ms
102,016 KB
testcase_22 AC 502 ms
98,688 KB
testcase_23 AC 529 ms
102,272 KB
testcase_24 AC 41 ms
51,968 KB
testcase_25 AC 99 ms
61,056 KB
testcase_26 AC 69 ms
60,800 KB
testcase_27 AC 60 ms
59,136 KB
testcase_28 AC 407 ms
68,352 KB
testcase_29 AC 241 ms
64,256 KB
testcase_30 AC 104 ms
61,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N_ = int(input())
    L_ = list(map(int, input().split()))
    K_ = int(input())
    return N_, L_, K_

def binarySearch(N, L, K):
    left = 0
    right = max(L)
    for x in range(100):
        piv = 0
        mid = (right + left) / 2
        for l in L:
            piv += l // mid
        if piv >= K:
            left = mid
        else:
            right = mid
    return (right + left) / 2

N, L, K = read_data()
print(binarySearch(N, L, K))
0