結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-30 14:43:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 65 ms / 1,000 ms
コード長 857 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 50,592 KB
最終ジャッジ日時 2024-06-25 23:31:04
合計ジャッジ時間 5,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
50,264 KB
testcase_01 AC 58 ms
50,300 KB
testcase_02 AC 59 ms
50,276 KB
testcase_03 AC 58 ms
49,880 KB
testcase_04 AC 60 ms
50,156 KB
testcase_05 AC 59 ms
50,288 KB
testcase_06 AC 58 ms
50,148 KB
testcase_07 AC 59 ms
50,000 KB
testcase_08 AC 61 ms
50,180 KB
testcase_09 AC 59 ms
50,336 KB
testcase_10 AC 65 ms
50,100 KB
testcase_11 AC 61 ms
50,004 KB
testcase_12 AC 57 ms
50,008 KB
testcase_13 AC 59 ms
49,916 KB
testcase_14 AC 58 ms
50,112 KB
testcase_15 AC 59 ms
50,044 KB
testcase_16 AC 57 ms
50,168 KB
testcase_17 AC 58 ms
50,276 KB
testcase_18 AC 59 ms
50,592 KB
testcase_19 AC 60 ms
50,284 KB
testcase_20 AC 59 ms
50,232 KB
testcase_21 AC 58 ms
50,204 KB
testcase_22 AC 58 ms
50,292 KB
testcase_23 AC 59 ms
49,992 KB
testcase_24 AC 60 ms
50,292 KB
testcase_25 AC 59 ms
50,184 KB
testcase_26 AC 63 ms
50,064 KB
testcase_27 AC 62 ms
50,288 KB
testcase_28 AC 63 ms
50,212 KB
testcase_29 AC 62 ms
49,716 KB
testcase_30 AC 60 ms
49,872 KB
testcase_31 AC 57 ms
49,856 KB
testcase_32 AC 56 ms
50,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;


public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int K = Integer.parseInt(reader.readLine());
        int[] primes = new int[]{2, 3, 5, 7, 11, 13};
        int[] composites = new int[]{4, 6, 8, 9, 10, 12};
        double totalCombinations = 36;
        int counter = 0;
        for (int i = 0; i < 6; i++) {
            int x = primes[i];
            for (int j = 0; j < 6; j++) {
                int y = composites[j];
                if ((K%x) == 0 && y == K / x) {
                    counter+=1;
                }
            }
        }
        System.out.println(counter/totalCombinations);
    }
}
0