結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | t8m8⛄️ |
提出日時 | 2015-12-05 18:14:11 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,019 bytes |
コンパイル時間 | 3,664 ms |
コンパイル使用メモリ | 80,868 KB |
実行使用メモリ | 68,644 KB |
最終ジャッジ日時 | 2024-09-14 14:28:53 |
合計ジャッジ時間 | 29,823 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 964 ms
58,324 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 1,023 ms
58,900 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 999 ms
57,984 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 975 ms
58,776 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 1,001 ms
58,572 KB |
testcase_16 | AC | 977 ms
58,720 KB |
testcase_17 | AC | 969 ms
58,868 KB |
testcase_18 | AC | 1,052 ms
58,908 KB |
testcase_19 | AC | 1,005 ms
58,936 KB |
testcase_20 | AC | 1,009 ms
58,396 KB |
testcase_21 | AC | 1,064 ms
58,116 KB |
testcase_22 | AC | 945 ms
58,644 KB |
testcase_23 | AC | 972 ms
58,816 KB |
testcase_24 | AC | 138 ms
41,448 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 208 ms
42,552 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
import java.util.*; import java.io.*; import java.awt.geom.*; import java.math.*; public class No0067 { static final Scanner in = new Scanner(System.in); static final PrintWriter out = new PrintWriter(System.out,false); static void solve() { int n = in.nextInt(); int[] l = new int[n]; int max = 0; for (int i=0; i<n; i++) { l[i] = in.nextInt(); max = Math.max(max, l[i]); } int k = in.nextInt(); double lb = 0, ub = max; for (int i=0; i<100; i++) { double m = (lb + ub)/2; if (cnt(l,m) >= k) lb = m; else ub = m; } out.printf("%.10f\n",ub); } static int cnt(int[] l, double m) { int res = 0; for (int i=0; i<l.length; i++) { res += (int)(l[i]/m); } return res; } public static void main(String[] args) { long start = System.currentTimeMillis(); solve(); out.flush(); long end = System.currentTimeMillis(); //trace(end-start + "ms"); in.close(); out.close(); } static void trace(Object... o) { System.out.println(Arrays.deepToString(o));} }