結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | youthfuldays072 |
提出日時 | 2018-06-16 18:16:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,031 bytes |
コンパイル時間 | 2,051 ms |
コンパイル使用メモリ | 77,556 KB |
実行使用メモリ | 71,944 KB |
最終ジャッジ日時 | 2024-06-30 16:21:00 |
合計ジャッジ時間 | 30,802 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 990 ms
58,372 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1,085 ms
59,744 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1,069 ms
59,108 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1,027 ms
59,248 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1,026 ms
59,368 KB |
testcase_16 | AC | 942 ms
59,632 KB |
testcase_17 | AC | 1,068 ms
59,920 KB |
testcase_18 | AC | 1,073 ms
59,684 KB |
testcase_19 | AC | 1,067 ms
58,744 KB |
testcase_20 | AC | 1,158 ms
58,804 KB |
testcase_21 | AC | 1,113 ms
59,440 KB |
testcase_22 | AC | 917 ms
59,560 KB |
testcase_23 | AC | 1,032 ms
59,744 KB |
testcase_24 | AC | 128 ms
41,680 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 190 ms
42,684 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
import java.util.Scanner; public class Main{ public static void main(String[] args) { Main main=new Main(); main.run(); } void run() { Scanner sc=new Scanner(System.in); int N=sc.nextInt(); long[] L=new long[N]; long maxlength=-1; for(int i=0;i<N;i++) { long buf=sc.nextLong(); L[i]=buf; if(maxlength<buf) { maxlength=buf; } } Long K=sc.nextLong(); 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,long[] 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,long[] L,long K) { if(calc(cutwidth,L)>=K) { return true; }else { return false; } } }