結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー kyuridenamidakyuridenamida
提出日時 2016-03-11 14:27:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,427 ms / 5,000 ms
コード長 455 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 40,684 KB
最終ジャッジ日時 2024-11-08 11:50:44
合計ジャッジ時間 75,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,916 ms
34,100 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 1,315 ms
21,716 KB
testcase_03 AC 2,470 ms
31,928 KB
testcase_04 AC 3,309 ms
32,448 KB
testcase_05 AC 3,322 ms
32,432 KB
testcase_06 AC 3,167 ms
31,144 KB
testcase_07 AC 3,416 ms
40,684 KB
testcase_08 AC 3,427 ms
40,564 KB
testcase_09 AC 3,421 ms
39,136 KB
testcase_10 AC 3,036 ms
30,412 KB
testcase_11 AC 3,095 ms
31,480 KB
testcase_12 AC 2,670 ms
28,372 KB
testcase_13 AC 3,118 ms
38,268 KB
testcase_14 AC 3,321 ms
39,228 KB
testcase_15 AC 2,902 ms
35,172 KB
testcase_16 AC 3,049 ms
29,616 KB
testcase_17 AC 3,010 ms
29,596 KB
testcase_18 AC 2,959 ms
29,608 KB
testcase_19 AC 3,036 ms
34,392 KB
testcase_20 AC 2,888 ms
34,260 KB
testcase_21 AC 2,889 ms
34,388 KB
testcase_22 AC 2,671 ms
27,776 KB
testcase_23 AC 2,810 ms
28,800 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 93 ms
11,264 KB
testcase_26 AC 54 ms
10,880 KB
testcase_27 AC 45 ms
10,880 KB
testcase_28 AC 540 ms
15,360 KB
testcase_29 AC 282 ms
13,040 KB
testcase_30 AC 97 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
'''
	入出力ライブラリ
'''
_allinput = []
for inp in sys.stdin:
	_allinput += inp.strip().split(" ")
def _input():
	for put in _allinput:
		yield put
_obj = _input();
def __input():
	return _obj.__next__()
def nextInt():
	return int(__input())




n = nextInt()
lst = [nextInt() for i in range(0,n)]
K = nextInt()

l,r = 0, 1000000000
for _ in range(60):
	m = (l+r)/2
	if sum([int(i/m) for i in lst]) < K:
		r = m
	else:
		l = m
print(l)
0