結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-24 22:06:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 641 bytes
コンパイル時間 3,079 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 50,376 KB
最終ジャッジ日時 2024-06-25 23:41:29
合計ジャッジ時間 5,892 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,152 KB
testcase_01 AC 51 ms
50,252 KB
testcase_02 AC 52 ms
50,036 KB
testcase_03 AC 56 ms
50,276 KB
testcase_04 AC 52 ms
50,216 KB
testcase_05 AC 53 ms
50,296 KB
testcase_06 AC 54 ms
50,268 KB
testcase_07 AC 52 ms
50,308 KB
testcase_08 AC 51 ms
50,292 KB
testcase_09 AC 52 ms
50,376 KB
testcase_10 AC 51 ms
49,780 KB
testcase_11 AC 52 ms
50,248 KB
testcase_12 AC 53 ms
50,368 KB
testcase_13 AC 51 ms
50,256 KB
testcase_14 AC 53 ms
50,156 KB
testcase_15 AC 51 ms
50,032 KB
testcase_16 AC 53 ms
50,312 KB
testcase_17 AC 52 ms
50,284 KB
testcase_18 AC 52 ms
50,284 KB
testcase_19 AC 52 ms
50,372 KB
testcase_20 AC 53 ms
49,908 KB
testcase_21 AC 53 ms
50,208 KB
testcase_22 AC 52 ms
50,368 KB
testcase_23 AC 53 ms
50,028 KB
testcase_24 AC 54 ms
50,064 KB
testcase_25 AC 53 ms
49,976 KB
testcase_26 AC 53 ms
49,912 KB
testcase_27 AC 53 ms
50,316 KB
testcase_28 AC 54 ms
50,008 KB
testcase_29 AC 55 ms
50,264 KB
testcase_30 AC 51 ms
50,260 KB
testcase_31 AC 52 ms
50,040 KB
testcase_32 AC 53 ms
50,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class No211{
    public static void main(String[] args) throws IOException{
        String str = new BufferedReader(new InputStreamReader(System.in)).readLine();
        int k = Integer.parseInt(str);
        int[] pnd = {2,3,5,7,11,13};
        int[] cnd = {4,6,8,9,10,12};
        int count  = 0;
        for(int i=0; i < 6; i++){
            for(int j=0; j < 6; j++){
                if(pnd[i] * cnd[j] == k){
                    count++;
                    break;
                }
            }
        }
        if(count == 0) System.out.println(0);
        else System.out.println((double)count/36);
    }
}
0