結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー fukuseifukusei
提出日時 2017-05-27 13:59:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 487 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 41,604 KB
最終ジャッジ日時 2024-09-21 14:32:04
合計ジャッジ時間 6,806 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,268 KB
testcase_01 AC 120 ms
41,596 KB
testcase_02 AC 120 ms
41,020 KB
testcase_03 AC 121 ms
41,376 KB
testcase_04 WA -
testcase_05 AC 102 ms
39,608 KB
testcase_06 AC 125 ms
41,604 KB
testcase_07 AC 122 ms
41,416 KB
testcase_08 AC 115 ms
40,900 KB
testcase_09 AC 120 ms
41,116 KB
testcase_10 AC 116 ms
40,636 KB
testcase_11 AC 105 ms
40,356 KB
testcase_12 AC 120 ms
40,956 KB
testcase_13 AC 126 ms
41,288 KB
testcase_14 AC 113 ms
40,000 KB
testcase_15 AC 121 ms
41,280 KB
testcase_16 AC 126 ms
41,480 KB
testcase_17 AC 118 ms
40,888 KB
testcase_18 AC 118 ms
41,152 KB
testcase_19 AC 113 ms
41,360 KB
testcase_20 AC 101 ms
40,252 KB
testcase_21 AC 102 ms
39,856 KB
testcase_22 AC 120 ms
41,192 KB
testcase_23 AC 118 ms
40,864 KB
testcase_24 AC 103 ms
40,004 KB
testcase_25 AC 123 ms
41,144 KB
testcase_26 AC 105 ms
40,432 KB
testcase_27 AC 106 ms
40,192 KB
testcase_28 AC 114 ms
41,072 KB
testcase_29 AC 118 ms
41,012 KB
testcase_30 AC 120 ms
41,324 KB
testcase_31 AC 116 ms
41,004 KB
testcase_32 AC 105 ms
40,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class test{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int K = sc.nextInt();
		int PrimeNumbers[] = {2,3,5,7,11,13}; 
		int SynthesisNumbers[] = {2,4,6,8,10,12};
		int count = 0;
		
		for(int i=0; i<PrimeNumbers.length; i++){
			for(int j=0; j<SynthesisNumbers.length; j++){
				if(PrimeNumbers[i] * SynthesisNumbers[j] == K){
					count++;
				}
			}
		}

		System.out.println(String.format("%.12f", (double)count/36));
		
	}
}
0