結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー しらっ亭しらっ亭
提出日時 2016-02-23 17:06:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 5,000 ms
コード長 380 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-11-08 11:44:30
合計ジャッジ時間 9,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
102,016 KB
testcase_01 AC 47 ms
58,496 KB
testcase_02 AC 158 ms
86,784 KB
testcase_03 AC 240 ms
97,792 KB
testcase_04 AC 308 ms
106,240 KB
testcase_05 AC 308 ms
106,368 KB
testcase_06 AC 314 ms
106,112 KB
testcase_07 AC 317 ms
102,016 KB
testcase_08 AC 319 ms
102,144 KB
testcase_09 AC 317 ms
101,888 KB
testcase_10 AC 285 ms
102,528 KB
testcase_11 AC 298 ms
105,472 KB
testcase_12 AC 277 ms
102,400 KB
testcase_13 AC 292 ms
104,064 KB
testcase_14 AC 302 ms
107,520 KB
testcase_15 AC 274 ms
104,064 KB
testcase_16 AC 311 ms
105,856 KB
testcase_17 AC 311 ms
105,984 KB
testcase_18 AC 308 ms
106,368 KB
testcase_19 AC 315 ms
101,760 KB
testcase_20 AC 315 ms
102,144 KB
testcase_21 AC 318 ms
101,760 KB
testcase_22 AC 284 ms
102,400 KB
testcase_23 AC 298 ms
105,600 KB
testcase_24 AC 43 ms
51,968 KB
testcase_25 AC 61 ms
66,432 KB
testcase_26 AC 53 ms
62,720 KB
testcase_27 AC 52 ms
60,672 KB
testcase_28 AC 104 ms
78,848 KB
testcase_29 AC 81 ms
76,416 KB
testcase_30 AC 60 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    l = L[0] / K
    r = max(L) + 1

    for i in range(100):
        m = (l + r) / 2
        n = sum(int(l / m) for l in L)
        if n >= K:
            l = m
        else:
            r = m

    print((l + r) / 2)


def main():
    solve()


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