結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-12-05 18:19:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,052 ms / 5,000 ms
コード長 1,024 bytes
コンパイル時間 3,821 ms
コンパイル使用メモリ 80,760 KB
実行使用メモリ 58,848 KB
最終ジャッジ日時 2024-11-08 11:43:09
合計ジャッジ時間 30,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 931 ms
57,984 KB
testcase_01 AC 129 ms
41,408 KB
testcase_02 AC 609 ms
48,396 KB
testcase_03 AC 910 ms
58,408 KB
testcase_04 AC 972 ms
58,560 KB
testcase_05 AC 893 ms
58,548 KB
testcase_06 AC 965 ms
58,684 KB
testcase_07 AC 1,000 ms
58,120 KB
testcase_08 AC 945 ms
58,060 KB
testcase_09 AC 937 ms
58,272 KB
testcase_10 AC 869 ms
58,644 KB
testcase_11 AC 840 ms
58,320 KB
testcase_12 AC 918 ms
58,644 KB
testcase_13 AC 930 ms
58,720 KB
testcase_14 AC 950 ms
58,228 KB
testcase_15 AC 973 ms
58,492 KB
testcase_16 AC 920 ms
58,848 KB
testcase_17 AC 985 ms
58,704 KB
testcase_18 AC 968 ms
58,824 KB
testcase_19 AC 986 ms
58,152 KB
testcase_20 AC 1,038 ms
57,924 KB
testcase_21 AC 1,052 ms
57,912 KB
testcase_22 AC 919 ms
58,736 KB
testcase_23 AC 922 ms
58,620 KB
testcase_24 AC 133 ms
41,288 KB
testcase_25 AC 238 ms
45,704 KB
testcase_26 AC 209 ms
43,064 KB
testcase_27 AC 208 ms
42,536 KB
testcase_28 AC 524 ms
48,476 KB
testcase_29 AC 361 ms
47,852 KB
testcase_30 AC 250 ms
45,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0067 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		int n = in.nextInt();
		int[] l = new int[n];
		int max = 0;
		for (int i=0; i<n; i++) {
			l[i] = in.nextInt();
			max = Math.max(max, l[i]);
		}
		long k = in.nextLong();

		double lb = 0, ub = max;
		for (int i=0; i<100; i++) {
			double m = (lb + ub)/2;
			if (cnt(l,m) >= k) lb = m;
			else ub = m;
		}

		out.printf("%.10f\n",ub);
	}

	static long cnt(int[] l, double m) {
		long res = 0;
		for (int i=0; i<l.length; i++) {
			res += (long)(l[i]/m);
		}
		return res;
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0