結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー noriocnorioc
提出日時 2024-08-26 00:39:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 384 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 107,272 KB
最終ジャッジ日時 2024-08-26 00:39:42
合計ジャッジ時間 7,414 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
102,088 KB
testcase_01 AC 44 ms
58,764 KB
testcase_02 AC 93 ms
80,408 KB
testcase_03 AC 138 ms
95,608 KB
testcase_04 AC 170 ms
103,716 KB
testcase_05 AC 169 ms
104,836 KB
testcase_06 AC 169 ms
104,684 KB
testcase_07 AC 186 ms
102,268 KB
testcase_08 AC 179 ms
102,388 KB
testcase_09 AC 180 ms
101,948 KB
testcase_10 AC 157 ms
99,628 KB
testcase_11 AC 165 ms
103,572 KB
testcase_12 AC 153 ms
98,820 KB
testcase_13 AC 163 ms
104,360 KB
testcase_14 AC 170 ms
107,272 KB
testcase_15 AC 154 ms
103,828 KB
testcase_16 AC 167 ms
103,996 KB
testcase_17 AC 170 ms
103,912 KB
testcase_18 AC 177 ms
104,552 KB
testcase_19 AC 179 ms
101,912 KB
testcase_20 AC 178 ms
101,912 KB
testcase_21 AC 181 ms
101,936 KB
testcase_22 AC 156 ms
99,944 KB
testcase_23 AC 166 ms
103,408 KB
testcase_24 WA -
testcase_25 AC 46 ms
62,232 KB
testcase_26 AC 45 ms
60,688 KB
testcase_27 AC 43 ms
59,808 KB
testcase_28 AC 65 ms
70,088 KB
testcase_29 AC 53 ms
65,376 KB
testcase_30 AC 46 ms
61,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


# 長さ m の棒を K 本作れるか
def can(m: int) -> bool:
    cnt = 0
    for l in L:
        cnt += int(l / m)

    return cnt >= K


lo = 0
hi = max(L)
ans = lo
for _ in range(60):
    m = (lo + hi) / 2
    if can(m):
        ans = max(ans, m)
        lo = m + 1
    else:
        hi = m - 1

print(ans)
0