結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー 双六双六
提出日時 2020-07-26 16:59:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,624 ms / 5,000 ms
コード長 643 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,680 KB
最終ジャッジ日時 2024-11-08 13:22:38
合計ジャッジ時間 23,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 690 ms
103,680 KB
testcase_01 AC 53 ms
60,288 KB
testcase_02 AC 606 ms
77,824 KB
testcase_03 AC 1,112 ms
91,648 KB
testcase_04 AC 1,079 ms
100,480 KB
testcase_05 AC 1,074 ms
100,608 KB
testcase_06 AC 840 ms
100,608 KB
testcase_07 AC 1,532 ms
103,296 KB
testcase_08 AC 1,624 ms
103,552 KB
testcase_09 AC 1,204 ms
103,040 KB
testcase_10 AC 1,007 ms
96,384 KB
testcase_11 AC 1,038 ms
100,096 KB
testcase_12 AC 750 ms
95,872 KB
testcase_13 AC 1,410 ms
99,072 KB
testcase_14 AC 1,463 ms
102,656 KB
testcase_15 AC 1,064 ms
98,048 KB
testcase_16 AC 510 ms
100,096 KB
testcase_17 AC 455 ms
99,584 KB
testcase_18 AC 434 ms
99,840 KB
testcase_19 AC 590 ms
102,528 KB
testcase_20 AC 438 ms
102,272 KB
testcase_21 AC 437 ms
102,784 KB
testcase_22 AC 392 ms
95,616 KB
testcase_23 AC 411 ms
99,072 KB
testcase_24 AC 48 ms
54,016 KB
testcase_25 AC 92 ms
62,976 KB
testcase_26 AC 71 ms
62,592 KB
testcase_27 AC 64 ms
61,312 KB
testcase_28 AC 305 ms
69,120 KB
testcase_29 AC 188 ms
66,048 KB
testcase_30 AC 96 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

def Binary_Search(L, N, K):
	#初期化
	left = 0
	right = 10 ** 9
	ans = 0
	
	#二分探索
	for i in range(70):
		mid = (left + right) / 2
		val = 0
		for j in L:
			val += int(j // mid)
		if val >= K:
			ans = max(ans, mid)
			left = mid
		else:
			right = mid

	return ans

#処理内容
def main():
	N = int(input())
	L = getlist()
	K = int(input())
	ans = Binary_Search(L, N, K)
	print(ans)
	




if __name__ == '__main__':
	main()
0