結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー uafr_csuafr_cs
提出日時 2015-09-07 02:15:00
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,864 ms / 5,000 ms
コード長 1,944 bytes
コンパイル時間 2,600 ms
コンパイル使用メモリ 80,000 KB
実行使用メモリ 58,924 KB
最終ジャッジ日時 2024-11-08 11:42:03
合計ジャッジ時間 27,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 438 ms
55,576 KB
testcase_01 AC 119 ms
40,468 KB
testcase_02 AC 370 ms
48,532 KB
testcase_03 AC 494 ms
51,816 KB
testcase_04 AC 591 ms
57,824 KB
testcase_05 AC 586 ms
53,376 KB
testcase_06 AC 579 ms
53,692 KB
testcase_07 AC 581 ms
54,568 KB
testcase_08 AC 587 ms
55,108 KB
testcase_09 AC 577 ms
54,092 KB
testcase_10 AC 557 ms
51,864 KB
testcase_11 AC 577 ms
52,036 KB
testcase_12 AC 589 ms
56,000 KB
testcase_13 AC 587 ms
58,536 KB
testcase_14 AC 576 ms
54,632 KB
testcase_15 AC 567 ms
56,416 KB
testcase_16 AC 1,795 ms
53,696 KB
testcase_17 AC 1,796 ms
53,440 KB
testcase_18 AC 1,804 ms
53,688 KB
testcase_19 AC 1,813 ms
55,084 KB
testcase_20 AC 1,825 ms
54,224 KB
testcase_21 AC 1,864 ms
58,924 KB
testcase_22 AC 533 ms
56,160 KB
testcase_23 AC 1,731 ms
51,844 KB
testcase_24 AC 132 ms
41,164 KB
testcase_25 AC 178 ms
41,776 KB
testcase_26 AC 153 ms
41,584 KB
testcase_27 AC 150 ms
41,400 KB
testcase_28 AC 289 ms
46,084 KB
testcase_29 AC 240 ms
44,208 KB
testcase_30 AC 190 ms
41,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;
import java.util.StringTokenizer;

public class Main {

	public static void main(String[] args) throws IOException {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		long[] input = new long[N];
		for(int i = 0; i < N; i++){
			input[i] = sc.nextLong();
		}
		final long K = sc.nextLong();
		
		final double EPS = 1e-10;
		double upper = Arrays.stream(input).max().getAsLong();
		double lower = (double)(Arrays.stream(input).min().getAsLong()) / K;
		
		int loops = 0;
		while(upper > lower + EPS && loops < 1000){
			final double middle = upper / 2 + lower / 2;
			//System.out.printf("%.12f %.12f %.12f \n", upper, upper - lower, middle);
			
			long count = 0;
			for(int i = 0; i < N; i++){
				count += input[i] / middle;
			}
			
			if(count >= K){
				lower = middle;
			}else{
				upper = middle;
			}
			
			loops++;
		}
		
		System.out.printf("%.12f\n", lower);
	}
	
	public static class Scanner implements Closeable {
		private BufferedReader br;
		private StringTokenizer tok;
 
		public Scanner(InputStream is) throws IOException {
			br = new BufferedReader(new InputStreamReader(is));
		}
 
		private void getLine() throws IOException {
			while (!hasNext()) {
				tok = new StringTokenizer(br.readLine());
			}
		}
 
		private boolean hasNext() {
			return tok != null && tok.hasMoreTokens();
		}
 
		public String next() throws IOException {
			getLine();
			return tok.nextToken();
		}
 
		public int nextInt() throws IOException {
			return Integer.parseInt(next());
		}
 
		public long nextLong() throws IOException {
			return Long.parseLong(next());
		}
 
		public void close() throws IOException {
			br.close();
		}
	}

}
0