結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 821 ms
102,144 KB
testcase_01 AC 47 ms
57,856 KB
testcase_02 AC 847 ms
79,104 KB
testcase_03 AC 1,590 ms
95,360 KB
testcase_04 AC 1,576 ms
103,808 KB
testcase_05 AC 1,539 ms
103,424 KB
testcase_06 AC 1,172 ms
103,680 KB
testcase_07 AC 2,190 ms
101,760 KB
testcase_08 AC 2,348 ms
101,760 KB
testcase_09 AC 1,709 ms
101,888 KB
testcase_10 AC 1,415 ms
99,200 KB
testcase_11 AC 1,485 ms
102,912 KB
testcase_12 AC 1,033 ms
98,304 KB
testcase_13 AC 2,030 ms
104,448 KB
testcase_14 AC 2,083 ms
107,392 KB
testcase_15 AC 1,498 ms
104,064 KB
testcase_16 AC 667 ms
103,296 KB
testcase_17 AC 580 ms
102,784 KB
testcase_18 AC 554 ms
103,040 KB
testcase_19 AC 745 ms
101,760 KB
testcase_20 AC 574 ms
102,144 KB
testcase_21 AC 577 ms
101,888 KB
testcase_22 AC 505 ms
98,304 KB
testcase_23 AC 550 ms
102,272 KB
testcase_24 AC 44 ms
51,712 KB
testcase_25 AC 101 ms
60,800 KB
testcase_26 AC 71 ms
60,800 KB
testcase_27 AC 63 ms
59,264 KB
testcase_28 AC 411 ms
68,096 KB
testcase_29 AC 242 ms
64,000 KB
testcase_30 AC 106 ms
61,312 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