結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー spaciaspacia
提出日時 2015-12-23 14:03:00
言語 Java
(openjdk 23)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 548 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 37,104 KB
最終ジャッジ日時 2024-06-25 22:46:52
合計ジャッジ時間 4,858 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,748 KB
testcase_01 AC 51 ms
36,588 KB
testcase_02 AC 53 ms
36,960 KB
testcase_03 AC 52 ms
36,808 KB
testcase_04 AC 53 ms
36,740 KB
testcase_05 AC 50 ms
36,956 KB
testcase_06 AC 52 ms
36,968 KB
testcase_07 AC 53 ms
36,536 KB
testcase_08 AC 52 ms
36,940 KB
testcase_09 AC 52 ms
37,072 KB
testcase_10 AC 53 ms
36,872 KB
testcase_11 AC 53 ms
37,020 KB
testcase_12 AC 54 ms
37,104 KB
testcase_13 AC 52 ms
36,628 KB
testcase_14 AC 53 ms
36,644 KB
testcase_15 AC 51 ms
36,748 KB
testcase_16 AC 52 ms
36,824 KB
testcase_17 AC 53 ms
36,928 KB
testcase_18 AC 53 ms
36,832 KB
testcase_19 AC 52 ms
36,572 KB
testcase_20 AC 52 ms
36,724 KB
testcase_21 AC 52 ms
36,648 KB
testcase_22 AC 51 ms
36,984 KB
testcase_23 AC 52 ms
36,740 KB
testcase_24 AC 51 ms
36,888 KB
testcase_25 AC 51 ms
36,732 KB
testcase_26 AC 52 ms
37,068 KB
testcase_27 AC 51 ms
36,520 KB
testcase_28 AC 52 ms
36,792 KB
testcase_29 AC 51 ms
36,796 KB
testcase_30 AC 52 ms
36,980 KB
testcase_31 AC 51 ms
36,536 KB
testcase_32 AC 51 ms
37,072 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 + 1];
		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