結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー youthfuldays072youthfuldays072
提出日時 2018-06-16 18:44:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,107 ms / 5,000 ms
コード長 1,127 bytes
コンパイル時間 2,554 ms
コンパイル使用メモリ 83,576 KB
実行使用メモリ 58,792 KB
最終ジャッジ日時 2024-11-08 12:46:40
合計ジャッジ時間 31,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,072 ms
58,492 KB
testcase_01 AC 126 ms
40,388 KB
testcase_02 AC 625 ms
50,380 KB
testcase_03 AC 960 ms
58,148 KB
testcase_04 AC 1,088 ms
58,640 KB
testcase_05 AC 1,058 ms
58,628 KB
testcase_06 AC 1,061 ms
58,304 KB
testcase_07 AC 1,080 ms
58,484 KB
testcase_08 AC 1,085 ms
58,256 KB
testcase_09 AC 1,081 ms
57,804 KB
testcase_10 AC 981 ms
58,672 KB
testcase_11 AC 970 ms
58,476 KB
testcase_12 AC 980 ms
58,304 KB
testcase_13 AC 1,027 ms
58,496 KB
testcase_14 AC 1,078 ms
57,188 KB
testcase_15 AC 1,014 ms
58,620 KB
testcase_16 AC 1,087 ms
58,716 KB
testcase_17 AC 1,021 ms
58,620 KB
testcase_18 AC 1,063 ms
58,792 KB
testcase_19 AC 1,063 ms
58,100 KB
testcase_20 AC 1,105 ms
57,864 KB
testcase_21 AC 1,107 ms
58,060 KB
testcase_22 AC 889 ms
58,648 KB
testcase_23 AC 1,042 ms
58,632 KB
testcase_24 AC 130 ms
41,280 KB
testcase_25 AC 233 ms
45,888 KB
testcase_26 AC 200 ms
42,912 KB
testcase_27 AC 195 ms
42,892 KB
testcase_28 AC 510 ms
48,556 KB
testcase_29 AC 369 ms
47,896 KB
testcase_30 AC 238 ms
45,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	int[] L;
	int N;
	long K;

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

	void run() {

		Scanner sc=new Scanner(System.in);

		 N=sc.nextInt();
		 L=new int[N];

		for(int i=0;i<N;i++) {
			int buf=sc.nextInt();
			L[i]=buf;
		}

		K=sc.nextLong();

		double ub=Integer.MAX_VALUE;
		double lb=0;
		double mid=0;

		for(int i=0;i<100;i++) {

			mid=(lb+ub)/2;
			long temp=0;

			for(int l=0;l<N;l++) {
				temp+=(long)L[l]/mid;
			}

			if(temp>=K) {
				lb=mid;
			}else {
				ub=mid;
			}

		}

		System.out.println(lb);


	}

}


//#include "bits/stdc++.h"
//using namespace std;
//
//
//int main(){
//	int N;
//	cin >> N;
//	vector<int> L(N);
//	for (int i = 0; i < N; i++)
//	{
//		cin >> L[i];
//	}
//
//	long long K;
//	cin >> K;
//
//	double low = 0;
//	double high = 1e9;
//	for (int t = 0; t < 100; t++)
//	{
//		double mid = (low + high) / 2;
//		long temp = 0;
//		for (int i = 0; i < N; i++)
//		{
//			temp += (long long)(L[i] / mid);
//		}
//		if (temp >= K) low = mid;
//		else high = mid;
//	}
//	printf("%.14f\n", low);
//}
0