結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | fjafjafja |
提出日時 | 2017-09-20 21:35:02 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 616 bytes |
コンパイル時間 | 4,128 ms |
コンパイル使用メモリ | 74,872 KB |
実行使用メモリ | 58,940 KB |
最終ジャッジ日時 | 2024-11-08 09:20:39 |
合計ジャッジ時間 | 33,175 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 989 ms
57,344 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1,113 ms
58,496 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1,120 ms
57,560 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1,040 ms
58,404 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1,065 ms
58,500 KB |
testcase_16 | AC | 1,127 ms
58,556 KB |
testcase_17 | AC | 1,115 ms
58,484 KB |
testcase_18 | AC | 1,051 ms
58,484 KB |
testcase_19 | AC | 1,093 ms
58,180 KB |
testcase_20 | AC | 1,095 ms
57,824 KB |
testcase_21 | AC | 1,093 ms
58,152 KB |
testcase_22 | AC | 977 ms
58,452 KB |
testcase_23 | AC | 994 ms
58,336 KB |
testcase_24 | AC | 139 ms
41,460 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 213 ms
42,188 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
import java.util.Scanner; public class N067 { static double max=Integer.MAX_VALUE,min=Math.pow(10, -9); static long k; static int n; static int[] l; 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.nextLong(); double av=0; for(int i=0;i<100;i++) { av=(max+min)/2; int cnt=0; for(int j=0;j<n;j++) { cnt+=(int)(l[j]/av); if(cnt>=k) {break;} } if(cnt>=k) { min=av; } else { max=av; } } System.out.printf("%.8f",av); } }