結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | htensai |
提出日時 | 2020-01-14 20:29:52 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 762 bytes |
コンパイル時間 | 1,861 ms |
コンパイル使用メモリ | 73,900 KB |
実行使用メモリ | 64,204 KB |
最終ジャッジ日時 | 2024-06-07 21:47:52 |
合計ジャッジ時間 | 13,993 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 887 ms
63,444 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] arr = new int[n]; for (int i = 0; i < n; i++) { arr[i] = sc.nextInt(); } int k = sc.nextInt(); double left = 0.0000000001; double right = 1000000000; while (right - left > 0.00000000001) { double m = (left + right) / 2; int count = 0; for (int i = 0; i < n; i++) { count += (int)(arr[i] / m); } if (count < k) { right = m; } else { left = m; } } System.out.println(left); } }