結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー scachescache
提出日時 2015-06-08 12:07:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,283 ms / 5,000 ms
コード長 898 bytes
コンパイル時間 3,562 ms
コンパイル使用メモリ 77,436 KB
実行使用メモリ 59,956 KB
最終ジャッジ日時 2024-11-08 11:34:54
合計ジャッジ時間 35,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,223 ms
58,760 KB
testcase_01 AC 131 ms
41,032 KB
testcase_02 AC 731 ms
54,400 KB
testcase_03 AC 1,092 ms
58,640 KB
testcase_04 AC 1,278 ms
58,940 KB
testcase_05 AC 1,140 ms
59,484 KB
testcase_06 AC 1,258 ms
59,956 KB
testcase_07 AC 1,222 ms
58,652 KB
testcase_08 AC 1,258 ms
58,428 KB
testcase_09 AC 1,227 ms
58,632 KB
testcase_10 AC 1,158 ms
58,944 KB
testcase_11 AC 1,064 ms
59,116 KB
testcase_12 AC 1,100 ms
58,972 KB
testcase_13 AC 1,189 ms
59,096 KB
testcase_14 AC 1,181 ms
57,852 KB
testcase_15 AC 1,124 ms
59,196 KB
testcase_16 AC 1,089 ms
58,948 KB
testcase_17 AC 1,249 ms
59,768 KB
testcase_18 AC 1,227 ms
59,736 KB
testcase_19 AC 1,283 ms
58,860 KB
testcase_20 AC 1,123 ms
58,632 KB
testcase_21 AC 1,250 ms
58,656 KB
testcase_22 AC 1,176 ms
59,272 KB
testcase_23 AC 1,245 ms
59,548 KB
testcase_24 AC 118 ms
40,124 KB
testcase_25 AC 237 ms
45,820 KB
testcase_26 AC 206 ms
42,808 KB
testcase_27 AC 205 ms
42,404 KB
testcase_28 AC 566 ms
48,368 KB
testcase_29 AC 378 ms
47,928 KB
testcase_30 AC 245 ms
45,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.text.NumberFormat;
import java.util.Scanner;

public class Main0145 {

	public static void main(String[] args) {
		new Main0145();
	}

	public Main0145() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		long[] l = new long[N];
		for(int i=0;i<N;i++)
			l[i] = sc.nextLong();
		long K = sc.nextLong();
		solve(N, l, K);
	}

	private void solve(int n, long[] l, long k) {
		double res = 0;
		double low = 0;
		double high = Integer.MAX_VALUE;
		
		for(int i=0;i<200;i++){
			long count = 0;
			double mid = (high+low)/2;
			
			for(long s: l){
				count += s/mid;
			}
//			System.out.println(count + " " + mid);
			if(count>=k){
				low = mid;
				res = mid;
			}else{
				high = mid;
			}
		}
		NumberFormat format = NumberFormat.getInstance();
		format.setGroupingUsed(false);
		format.setMaximumFractionDigits(11);
		
		System.out.println(format.format(res));
	}
}
0