結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー spaciaspacia
提出日時 2015-12-23 14:00:41
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 544 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 37,152 KB
最終ジャッジ日時 2024-09-18 21:43:57
合計ジャッジ時間 4,428 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,500 KB
testcase_01 AC 46 ms
36,884 KB
testcase_02 AC 45 ms
36,924 KB
testcase_03 AC 47 ms
36,760 KB
testcase_04 AC 48 ms
36,844 KB
testcase_05 AC 48 ms
36,760 KB
testcase_06 RE -
testcase_07 AC 48 ms
36,980 KB
testcase_08 AC 49 ms
36,820 KB
testcase_09 AC 50 ms
36,832 KB
testcase_10 AC 49 ms
36,748 KB
testcase_11 AC 48 ms
36,640 KB
testcase_12 AC 47 ms
36,904 KB
testcase_13 AC 47 ms
36,920 KB
testcase_14 AC 47 ms
36,468 KB
testcase_15 AC 46 ms
36,696 KB
testcase_16 AC 49 ms
36,720 KB
testcase_17 AC 51 ms
36,544 KB
testcase_18 AC 50 ms
36,944 KB
testcase_19 AC 49 ms
36,508 KB
testcase_20 AC 49 ms
36,460 KB
testcase_21 AC 47 ms
36,808 KB
testcase_22 AC 46 ms
36,516 KB
testcase_23 AC 47 ms
36,544 KB
testcase_24 AC 47 ms
36,800 KB
testcase_25 AC 48 ms
36,924 KB
testcase_26 AC 47 ms
36,828 KB
testcase_27 AC 45 ms
36,864 KB
testcase_28 AC 44 ms
36,924 KB
testcase_29 AC 45 ms
36,828 KB
testcase_30 AC 45 ms
36,540 KB
testcase_31 AC 43 ms
36,828 KB
testcase_32 AC 49 ms
36,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main211 {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int k = Integer.parseInt(br.readLine());
		int max = 200;
		int[] sum = new int[max];
		int[] dice1 = {2,3,5,7,11,13};
		int[] dice2 = {4,6,8,9,10,12};
		
		for (int d1 : dice1) {
			for (int d2 : dice2) {
				sum[d1 * d2]++;
			}
		}
		
		out((double)sum[k] / 36);
		
	}
}
0