結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー threepipes_sthreepipes_s
提出日時 2014-11-17 01:01:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 423 ms / 5,000 ms
コード長 920 bytes
コンパイル時間 2,489 ms
コンパイル使用メモリ 76,716 KB
実行使用メモリ 66,948 KB
最終ジャッジ日時 2024-11-08 11:21:06
合計ジャッジ時間 14,242 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 403 ms
66,052 KB
testcase_01 AC 55 ms
37,208 KB
testcase_02 AC 286 ms
52,924 KB
testcase_03 AC 388 ms
61,020 KB
testcase_04 AC 401 ms
65,160 KB
testcase_05 AC 396 ms
65,024 KB
testcase_06 AC 405 ms
65,152 KB
testcase_07 AC 406 ms
65,384 KB
testcase_08 AC 412 ms
65,628 KB
testcase_09 AC 401 ms
65,484 KB
testcase_10 AC 414 ms
63,440 KB
testcase_11 AC 395 ms
63,540 KB
testcase_12 AC 401 ms
61,460 KB
testcase_13 AC 403 ms
65,920 KB
testcase_14 AC 409 ms
66,948 KB
testcase_15 AC 413 ms
64,600 KB
testcase_16 AC 400 ms
65,184 KB
testcase_17 AC 423 ms
65,200 KB
testcase_18 AC 400 ms
65,220 KB
testcase_19 AC 401 ms
65,380 KB
testcase_20 AC 400 ms
65,740 KB
testcase_21 AC 400 ms
65,548 KB
testcase_22 AC 381 ms
63,368 KB
testcase_23 AC 396 ms
63,860 KB
testcase_24 AC 55 ms
37,052 KB
testcase_25 AC 103 ms
41,420 KB
testcase_26 AC 75 ms
39,232 KB
testcase_27 AC 65 ms
37,576 KB
testcase_28 AC 204 ms
48,056 KB
testcase_29 AC 159 ms
43,680 KB
testcase_30 AC 111 ms
40,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
	public static void main(String[] args){
		BufferedReader input
		= new BufferedReader(new InputStreamReader(System.in));
		try{
			int n = Integer.parseInt(input.readLine().trim());
			String tmp0[] = input.readLine().trim().split(" ");
			long m = Long.parseLong(input.readLine().trim());
			double[] l = new double[n];
			double min = 0;
			double max = 1e10;
			
			for(int i=0; i<n; i++){
				l[i] = Double.parseDouble(tmp0[i]);
			}
			double len = 0;
			long cut;
			for(int i=0; i<100; i++){
				len = (min+max)/2.0;
				cut = 0;
				for(int j=0; j<n; j++){
					cut += (long)(l[j]/len);
				}
				if(cut < m){
					max = len;
				}else{
					min = len;
				}
			}
			
			
			System.out.println(len);
		}catch(IOException e){
			e.printStackTrace();
		}
	}

}
0