結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | uafr_cs |
提出日時 | 2015-09-07 01:50:54 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,781 bytes |
コンパイル時間 | 2,060 ms |
コンパイル使用メモリ | 80,120 KB |
実行使用メモリ | 58,860 KB |
最終ジャッジ日時 | 2024-07-19 04:47:45 |
合計ジャッジ時間 | 13,379 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 499 ms
56,864 KB |
testcase_01 | AC | 107 ms
41,016 KB |
testcase_02 | AC | 330 ms
48,300 KB |
testcase_03 | AC | 420 ms
51,748 KB |
testcase_04 | AC | 502 ms
53,540 KB |
testcase_05 | AC | 497 ms
53,592 KB |
testcase_06 | AC | 500 ms
53,700 KB |
testcase_07 | AC | 500 ms
54,576 KB |
testcase_08 | AC | 514 ms
58,860 KB |
testcase_09 | TLE | - |
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.io.BufferedReader; import java.io.Closeable; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.Arrays; import java.util.HashSet; import java.util.LinkedList; import java.util.Scanner; import java.util.Set; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); final int N = sc.nextInt(); long[] input = new long[N]; for(int i = 0; i < N; i++){ input[i] = sc.nextLong(); } final long K = sc.nextLong(); final double EPS = 1e-10; double upper = Arrays.stream(input).max().getAsLong(); double lower = Double.MIN_VALUE; while((upper - lower) > EPS){ final double middle = (upper + lower) / 2; long count = 0; for(int i = 0; i < N; i++){ count += input[i] / middle; } if(count >= K){ lower = middle; }else{ upper = middle; } } System.out.printf("%.12f\n", lower); } public static class Scanner implements Closeable { private BufferedReader br; private StringTokenizer tok; public Scanner(InputStream is) throws IOException { br = new BufferedReader(new InputStreamReader(is)); } private void getLine() throws IOException { while (!hasNext()) { tok = new StringTokenizer(br.readLine()); } } private boolean hasNext() { return tok != null && tok.hasMoreTokens(); } public String next() throws IOException { getLine(); return tok.nextToken(); } public int nextInt() throws IOException { return Integer.parseInt(next()); } public long nextLong() throws IOException { return Long.parseLong(next()); } public void close() throws IOException { br.close(); } } }