結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
101,760 KB
testcase_01 AC 49 ms
59,136 KB
testcase_02 AC 573 ms
83,584 KB
testcase_03 AC 1,040 ms
91,264 KB
testcase_04 AC 1,078 ms
96,128 KB
testcase_05 AC 1,177 ms
95,872 KB
testcase_06 AC 881 ms
95,872 KB
testcase_07 AC 1,402 ms
97,536 KB
testcase_08 AC 1,421 ms
97,280 KB
testcase_09 AC 1,076 ms
97,536 KB
testcase_10 AC 940 ms
93,952 KB
testcase_11 AC 1,129 ms
95,744 KB
testcase_12 AC 676 ms
93,440 KB
testcase_13 AC 1,265 ms
95,872 KB
testcase_14 AC 1,336 ms
97,664 KB
testcase_15 AC 961 ms
95,232 KB
testcase_16 AC 322 ms
96,128 KB
testcase_17 AC 207 ms
95,872 KB
testcase_18 AC 127 ms
92,544 KB
testcase_19 AC 224 ms
97,408 KB
testcase_20 AC 129 ms
97,280 KB
testcase_21 AC 125 ms
97,280 KB
testcase_22 AC 120 ms
88,832 KB
testcase_23 AC 118 ms
91,776 KB
testcase_24 AC 41 ms
52,096 KB
testcase_25 AC 89 ms
65,920 KB
testcase_26 AC 66 ms
63,104 KB
testcase_27 AC 59 ms
60,928 KB
testcase_28 AC 290 ms
78,592 KB
testcase_29 AC 186 ms
76,672 KB
testcase_30 AC 87 ms
66,048 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 = max([l/self.K for l in self.L])  # > 10**-10
        self.r = min(max(self.L)+1, sum(self.L)/self.K+1)  # < 10**9

    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):  # (10**9 - 10**-10) * 0.5**60 < 10**-9
            m = (self.l + self.r) / 2
            if self.check(m):
                self.l = m
            else:
                self.r = m
        return self.l

print(Solve().solve())
0