結果
問題 | No.68 よくある棒を切る問題 (2) |
ユーザー | threepipes_s |
提出日時 | 2014-11-17 01:14:09 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,139 bytes |
コンパイル時間 | 2,655 ms |
コンパイル使用メモリ | 77,320 KB |
実行使用メモリ | 150,208 KB |
最終ジャッジ日時 | 2024-06-10 09:18:13 |
合計ジャッジ時間 | 14,986 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args){ BufferedReader input = new BufferedReader(new InputStreamReader(System.in)); try{ int n = Integer.parseInt(input.readLine().trim()); String tmp0[] = input.readLine().trim().split(" "); int q = Integer.parseInt(input.readLine().trim()); String tmp1[] = input.readLine().trim().split(" "); double[] l = new double[n]; // double[] k = new double[q]; for(int i=0; i<n; i++){ l[i] = Double.parseDouble(tmp0[i]); } for(int i=0; i<q; i++){ System.out.println(getLen(l, n, Double.parseDouble(tmp1[i]))); } }catch(IOException e){ e.printStackTrace(); } } public static double getLen(double[] l, int n, double k){ double min = 0; double max = 1e9; double len = 0; long cut; for(int i=0; i<100; i++){ len = (min+max)/2.0; cut = 0; for(int j=0; j<n; j++){ cut += (long)(l[j]/len); } if(cut < k){ max = len; }else{ min = len; } } return len; } }