結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー kobikikobiki
提出日時 2016-03-12 21:32:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,418 ms / 5,000 ms
コード長 673 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-11-08 11:49:18
合計ジャッジ時間 19,403 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
101,760 KB
testcase_01 AC 51 ms
59,008 KB
testcase_02 AC 564 ms
83,968 KB
testcase_03 AC 1,035 ms
91,648 KB
testcase_04 AC 1,070 ms
96,128 KB
testcase_05 AC 1,157 ms
96,256 KB
testcase_06 AC 857 ms
96,384 KB
testcase_07 AC 1,418 ms
97,280 KB
testcase_08 AC 1,415 ms
97,408 KB
testcase_09 AC 1,091 ms
97,664 KB
testcase_10 AC 941 ms
93,696 KB
testcase_11 AC 1,129 ms
95,744 KB
testcase_12 AC 691 ms
93,824 KB
testcase_13 AC 1,311 ms
96,000 KB
testcase_14 AC 1,370 ms
97,536 KB
testcase_15 AC 978 ms
95,488 KB
testcase_16 AC 343 ms
96,256 KB
testcase_17 AC 211 ms
96,000 KB
testcase_18 AC 132 ms
92,928 KB
testcase_19 AC 229 ms
97,280 KB
testcase_20 AC 130 ms
97,536 KB
testcase_21 AC 124 ms
97,920 KB
testcase_22 AC 120 ms
88,704 KB
testcase_23 AC 116 ms
92,416 KB
testcase_24 AC 40 ms
52,224 KB
testcase_25 AC 87 ms
66,432 KB
testcase_26 AC 66 ms
63,744 KB
testcase_27 AC 59 ms
61,056 KB
testcase_28 AC 291 ms
78,848 KB
testcase_29 AC 188 ms
76,416 KB
testcase_30 AC 89 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Solve:
    def __init__(self):
        self.N = int(input())
        self.L = [int(i) for i in input().split()]
        self.K = int(input())

        self.l, self.r = max([l/self.K for l in self.L]), min(max(self.L)+1, sum(self.L)/self.K+1)

    def check(self, l):
        k = 0
        for s in (s for s in self.L if s >= l):
            k += s // l
            if k >= self.K:
                return True
        return False

    def solve(self):
        for i in range(60):
            m = (self.l + self.r) / 2
            if self.check(m):
                self.l = m
            else:
                self.r = m
        return self.l

print(Solve().solve())
0