結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー uafr_csuafr_cs
提出日時 2015-09-07 01:58:23
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,816 bytes
コンパイル時間 2,480 ms
コンパイル使用メモリ 76,456 KB
実行使用メモリ 71,560 KB
最終ジャッジ日時 2023-09-26 09:55:26
合計ジャッジ時間 18,101 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 412 ms
71,560 KB
testcase_01 AC 117 ms
55,760 KB
testcase_02 AC 370 ms
60,620 KB
testcase_03 AC 453 ms
64,796 KB
testcase_04 AC 510 ms
68,588 KB
testcase_05 AC 510 ms
64,676 KB
testcase_06 AC 512 ms
65,472 KB
testcase_07 AC 520 ms
69,028 KB
testcase_08 AC 527 ms
68,708 KB
testcase_09 AC 557 ms
69,368 KB
testcase_10 AC 502 ms
62,940 KB
testcase_11 AC 513 ms
64,996 KB
testcase_12 AC 509 ms
66,788 KB
testcase_13 AC 538 ms
71,056 KB
testcase_14 AC 530 ms
67,264 KB
testcase_15 AC 524 ms
68,992 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

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-8;
		double upper = Arrays.stream(input).max().getAsLong();
		double lower = (double)(Arrays.stream(input).min().getAsLong()) / K;
		
		while((upper - lower) > EPS){
			final double middle = (upper + lower) / 2;
			
			long count = 0;
			for(int i = 0; i < N; i++){
				count += input[i] / middle;
			}
			
			if(count >= K){
				lower = middle;
			}else{
				upper = middle;
			}
		}
		
		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