結果
| 問題 |
No.67 よくある棒を切る問題 (1)
|
| コンテスト | |
| ユーザー |
kou6839
|
| 提出日時 | 2014-12-10 13:18:10 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 2,207 ms / 5,000 ms |
| コード長 | 762 bytes |
| コンパイル時間 | 6,111 ms |
| コンパイル使用メモリ | 75,964 KB |
| 実行使用メモリ | 71,860 KB |
| 最終ジャッジ日時 | 2025-03-03 10:14:53 |
| 合計ジャッジ時間 | 55,440 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
import java.math.*;
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int[] tree = new int[n];
double max=0;
for(int i=0;i<n;i++){
int temp=sc.nextInt();
tree[i]=temp;
max=Math.max(temp,max);
}
long k = sc.nextLong();
double min=0;
for(int hh=0;hh<1000;hh++){
double temp=(min+max)/2;
long count=0;
for(int i=0;i<n;i++){
count+=(long)tree[i]/temp;
}
if(count>=k){
min=temp;
}else{
max=temp;
}
}
System.out.println(max);
}
}
kou6839