結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | moecocoa |
提出日時 | 2018-02-06 14:47:52 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 630 bytes |
コンパイル時間 | 1,826 ms |
コンパイル使用メモリ | 73,640 KB |
実行使用メモリ | 69,500 KB |
最終ジャッジ日時 | 2024-07-18 06:10:38 |
合計ジャッジ時間 | 24,911 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 944 ms
68,568 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 965 ms
69,500 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 921 ms
68,516 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 896 ms
69,212 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 910 ms
69,192 KB |
testcase_16 | AC | 900 ms
69,224 KB |
testcase_17 | AC | 877 ms
69,064 KB |
testcase_18 | AC | 846 ms
69,288 KB |
testcase_19 | AC | 975 ms
68,564 KB |
testcase_20 | AC | 959 ms
68,300 KB |
testcase_21 | AC | 934 ms
68,604 KB |
testcase_22 | AC | 881 ms
69,208 KB |
testcase_23 | AC | 855 ms
68,812 KB |
testcase_24 | AC | 109 ms
52,692 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 171 ms
54,244 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
import java.util.*; import java.io.*; public class Main{ static int N; static int[] l; static int K; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); l = new int[N]; for(int i=0; i<N; i++){ l[i] = sc.nextInt(); } K = sc.nextInt(); double lb = 0, ub = 1e12; for(int cnt = 0; cnt < 100; cnt++) { // while (ub - lb > 1) double mid = (lb + ub) / 2; if (mid < 1e-10) { lb = mid; continue; } int sum = 0; for(int i=0; i<N; i++){ sum += l[i] / mid; } if (sum >= K) lb = mid; else ub = mid; } System.out.println(lb); } }