結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー YOSHIYOSHI
提出日時 2021-03-06 12:43:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 543 bytes
コンパイル時間 5,136 ms
コンパイル使用メモリ 73,532 KB
実行使用メモリ 37,248 KB
最終ジャッジ日時 2024-10-08 09:39:55
合計ジャッジ時間 8,596 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
36,892 KB
testcase_01 AC 59 ms
37,248 KB
testcase_02 AC 60 ms
36,712 KB
testcase_03 AC 61 ms
36,952 KB
testcase_04 AC 64 ms
37,120 KB
testcase_05 AC 63 ms
36,948 KB
testcase_06 AC 65 ms
36,792 KB
testcase_07 AC 65 ms
36,860 KB
testcase_08 AC 63 ms
36,728 KB
testcase_09 AC 62 ms
36,988 KB
testcase_10 AC 64 ms
36,724 KB
testcase_11 AC 63 ms
36,912 KB
testcase_12 AC 65 ms
36,964 KB
testcase_13 AC 61 ms
36,896 KB
testcase_14 AC 63 ms
36,808 KB
testcase_15 AC 65 ms
36,820 KB
testcase_16 AC 64 ms
36,804 KB
testcase_17 AC 64 ms
36,792 KB
testcase_18 AC 63 ms
36,672 KB
testcase_19 AC 64 ms
36,816 KB
testcase_20 AC 64 ms
36,776 KB
testcase_21 AC 63 ms
36,684 KB
testcase_22 AC 62 ms
36,732 KB
testcase_23 AC 63 ms
36,892 KB
testcase_24 AC 62 ms
36,796 KB
testcase_25 AC 62 ms
36,988 KB
testcase_26 AC 64 ms
36,744 KB
testcase_27 AC 63 ms
37,120 KB
testcase_28 AC 63 ms
36,684 KB
testcase_29 AC 62 ms
36,860 KB
testcase_30 AC 64 ms
36,708 KB
testcase_31 AC 66 ms
36,664 KB
testcase_32 AC 62 ms
36,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000211_Main {

	public static void main(String[] args) throws IOException {

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

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int cnt = 0;
		int k = Integer.parseInt(br.readLine());
		for(int i = 0; i < 6; i++) {
			for(int j = 0; j < 6; j++) {
				if(k == a[i] * b[j]) {
					cnt++;
				}
			}
		}
		System.out.println((double)cnt / 36);
	}
}
0