結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nanaenanae
提出日時 2017-04-07 14:20:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,254 ms / 5,000 ms
コード長 517 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-11-08 11:59:47
合計ジャッジ時間 31,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
102,144 KB
testcase_01 AC 46 ms
58,880 KB
testcase_02 AC 873 ms
73,856 KB
testcase_03 AC 1,625 ms
86,016 KB
testcase_04 AC 1,637 ms
91,136 KB
testcase_05 AC 1,624 ms
91,648 KB
testcase_06 AC 1,297 ms
91,648 KB
testcase_07 AC 2,246 ms
95,488 KB
testcase_08 AC 2,254 ms
95,744 KB
testcase_09 AC 1,705 ms
95,488 KB
testcase_10 AC 1,605 ms
88,448 KB
testcase_11 AC 1,569 ms
90,496 KB
testcase_12 AC 1,146 ms
87,680 KB
testcase_13 AC 2,073 ms
94,080 KB
testcase_14 AC 2,149 ms
95,616 KB
testcase_15 AC 1,489 ms
91,904 KB
testcase_16 AC 719 ms
91,136 KB
testcase_17 AC 630 ms
91,136 KB
testcase_18 AC 563 ms
90,496 KB
testcase_19 AC 648 ms
95,616 KB
testcase_20 AC 591 ms
95,488 KB
testcase_21 AC 473 ms
95,616 KB
testcase_22 AC 476 ms
86,656 KB
testcase_23 AC 482 ms
89,984 KB
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 105 ms
60,800 KB
testcase_26 AC 68 ms
60,544 KB
testcase_27 AC 61 ms
59,648 KB
testcase_28 AC 416 ms
66,048 KB
testcase_29 AC 250 ms
63,104 KB
testcase_30 AC 104 ms
60,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def solve():
    def check(mid):
        cnt = 0

        for i in range(N):
            cnt += int(L[i] // mid)

            if cnt >= K:
                return True

        return False
    
    N = int(input())
    L = [int(i) for i in input().split()]
    K = int(input())

    btm = 0
    top = sum(L) / K

    for i in range(100):
        mid = (top + btm) / 2

        if check(mid):
            btm = mid
        else:
            top = mid

    print(btm)

if __name__ == '__main__':
    solve()
0