結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー mmd6688mmd6688
提出日時 2023-03-07 08:40:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,627 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-09-18 02:03:37
合計ジャッジ時間 22,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 673 ms
102,236 KB
testcase_01 AC 43 ms
57,216 KB
testcase_02 AC 590 ms
78,976 KB
testcase_03 AC 1,096 ms
94,464 KB
testcase_04 AC 1,079 ms
103,424 KB
testcase_05 AC 1,060 ms
103,552 KB
testcase_06 AC 830 ms
103,936 KB
testcase_07 AC 1,520 ms
102,124 KB
testcase_08 AC 1,627 ms
102,016 KB
testcase_09 AC 1,199 ms
101,632 KB
testcase_10 AC 971 ms
98,688 KB
testcase_11 AC 1,018 ms
103,040 KB
testcase_12 AC 733 ms
98,816 KB
testcase_13 AC 1,391 ms
104,064 KB
testcase_14 AC 1,450 ms
107,520 KB
testcase_15 AC 1,042 ms
104,108 KB
testcase_16 AC 486 ms
103,168 KB
testcase_17 AC 429 ms
102,528 KB
testcase_18 AC 407 ms
102,272 KB
testcase_19 AC 547 ms
102,016 KB
testcase_20 AC 432 ms
101,632 KB
testcase_21 AC 429 ms
101,504 KB
testcase_22 AC 374 ms
97,536 KB
testcase_23 AC 390 ms
102,400 KB
testcase_24 AC 38 ms
51,712 KB
testcase_25 AC 78 ms
60,544 KB
testcase_26 AC 62 ms
60,416 KB
testcase_27 AC 53 ms
59,264 KB
testcase_28 AC 292 ms
67,712 KB
testcase_29 AC 180 ms
64,256 KB
testcase_30 AC 85 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def calc_bou(N, L, K):
    low = 0
    high = max(L)

    for _ in range(70):
        mid = (low + high) / 2
        cnt = 0
        for i in L:
            cnt += i // mid
        if cnt < K:
            high = mid
        else:
            low = mid
    
    return low

print(calc_bou(N, L, K))
0