結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-25 10:41:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 1,000 ms
コード長 581 bytes
コンパイル時間 2,308 ms
コンパイル使用メモリ 75,504 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-06-25 23:24:13
合計ジャッジ時間 8,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,376 KB
testcase_01 AC 145 ms
41,288 KB
testcase_02 AC 146 ms
41,556 KB
testcase_03 AC 144 ms
41,276 KB
testcase_04 AC 146 ms
41,528 KB
testcase_05 AC 142 ms
41,224 KB
testcase_06 AC 139 ms
41,244 KB
testcase_07 AC 144 ms
41,236 KB
testcase_08 AC 145 ms
41,644 KB
testcase_09 AC 144 ms
41,104 KB
testcase_10 AC 145 ms
41,416 KB
testcase_11 AC 144 ms
41,448 KB
testcase_12 AC 142 ms
41,592 KB
testcase_13 AC 146 ms
40,372 KB
testcase_14 AC 147 ms
41,504 KB
testcase_15 AC 146 ms
41,180 KB
testcase_16 AC 145 ms
41,312 KB
testcase_17 AC 144 ms
41,164 KB
testcase_18 AC 144 ms
41,348 KB
testcase_19 AC 141 ms
41,312 KB
testcase_20 AC 152 ms
41,156 KB
testcase_21 AC 142 ms
41,144 KB
testcase_22 AC 144 ms
41,320 KB
testcase_23 AC 140 ms
41,104 KB
testcase_24 AC 144 ms
41,340 KB
testcase_25 AC 144 ms
41,060 KB
testcase_26 AC 146 ms
41,136 KB
testcase_27 AC 141 ms
41,368 KB
testcase_28 AC 142 ms
41,124 KB
testcase_29 AC 144 ms
41,400 KB
testcase_30 AC 143 ms
41,028 KB
testcase_31 AC 145 ms
41,328 KB
testcase_32 AC 141 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int k = in.nextInt();

        int[] sosu = {2, 3, 5, 7, 11, 13};
        int[] gousei = {4, 6, 8, 9, 10, 12};

        double count = 0.0;

        for(int i=0; i<6; i++) {
            for(int j=0; j<6; j++) {
                if(k == sosu[i] * gousei[j]) count++;
            }
        }

        System.out.println(count / 36.0);

        in.close();
    }
}
0