結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-31 21:13:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 1,000 ms
コード長 843 bytes
コンパイル時間 4,710 ms
コンパイル使用メモリ 78,768 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-06-25 23:42:30
合計ジャッジ時間 9,916 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,500 KB
testcase_01 AC 138 ms
41,256 KB
testcase_02 AC 135 ms
41,496 KB
testcase_03 AC 133 ms
41,388 KB
testcase_04 AC 136 ms
41,404 KB
testcase_05 AC 137 ms
41,208 KB
testcase_06 AC 139 ms
41,576 KB
testcase_07 AC 137 ms
41,304 KB
testcase_08 AC 137 ms
41,556 KB
testcase_09 AC 137 ms
41,388 KB
testcase_10 AC 137 ms
41,308 KB
testcase_11 AC 142 ms
41,344 KB
testcase_12 AC 138 ms
41,652 KB
testcase_13 AC 136 ms
41,460 KB
testcase_14 AC 135 ms
41,652 KB
testcase_15 AC 136 ms
41,368 KB
testcase_16 AC 136 ms
41,544 KB
testcase_17 AC 136 ms
41,288 KB
testcase_18 AC 137 ms
41,428 KB
testcase_19 AC 136 ms
41,624 KB
testcase_20 AC 135 ms
41,416 KB
testcase_21 AC 136 ms
41,512 KB
testcase_22 AC 136 ms
41,372 KB
testcase_23 AC 136 ms
41,588 KB
testcase_24 AC 137 ms
41,236 KB
testcase_25 AC 137 ms
41,332 KB
testcase_26 AC 151 ms
41,628 KB
testcase_27 AC 120 ms
40,128 KB
testcase_28 AC 132 ms
41,152 KB
testcase_29 AC 134 ms
41,224 KB
testcase_30 AC 137 ms
41,240 KB
testcase_31 AC 122 ms
40,064 KB
testcase_32 AC 132 ms
41,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class No211 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int num = s.nextInt();
        int[] primes = {2, 3, 5, 7, 11, 13};
        int[] composites = {4, 6, 8, 9, 10, 12};
        Map<Integer, Double> map = new HashMap<>();
        for (int prime : primes) {
            for (int composite : composites) {
                int tmp = prime * composite;
                if (map.containsKey(tmp)) {
                    map.put(tmp, map.get(tmp) + 1);
                } else {
                    map.put(tmp, 1d);
                }
            }
        }
        double prop = 0L;
        if (map.containsKey(num)) {
            prop = map.get(num) / 36;
        }
        System.out.println(prop);
    }
}
0