結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー mmd6688mmd6688
提出日時 2023-03-07 08:43:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,294 ms / 5,000 ms
コード長 236 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 193,536 KB
最終ジャッジ日時 2024-09-18 02:04:23
合計ジャッジ時間 20,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 583 ms
192,164 KB
testcase_01 AC 38 ms
58,112 KB
testcase_02 AC 491 ms
116,224 KB
testcase_03 AC 959 ms
126,456 KB
testcase_04 AC 900 ms
141,248 KB
testcase_05 AC 951 ms
141,620 KB
testcase_06 AC 758 ms
151,060 KB
testcase_07 AC 1,254 ms
192,464 KB
testcase_08 AC 1,294 ms
192,332 KB
testcase_09 AC 1,011 ms
192,456 KB
testcase_10 AC 830 ms
135,168 KB
testcase_11 AC 833 ms
140,032 KB
testcase_12 AC 661 ms
181,888 KB
testcase_13 AC 1,143 ms
165,372 KB
testcase_14 AC 1,199 ms
168,508 KB
testcase_15 AC 902 ms
156,724 KB
testcase_16 AC 499 ms
166,424 KB
testcase_17 AC 431 ms
169,768 KB
testcase_18 AC 421 ms
152,960 KB
testcase_19 AC 464 ms
192,328 KB
testcase_20 AC 457 ms
192,920 KB
testcase_21 AC 453 ms
192,324 KB
testcase_22 AC 401 ms
183,936 KB
testcase_23 AC 430 ms
193,536 KB
testcase_24 AC 45 ms
52,352 KB
testcase_25 AC 76 ms
64,128 KB
testcase_26 AC 55 ms
62,592 KB
testcase_27 AC 48 ms
60,032 KB
testcase_28 AC 239 ms
84,864 KB
testcase_29 AC 142 ms
73,600 KB
testcase_30 AC 68 ms
64,896 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([i//mid for i in L]) < K:
        high = mid
    else:
        low = mid

print(low)
0