結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー tentententen
提出日時 2020-11-11 08:35:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 508 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 52,384 KB
最終ジャッジ日時 2024-07-22 18:18:38
合計ジャッジ時間 8,070 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
51,532 KB
testcase_01 AC 133 ms
52,016 KB
testcase_02 AC 132 ms
51,664 KB
testcase_03 AC 132 ms
51,896 KB
testcase_04 AC 134 ms
51,668 KB
testcase_05 AC 135 ms
52,028 KB
testcase_06 AC 132 ms
52,032 KB
testcase_07 AC 134 ms
51,656 KB
testcase_08 AC 137 ms
52,040 KB
testcase_09 AC 132 ms
52,384 KB
testcase_10 AC 137 ms
52,020 KB
testcase_11 AC 133 ms
51,684 KB
testcase_12 AC 133 ms
51,788 KB
testcase_13 AC 133 ms
51,900 KB
testcase_14 AC 135 ms
52,020 KB
testcase_15 AC 133 ms
51,656 KB
testcase_16 AC 134 ms
51,836 KB
testcase_17 AC 133 ms
51,904 KB
testcase_18 AC 132 ms
51,908 KB
testcase_19 AC 134 ms
51,624 KB
testcase_20 AC 139 ms
51,968 KB
testcase_21 AC 131 ms
51,976 KB
testcase_22 AC 135 ms
51,664 KB
testcase_23 AC 133 ms
51,908 KB
testcase_24 AC 134 ms
52,024 KB
testcase_25 AC 135 ms
52,144 KB
testcase_26 AC 137 ms
52,012 KB
testcase_27 AC 133 ms
51,756 KB
testcase_28 AC 138 ms
52,176 KB
testcase_29 AC 135 ms
52,012 KB
testcase_30 AC 132 ms
51,884 KB
testcase_31 AC 131 ms
51,716 KB
testcase_32 AC 131 ms
52,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int k = sc.nextInt();
        double[] ans = new double[201];
        int[] dice1 = new int[]{2, 3, 5, 7, 11, 13};
        int[] dice2 = new int[]{4, 6, 8, 9, 10, 12};
        for (int i = 0; i < 6; i++) {
            for (int j = 0; j < 6; j++) {
                ans[dice1[i] * dice2[j]] += 1.0 / 36;
            }
        }
        System.out.println(ans[k]);
    }
}
0