結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | youthfuldays072 |
提出日時 | 2018-06-16 18:11:07 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,091 bytes |
コンパイル時間 | 2,097 ms |
コンパイル使用メモリ | 77,116 KB |
実行使用メモリ | 69,040 KB |
最終ジャッジ日時 | 2024-06-30 16:25:51 |
合計ジャッジ時間 | 57,266 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,023 ms
67,240 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2,137 ms
67,348 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2,126 ms
67,504 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1,826 ms
67,112 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2,079 ms
67,160 KB |
testcase_16 | AC | 2,135 ms
67,128 KB |
testcase_17 | AC | 2,052 ms
67,412 KB |
testcase_18 | AC | 2,076 ms
67,336 KB |
testcase_19 | AC | 2,124 ms
66,968 KB |
testcase_20 | AC | 2,110 ms
67,336 KB |
testcase_21 | AC | 2,138 ms
67,424 KB |
testcase_22 | AC | 2,072 ms
67,160 KB |
testcase_23 | AC | 2,137 ms
69,040 KB |
testcase_24 | AC | 145 ms
54,228 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 274 ms
61,240 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
import java.util.Scanner; public class Main{ boolean[] isprime=new boolean[20010]; public static void main(String[] args) { Main main=new Main(); main.run(); } void run() { Scanner sc=new Scanner(System.in); int N=sc.nextInt(); double[] L=new double[N]; double maxlength=-1; for(int i=0;i<N;i++) { double buf=sc.nextDouble(); L[i]=buf; if(maxlength<buf) { maxlength=buf; } } double K=sc.nextDouble(); double l=0.0; double u=maxlength+1; double mid=0.0; for(int i=0;i<100;i++) { mid=(l+u)/2.0; if(judge(mid,L,K)) { l=mid; }else { u=mid; } } System.out.println(mid); } //ある幅で何本とれるか返す関数 public static int calc(double cutwidth,double[] L) { int count=0; for(int i=0;i<L.length;i++) { count+=(int)L[i]/cutwidth; } return count; } //ある幅でK本以上とれるかどうか判定する関数。 public static boolean judge(double cutwidth,double[] L,double K) { if(calc(cutwidth,L)>=K) { return true; }else { return false; } } }