結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー kou6839kou6839
提出日時 2014-12-10 13:18:10
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,275 ms
57,480 KB
testcase_01 AC 142 ms
41,336 KB
testcase_02 AC 1,335 ms
58,240 KB
testcase_03 AC 1,865 ms
58,472 KB
testcase_04 AC 2,280 ms
58,600 KB
testcase_05 AC 2,301 ms
58,612 KB
testcase_06 AC 2,303 ms
58,396 KB
testcase_07 AC 2,302 ms
57,768 KB
testcase_08 AC 2,268 ms
57,608 KB
testcase_09 AC 2,309 ms
57,928 KB
testcase_10 AC 2,070 ms
58,368 KB
testcase_11 AC 2,155 ms
58,584 KB
testcase_12 AC 2,101 ms
58,532 KB
testcase_13 AC 2,192 ms
58,300 KB
testcase_14 AC 2,270 ms
58,896 KB
testcase_15 AC 2,100 ms
58,544 KB
testcase_16 AC 2,352 ms
58,660 KB
testcase_17 AC 2,315 ms
58,668 KB
testcase_18 AC 2,256 ms
58,672 KB
testcase_19 AC 2,320 ms
57,980 KB
testcase_20 AC 2,308 ms
58,100 KB
testcase_21 AC 2,284 ms
57,764 KB
testcase_22 AC 2,016 ms
58,380 KB
testcase_23 AC 2,161 ms
58,440 KB
testcase_24 AC 130 ms
41,236 KB
testcase_25 AC 292 ms
46,568 KB
testcase_26 AC 212 ms
43,156 KB
testcase_27 AC 213 ms
42,672 KB
testcase_28 AC 747 ms
48,336 KB
testcase_29 AC 526 ms
47,848 KB
testcase_30 AC 277 ms
46,620 KB
権限があれば一括ダウンロードができます

ソースコード

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