結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー youthfuldays072youthfuldays072
提出日時 2018-06-16 18:19:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,165 ms / 5,000 ms
コード長 1,033 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 77,372 KB
実行使用メモリ 73,020 KB
最終ジャッジ日時 2024-11-08 12:45:39
合計ジャッジ時間 32,314 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,091 ms
70,240 KB
testcase_01 AC 144 ms
54,188 KB
testcase_02 AC 695 ms
59,288 KB
testcase_03 AC 968 ms
69,040 KB
testcase_04 AC 1,126 ms
71,296 KB
testcase_05 AC 1,114 ms
71,636 KB
testcase_06 AC 1,123 ms
71,068 KB
testcase_07 AC 1,165 ms
73,020 KB
testcase_08 AC 1,108 ms
71,032 KB
testcase_09 AC 1,112 ms
70,864 KB
testcase_10 AC 1,057 ms
71,016 KB
testcase_11 AC 1,049 ms
71,276 KB
testcase_12 AC 1,041 ms
71,208 KB
testcase_13 AC 1,120 ms
70,812 KB
testcase_14 AC 1,090 ms
70,336 KB
testcase_15 AC 1,050 ms
71,176 KB
testcase_16 AC 1,127 ms
71,520 KB
testcase_17 AC 1,127 ms
71,444 KB
testcase_18 AC 1,099 ms
71,224 KB
testcase_19 AC 1,087 ms
70,628 KB
testcase_20 AC 1,088 ms
71,184 KB
testcase_21 AC 1,139 ms
70,968 KB
testcase_22 AC 1,031 ms
71,204 KB
testcase_23 AC 1,054 ms
71,512 KB
testcase_24 AC 133 ms
54,028 KB
testcase_25 AC 245 ms
57,548 KB
testcase_26 AC 210 ms
56,604 KB
testcase_27 AC 205 ms
54,148 KB
testcase_28 AC 521 ms
59,376 KB
testcase_29 AC 361 ms
58,500 KB
testcase_30 AC 238 ms
57,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	public static void main(String[] args) {
		Main main=new Main();
		main.run();
	}

	void run() {


		Scanner sc=new Scanner(System.in);

		int N=sc.nextInt();

		long[] L=new long[N];

		long maxlength=-1;
		for(int i=0;i<N;i++) {

			long buf=sc.nextLong();
			L[i]=buf;

			if(maxlength<buf) {
				maxlength=buf;
			}
		}

		Long K=sc.nextLong();

		double l=0.0;
		double u=maxlength+1;
		double mid=0.0;

		for(int i=0;i<100;i++) {
			mid=(l+u)/2.0;

			if(judge(mid,L,K)) {
				l=mid;
			}else {
				u=mid;
			}
		}



		System.out.println(mid);




	}



	//ある幅で何本とれるか返す関数
	public static long calc(double cutwidth,long[] L) {

		long count=0;

		for(int i=0;i<L.length;i++) {
			count+=(int)L[i]/cutwidth;
		}


		return count;
	}

	//ある幅でK本以上とれるかどうか判定する関数。
	public static boolean judge(double cutwidth,long[] L,long K) {

		if(calc(cutwidth,L)>=K) {
			return true;
		}else {
			return false;
		}

	}




}

0