結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー しらっ亭しらっ亭
提出日時 2015-08-03 03:37:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 314 ms / 5,000 ms
コード長 357 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-11-08 11:36:25
合計ジャッジ時間 9,386 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
102,016 KB
testcase_01 AC 47 ms
58,880 KB
testcase_02 AC 152 ms
86,784 KB
testcase_03 AC 235 ms
97,664 KB
testcase_04 AC 301 ms
105,856 KB
testcase_05 AC 302 ms
105,856 KB
testcase_06 AC 303 ms
105,984 KB
testcase_07 AC 305 ms
102,016 KB
testcase_08 AC 308 ms
102,016 KB
testcase_09 AC 305 ms
102,144 KB
testcase_10 AC 275 ms
102,272 KB
testcase_11 AC 292 ms
105,984 KB
testcase_12 AC 267 ms
102,016 KB
testcase_13 AC 279 ms
104,192 KB
testcase_14 AC 292 ms
107,520 KB
testcase_15 AC 269 ms
104,064 KB
testcase_16 AC 306 ms
106,112 KB
testcase_17 AC 303 ms
105,856 KB
testcase_18 AC 303 ms
105,856 KB
testcase_19 AC 314 ms
102,272 KB
testcase_20 AC 310 ms
102,144 KB
testcase_21 AC 307 ms
102,272 KB
testcase_22 AC 277 ms
102,400 KB
testcase_23 AC 292 ms
105,600 KB
testcase_24 AC 40 ms
51,840 KB
testcase_25 AC 58 ms
67,072 KB
testcase_26 AC 52 ms
62,464 KB
testcase_27 AC 49 ms
60,800 KB
testcase_28 AC 99 ms
78,976 KB
testcase_29 AC 80 ms
76,032 KB
testcase_30 AC 59 ms
67,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    a = 0
    b = max(L)

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

    print(a)


def main():
    solve()


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