結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー marumaru
提出日時 2016-03-23 14:41:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 471 bytes
コンパイル時間 3,580 ms
コンパイル使用メモリ 74,152 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-06-25 22:52:09
合計ジャッジ時間 9,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,520 KB
testcase_01 AC 134 ms
41,512 KB
testcase_02 AC 134 ms
41,408 KB
testcase_03 AC 132 ms
41,624 KB
testcase_04 AC 133 ms
41,680 KB
testcase_05 AC 135 ms
41,240 KB
testcase_06 AC 131 ms
41,420 KB
testcase_07 AC 135 ms
41,424 KB
testcase_08 AC 133 ms
41,400 KB
testcase_09 AC 135 ms
41,140 KB
testcase_10 AC 133 ms
41,400 KB
testcase_11 AC 132 ms
41,160 KB
testcase_12 AC 134 ms
41,328 KB
testcase_13 AC 131 ms
41,420 KB
testcase_14 AC 135 ms
41,328 KB
testcase_15 AC 133 ms
41,400 KB
testcase_16 AC 134 ms
41,496 KB
testcase_17 AC 122 ms
40,336 KB
testcase_18 AC 134 ms
41,404 KB
testcase_19 AC 137 ms
41,488 KB
testcase_20 AC 134 ms
41,284 KB
testcase_21 AC 136 ms
41,064 KB
testcase_22 AC 120 ms
40,388 KB
testcase_23 AC 134 ms
41,152 KB
testcase_24 AC 134 ms
41,520 KB
testcase_25 AC 133 ms
41,424 KB
testcase_26 AC 133 ms
41,104 KB
testcase_27 AC 134 ms
41,364 KB
testcase_28 AC 135 ms
41,372 KB
testcase_29 AC 134 ms
41,212 KB
testcase_30 AC 133 ms
41,620 KB
testcase_31 AC 129 ms
41,420 KB
testcase_32 AC 130 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_211 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int k = stdIn.nextInt();
		
		int[] sosu = {2, 3, 5, 7, 11, 13};
		int[] gosei = {4, 6, 8, 9, 10, 12};
		
		int count = 0;
		
		for (int i = 0; i < sosu.length; i++) {
			for (int j = 0; j < gosei.length; j++) {
				if (sosu[i] * gosei[j] == k) {
					count++;
				}
			}
		}
		
		System.out.println((double) count / 36);
	}
}
0