結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 824 ms
102,416 KB
testcase_01 AC 41 ms
58,240 KB
testcase_02 AC 824 ms
78,976 KB
testcase_03 AC 1,536 ms
95,104 KB
testcase_04 AC 1,546 ms
103,552 KB
testcase_05 AC 1,526 ms
103,908 KB
testcase_06 AC 1,161 ms
103,936 KB
testcase_07 AC 2,124 ms
101,808 KB
testcase_08 AC 2,314 ms
102,220 KB
testcase_09 AC 1,625 ms
102,144 KB
testcase_10 AC 1,396 ms
99,072 KB
testcase_11 AC 1,479 ms
102,912 KB
testcase_12 AC 1,023 ms
98,688 KB
testcase_13 AC 1,939 ms
104,584 KB
testcase_14 AC 2,003 ms
107,844 KB
testcase_15 AC 1,421 ms
104,320 KB
testcase_16 AC 667 ms
103,680 KB
testcase_17 AC 588 ms
103,248 KB
testcase_18 AC 562 ms
103,040 KB
testcase_19 AC 700 ms
102,144 KB
testcase_20 AC 581 ms
101,952 KB
testcase_21 AC 581 ms
101,888 KB
testcase_22 AC 508 ms
98,816 KB
testcase_23 AC 534 ms
102,400 KB
testcase_24 AC 37 ms
52,224 KB
testcase_25 AC 90 ms
60,928 KB
testcase_26 AC 61 ms
60,544 KB
testcase_27 AC 56 ms
59,136 KB
testcase_28 AC 399 ms
68,608 KB
testcase_29 AC 229 ms
64,384 KB
testcase_30 AC 95 ms
61,184 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 = 10**9
    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