結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー dazydazy
提出日時 2017-02-23 19:40:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 3,943 ms
コンパイル使用メモリ 75,912 KB
実行使用メモリ 56,196 KB
最終ジャッジ日時 2024-06-10 20:59:55
合計ジャッジ時間 8,082 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,736 KB
testcase_01 AC 103 ms
53,004 KB
testcase_02 WA -
testcase_03 AC 116 ms
54,200 KB
testcase_04 AC 112 ms
54,100 KB
testcase_05 AC 118 ms
54,024 KB
testcase_06 AC 114 ms
53,992 KB
testcase_07 AC 113 ms
54,060 KB
testcase_08 WA -
testcase_09 AC 119 ms
53,944 KB
testcase_10 AC 120 ms
53,884 KB
testcase_11 AC 123 ms
54,144 KB
testcase_12 AC 130 ms
54,264 KB
testcase_13 AC 126 ms
54,284 KB
testcase_14 AC 126 ms
54,308 KB
testcase_15 AC 123 ms
54,012 KB
testcase_16 AC 121 ms
53,884 KB
testcase_17 WA -
testcase_18 AC 118 ms
55,880 KB
testcase_19 AC 116 ms
54,092 KB
testcase_20 AC 115 ms
53,768 KB
testcase_21 AC 103 ms
52,960 KB
testcase_22 AC 114 ms
54,012 KB
testcase_23 AC 120 ms
54,100 KB
testcase_24 AC 120 ms
53,864 KB
testcase_25 AC 120 ms
54,120 KB
testcase_26 AC 114 ms
54,016 KB
testcase_27 AC 116 ms
54,040 KB
testcase_28 AC 116 ms
53,868 KB
testcase_29 AC 103 ms
53,416 KB
testcase_30 AC 117 ms
54,144 KB
testcase_31 AC 116 ms
54,088 KB
testcase_32 AC 122 ms
54,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        double ans = 0.0;
        int [] array1 = {2, 3, 5, 7, 11, 13};
        int [] array2 = {4, 6, 8, 9, 10, 12};
        ArrayList<Integer> A = new ArrayList<>();
        for (int i = 0; i < array1.length; i++) {
            for (int j = 0; j < array2.length; j++) {
                A.add(array1[i] * array2[j]);
            }
        }
        int K = scan.nextInt();
        if (A.contains(K)) ans = 1.0 / (array1.length * array2.length);
        System.out.println(ans);
    }
}
0