結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー fjafjafjafjafjafja
提出日時 2017-09-20 21:41:37
言語 Java
(openjdk 23)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 619 bytes
コンパイル時間 4,163 ms
コンパイル使用メモリ 78,196 KB
実行使用メモリ 59,816 KB
最終ジャッジ日時 2024-06-26 11:20:46
合計ジャッジ時間 31,968 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 942 ms
58,804 KB
testcase_01 WA -
testcase_02 AC 692 ms
50,484 KB
testcase_03 AC 972 ms
58,808 KB
testcase_04 AC 1,054 ms
59,388 KB
testcase_05 AC 1,118 ms
59,428 KB
testcase_06 AC 1,065 ms
59,320 KB
testcase_07 AC 1,117 ms
58,880 KB
testcase_08 AC 1,077 ms
58,924 KB
testcase_09 AC 1,076 ms
59,816 KB
testcase_10 AC 995 ms
59,316 KB
testcase_11 AC 1,037 ms
59,332 KB
testcase_12 AC 1,011 ms
59,268 KB
testcase_13 AC 1,096 ms
59,144 KB
testcase_14 AC 1,058 ms
59,664 KB
testcase_15 AC 1,065 ms
59,248 KB
testcase_16 AC 1,167 ms
59,580 KB
testcase_17 AC 1,103 ms
59,260 KB
testcase_18 AC 1,067 ms
59,500 KB
testcase_19 AC 1,085 ms
58,780 KB
testcase_20 AC 1,102 ms
59,384 KB
testcase_21 AC 1,075 ms
58,736 KB
testcase_22 AC 980 ms
58,996 KB
testcase_23 AC 916 ms
59,148 KB
testcase_24 AC 135 ms
41,308 KB
testcase_25 AC 240 ms
45,748 KB
testcase_26 AC 216 ms
43,092 KB
testcase_27 AC 210 ms
42,364 KB
testcase_28 AC 497 ms
48,304 KB
testcase_29 AC 368 ms
48,252 KB
testcase_30 AC 242 ms
45,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N067
{
	static double max=Integer.MAX_VALUE,min=Math.pow(10, -9);
	static long k;
	static int n;
	static long[] l;
	public static void main(String[] args)
	{
		Scanner sc = new Scanner(System.in);
		n=sc.nextInt();

		l=new long[n];
		for(int i=0;i<n;i++)
		{
			l[i]=sc.nextInt();
		}
		k=sc.nextLong();

		double av=0;
		for(int i=0;i<100;i++)
		{
			av=(max+min)/2;
			long cnt=0;
			for(int j=0;j<n;j++)
			{
				cnt+=(long)(l[j]/av);
				if(cnt>=k)
				{break;}
			}

			if(cnt>=k)
			{
				min=av;
			}
			else
			{
				max=av;
			}
		}
		System.out.printf("%.8f",av);
	}
}
0