結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | 6v8 |
提出日時 | 2014-12-04 23:36:50 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,026 bytes |
コンパイル時間 | 1,771 ms |
コンパイル使用メモリ | 77,544 KB |
実行使用メモリ | 59,228 KB |
最終ジャッジ日時 | 2024-06-11 15:26:08 |
合計ジャッジ時間 | 22,602 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 114 ms
41,260 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
import java.lang.reflect.Array; import java.util.Arrays; import java.util.Scanner; public class Main { int n,m,mod; int[] b; public static void main(String[] args){ new Main().ans(); } int sum=0; private void ans() { Scanner sc = new Scanner(System.in); n =sc.nextInt(); b= new int[n]; for(int i=0;i<n;i++) { b[i] =sc.nextInt(); sum += b[i]; } Arrays.sort(b);//昇順ソート //int t = sc.nextInt(); //for(int i=0;i<t;i++) answer(sc.nextDouble()); answer(sc.nextInt()); } private void answer(double i) { int anstable[] = new int[b.length]; double kari = (double)(sum/i); int t = 0; double[] mynex = new double[b.length]; for(int j = 0; j<b.length;j++){ anstable[j] = (int)(b[j]/kari); mynex[j] = b[j]/(double)(anstable[j]+1); t+=anstable[j]; } if(t >=i){ System.out.println(kari); }else{ Arrays.sort(mynex); System.out.println(mynex[(int) (b.length - 1-(i-t-1))]); } } }