結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー mmd6688mmd6688
提出日時 2023-03-07 08:44:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 240 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 198,144 KB
最終ジャッジ日時 2024-09-18 02:04:32
合計ジャッジ時間 7,175 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 241 ms
192,376 KB
testcase_01 AC 37 ms
58,112 KB
testcase_02 AC 119 ms
114,432 KB
testcase_03 AC 178 ms
163,072 KB
testcase_04 AC 224 ms
197,632 KB
testcase_05 AC 225 ms
198,144 KB
testcase_06 AC 225 ms
197,504 KB
testcase_07 AC 235 ms
192,336 KB
testcase_08 AC 237 ms
192,200 KB
testcase_09 AC 244 ms
191,820 KB
testcase_10 AC 212 ms
184,064 KB
testcase_11 AC 229 ms
192,896 KB
testcase_12 AC 203 ms
180,224 KB
testcase_13 AC 215 ms
165,148 KB
testcase_14 AC 225 ms
168,476 KB
testcase_15 AC 204 ms
143,076 KB
testcase_16 AC 230 ms
197,888 KB
testcase_17 AC 243 ms
197,504 KB
testcase_18 AC 233 ms
197,632 KB
testcase_19 AC 249 ms
192,200 KB
testcase_20 AC 248 ms
192,204 KB
testcase_21 AC 239 ms
192,596 KB
testcase_22 AC 212 ms
182,656 KB
testcase_23 AC 221 ms
192,656 KB
testcase_24 AC 34 ms
52,224 KB
testcase_25 AC 44 ms
63,104 KB
testcase_26 AC 44 ms
61,440 KB
testcase_27 AC 38 ms
59,264 KB
testcase_28 AC 75 ms
83,200 KB
testcase_29 AC 55 ms
71,808 KB
testcase_30 AC 47 ms
63,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

low = 0
high = max(L)

for _ in range(60):
    mid = (low + high) / 2
    if sum([int(i/mid) for i in L]) < K:
        high = mid
    else:
        low = mid

print(low)
0