結果

問題 No.68 よくある棒を切る問題 (2)
ユーザー 6v86v8
提出日時 2014-12-04 22:39:21
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,223 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 77,672 KB
実行使用メモリ 66,092 KB
最終ジャッジ日時 2024-06-11 14:46:38
合計ジャッジ時間 15,730 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.lang.reflect.Array;
import java.util.Arrays;
import java.util.Scanner;



public class Main {
int n,m,mod;
int[] b;
	public static void main(String[] args){	
		new Main().ans();
	}
	int sum=0;
	private void ans() {
		Scanner sc = new Scanner(System.in);
		n =sc.nextInt();
		b= new int[n];
		for(int i=0;i<n;i++) {
			b[i] =sc.nextInt();
			sum += b[i];
		}
		Arrays.sort(b);//昇順ソート
		int t = sc.nextInt();
		for(int i=0;i<t;i++) answer(sc.nextDouble());
	}
	private void answer(double i) {
		int anstable[] = new int[b.length];
		double kari = (double)(sum/i);
	
			while(true){
			int t = 0;
			int maxcount = 0;
			for(int j = 0; j<b.length;j++){
				anstable[j] = (int)(b[j]/kari);
				t+=anstable[j];
				maxcount = Math.max(maxcount, anstable[j]);
			}
			if(t >=i){
				System.out.println(kari);
				return;
			}else{
				double anslength = 0;
				for(int j = 0 ; j<maxcount+1;j++){
					for(int k=b.length-1; k>=0;k--){
						if(anstable[k] == j){
							if(anslength < (double)(b[k]/(double)(j+1))){
								anslength = (double)(b[k]/(double)(j+1));
							}
							break;
						}
					}
				}
				kari = anslength;
			}
			}	
	}
	
}
0