結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nanaenanae
提出日時 2017-04-07 14:43:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,163 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,272 KB
最終ジャッジ日時 2024-11-08 12:00:05
合計ジャッジ時間 18,234 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
102,272 KB
testcase_01 AC 46 ms
58,624 KB
testcase_02 AC 464 ms
74,112 KB
testcase_03 AC 856 ms
85,888 KB
testcase_04 AC 865 ms
91,648 KB
testcase_05 AC 854 ms
91,264 KB
testcase_06 AC 683 ms
91,648 KB
testcase_07 AC 1,163 ms
95,616 KB
testcase_08 AC 1,160 ms
95,488 KB
testcase_09 AC 884 ms
96,000 KB
testcase_10 AC 839 ms
88,704 KB
testcase_11 AC 814 ms
90,368 KB
testcase_12 AC 609 ms
88,064 KB
testcase_13 AC 1,063 ms
94,336 KB
testcase_14 AC 1,102 ms
96,000 KB
testcase_15 AC 779 ms
91,776 KB
testcase_16 AC 411 ms
91,520 KB
testcase_17 AC 361 ms
90,752 KB
testcase_18 AC 308 ms
91,008 KB
testcase_19 AC 367 ms
96,000 KB
testcase_20 AC 332 ms
96,128 KB
testcase_21 AC 280 ms
95,744 KB
testcase_22 AC 281 ms
87,040 KB
testcase_23 AC 293 ms
89,984 KB
testcase_24 AC 41 ms
51,968 KB
testcase_25 AC 76 ms
61,056 KB
testcase_26 AC 61 ms
60,800 KB
testcase_27 AC 54 ms
59,904 KB
testcase_28 AC 238 ms
66,176 KB
testcase_29 AC 153 ms
63,104 KB
testcase_30 AC 78 ms
60,672 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(50):
        mid = (top + btm) / 2

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

    print(btm)

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