結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー 37zigen37zigen
提出日時 2016-03-20 19:08:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,244 ms / 5,000 ms
コード長 562 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 74,604 KB
実行使用メモリ 63,152 KB
最終ジャッジ日時 2024-11-08 11:52:02
合計ジャッジ時間 31,843 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,064 ms
62,384 KB
testcase_01 AC 132 ms
41,624 KB
testcase_02 AC 664 ms
53,004 KB
testcase_03 AC 1,071 ms
61,896 KB
testcase_04 AC 1,244 ms
62,708 KB
testcase_05 AC 1,223 ms
62,780 KB
testcase_06 AC 1,108 ms
62,364 KB
testcase_07 AC 1,099 ms
62,796 KB
testcase_08 AC 1,105 ms
62,772 KB
testcase_09 AC 1,086 ms
63,040 KB
testcase_10 AC 1,021 ms
61,732 KB
testcase_11 AC 1,062 ms
62,008 KB
testcase_12 AC 1,111 ms
61,696 KB
testcase_13 AC 1,120 ms
62,936 KB
testcase_14 AC 1,110 ms
61,860 KB
testcase_15 AC 1,093 ms
62,444 KB
testcase_16 AC 1,214 ms
62,788 KB
testcase_17 AC 1,230 ms
62,596 KB
testcase_18 AC 1,026 ms
62,160 KB
testcase_19 AC 1,016 ms
63,152 KB
testcase_20 AC 1,094 ms
62,952 KB
testcase_21 AC 1,160 ms
62,536 KB
testcase_22 AC 1,124 ms
62,024 KB
testcase_23 AC 1,145 ms
61,980 KB
testcase_24 AC 128 ms
41,212 KB
testcase_25 AC 247 ms
46,176 KB
testcase_26 AC 210 ms
43,088 KB
testcase_27 AC 207 ms
42,472 KB
testcase_28 AC 544 ms
48,764 KB
testcase_29 AC 405 ms
47,544 KB
testcase_30 AC 244 ms
46,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		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();
		double sup=Integer.MAX_VALUE;//不可能な長さ
		double low=0;//可能な長さ
		for(int i=0;i<300;i++){
			long count=0;
			double mid=(sup+low)/2;
			for(int j=0;j<n;j++){
				count+=(long)(int)(L[j]/mid);
			}
			if(count>=k){
				low=mid;
			}else{
				sup=mid;
			}
			
		}
		System.out.println(low);
	}
}
0