結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー kyuridenamidakyuridenamida
提出日時 2016-03-11 14:27:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 5,000 ms
コード長 455 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 185,916 KB
最終ジャッジ日時 2024-11-08 11:48:40
合計ジャッジ時間 8,199 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
185,820 KB
testcase_01 AC 46 ms
58,624 KB
testcase_02 AC 133 ms
110,336 KB
testcase_03 AC 211 ms
151,892 KB
testcase_04 AC 262 ms
179,360 KB
testcase_05 AC 261 ms
179,608 KB
testcase_06 AC 264 ms
179,864 KB
testcase_07 AC 264 ms
185,656 KB
testcase_08 AC 264 ms
185,916 KB
testcase_09 AC 264 ms
185,912 KB
testcase_10 AC 244 ms
169,360 KB
testcase_11 AC 255 ms
174,984 KB
testcase_12 AC 237 ms
165,744 KB
testcase_13 AC 249 ms
171,756 KB
testcase_14 AC 255 ms
175,444 KB
testcase_15 AC 239 ms
165,288 KB
testcase_16 AC 260 ms
179,608 KB
testcase_17 AC 263 ms
179,872 KB
testcase_18 AC 260 ms
179,492 KB
testcase_19 AC 263 ms
185,912 KB
testcase_20 AC 263 ms
185,572 KB
testcase_21 AC 263 ms
185,660 KB
testcase_22 AC 247 ms
169,404 KB
testcase_23 AC 252 ms
174,888 KB
testcase_24 AC 40 ms
52,224 KB
testcase_25 AC 58 ms
64,128 KB
testcase_26 AC 59 ms
62,848 KB
testcase_27 AC 51 ms
60,416 KB
testcase_28 AC 88 ms
82,688 KB
testcase_29 AC 71 ms
71,808 KB
testcase_30 AC 58 ms
64,256 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