結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー kou6839kou6839
提出日時 2014-12-10 13:18:10
言語 Java
(openjdk 23)
結果
AC  
実行時間 2,352 ms / 5,000 ms
コード長 762 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 73,948 KB
実行使用メモリ 58,896 KB
最終ジャッジ日時 2024-11-08 11:25:11
合計ジャッジ時間 59,243 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] tree = new int[n];
        double max=0;
        for(int i=0;i<n;i++){
        	int temp=sc.nextInt();
        	tree[i]=temp;
        	max=Math.max(temp,max);
        }
        long k = sc.nextLong();
        double min=0;
        for(int hh=0;hh<1000;hh++){
        	double temp=(min+max)/2;
        	long count=0;
        	for(int i=0;i<n;i++){
        		count+=(long)tree[i]/temp;
        	}
        	if(count>=k){
        		min=temp;
        	}else{
        		max=temp;
        	}
        }
        System.out.println(max);
    }
}	
0