結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー ytftytft
提出日時 2022-11-07 10:09:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 907 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-07-20 18:34:09
合計ジャッジ時間 6,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
102,144 KB
testcase_01 AC 38 ms
57,984 KB
testcase_02 AC 94 ms
79,232 KB
testcase_03 AC 141 ms
94,592 KB
testcase_04 AC 175 ms
103,552 KB
testcase_05 AC 175 ms
103,680 KB
testcase_06 AC 174 ms
103,680 KB
testcase_07 AC 186 ms
102,144 KB
testcase_08 AC 188 ms
101,888 KB
testcase_09 AC 186 ms
101,760 KB
testcase_10 AC 170 ms
98,944 KB
testcase_11 AC 174 ms
102,784 KB
testcase_12 AC 158 ms
98,048 KB
testcase_13 AC 178 ms
104,704 KB
testcase_14 AC 178 ms
107,136 KB
testcase_15 AC 163 ms
104,448 KB
testcase_16 AC 178 ms
103,680 KB
testcase_17 AC 179 ms
103,168 KB
testcase_18 AC 176 ms
103,296 KB
testcase_19 AC 186 ms
102,016 KB
testcase_20 AC 188 ms
101,888 KB
testcase_21 AC 189 ms
102,016 KB
testcase_22 AC 163 ms
98,560 KB
testcase_23 AC 171 ms
102,912 KB
testcase_24 AC 37 ms
51,968 KB
testcase_25 AC 46 ms
60,928 KB
testcase_26 AC 43 ms
60,288 KB
testcase_27 AC 40 ms
58,368 KB
testcase_28 AC 66 ms
67,840 KB
testcase_29 AC 56 ms
63,744 KB
testcase_30 AC 46 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
L=list(map(int,input().split()))
K=int(input())
m=[0.0,float(max(L))]
for j in range(70):
	mid=sum(m)/2
	count=0
	for i in L:
		count+=int(i/mid)
	m[K>count]=mid
print(m[1])
0