結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー roknaoroknao
提出日時 2019-11-09 19:11:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,554 ms / 5,000 ms
コード長 665 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 259,964 KB
最終ジャッジ日時 2024-11-08 13:03:57
合計ジャッジ時間 35,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 964 ms
258,944 KB
testcase_01 AC 60 ms
61,952 KB
testcase_02 AC 936 ms
140,416 KB
testcase_03 AC 1,715 ms
191,720 KB
testcase_04 AC 1,764 ms
236,964 KB
testcase_05 AC 1,752 ms
236,728 KB
testcase_06 AC 1,384 ms
236,960 KB
testcase_07 AC 2,365 ms
259,828 KB
testcase_08 AC 2,554 ms
259,576 KB
testcase_09 AC 1,874 ms
259,204 KB
testcase_10 AC 1,601 ms
219,936 KB
testcase_11 AC 1,668 ms
228,520 KB
testcase_12 AC 1,208 ms
184,160 KB
testcase_13 AC 2,159 ms
240,208 KB
testcase_14 AC 2,238 ms
249,764 KB
testcase_15 AC 1,636 ms
229,336 KB
testcase_16 AC 836 ms
236,460 KB
testcase_17 AC 754 ms
236,448 KB
testcase_18 AC 719 ms
236,968 KB
testcase_19 AC 943 ms
259,324 KB
testcase_20 AC 744 ms
259,316 KB
testcase_21 AC 735 ms
259,964 KB
testcase_22 AC 648 ms
220,204 KB
testcase_23 AC 689 ms
228,776 KB
testcase_24 AC 51 ms
55,168 KB
testcase_25 AC 114 ms
67,584 KB
testcase_26 AC 82 ms
65,152 KB
testcase_27 AC 74 ms
63,488 KB
testcase_28 AC 445 ms
96,768 KB
testcase_29 AC 268 ms
76,544 KB
testcase_30 AC 121 ms
68,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
from math import gcd
import math
import bisect
import itertools
import sys
sys.setrecursionlimit(10**7)
input = sys.stdin.readline
INF = float("inf")


def main():
    def isOK(m):
        k = sum([l//m for l in L])
        return k >= K


    def binary_search(ok, ng):
        for _ in range(100):
            mid = (ok + ng) / 2
            if isOK(mid):
                ok = mid
            else:
                ng = mid
        return ok    


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

    ok = 0
    ng = 10**9 + 1

    print(binary_search(ok, ng))


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