結果
| 問題 | No.67 よくある棒を切る問題 (1) |
| コンテスト | |
| ユーザー |
kou6839
|
| 提出日時 | 2014-12-10 12:06:07 |
| 言語 | Java (openjdk 25.0.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 725 bytes |
| 記録 | |
| コンパイル時間 | 2,345 ms |
| コンパイル使用メモリ | 77,288 KB |
| 実行使用メモリ | 78,004 KB |
| 最終ジャッジ日時 | 2025-03-03 10:13:31 |
| 合計ジャッジ時間 | 15,117 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 29 |
ソースコード
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];
for(int i=0;i<n;i++){
tree[i]=sc.nextInt();
}
int k = sc.nextInt();
double min=0;
double max=1000000000;
while(min<=max){
double temp=(min+max)/2;
int count=0;
for(int i=0;i<n;i++){
count+=(int)tree[i]/temp;
}
if(count>=k){
min=temp+0.0000000001;
}else{
max=temp-0.0000000001;
}
}
System.out.println(max);
}
}
kou6839