結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー しらっ亭しらっ亭
提出日時 2015-08-03 03:31:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 4,530 ms / 5,000 ms
コード長 357 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,652 KB
最終ジャッジ日時 2024-11-08 11:40:40
合計ジャッジ時間 100,106 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,059 ms
32,556 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 1,731 ms
18,768 KB
testcase_03 AC 3,281 ms
26,440 KB
testcase_04 AC 4,491 ms
29,096 KB
testcase_05 AC 4,525 ms
29,352 KB
testcase_06 AC 4,340 ms
29,088 KB
testcase_07 AC 4,515 ms
32,652 KB
testcase_08 AC 4,530 ms
32,396 KB
testcase_09 AC 4,476 ms
32,524 KB
testcase_10 AC 4,068 ms
27,416 KB
testcase_11 AC 4,322 ms
28,532 KB
testcase_12 AC 3,826 ms
26,836 KB
testcase_13 AC 4,119 ms
31,020 KB
testcase_14 AC 4,316 ms
31,944 KB
testcase_15 AC 3,815 ms
29,260 KB
testcase_16 AC 4,214 ms
29,224 KB
testcase_17 AC 4,206 ms
29,212 KB
testcase_18 AC 4,179 ms
29,216 KB
testcase_19 AC 4,044 ms
32,400 KB
testcase_20 AC 4,040 ms
32,520 KB
testcase_21 AC 4,036 ms
32,648 KB
testcase_22 AC 3,800 ms
27,444 KB
testcase_23 AC 3,986 ms
28,416 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 117 ms
11,008 KB
testcase_26 AC 62 ms
10,752 KB
testcase_27 AC 52 ms
10,624 KB
testcase_28 AC 743 ms
14,216 KB
testcase_29 AC 388 ms
12,272 KB
testcase_30 AC 121 ms
11,136 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