結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー HEGO55HEGO55
提出日時 2017-05-27 14:11:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 75,364 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-09-21 14:33:46
合計ジャッジ時間 6,714 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,036 KB
testcase_01 AC 115 ms
41,336 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 113 ms
41,140 KB
testcase_07 AC 118 ms
41,324 KB
testcase_08 WA -
testcase_09 AC 118 ms
41,284 KB
testcase_10 AC 117 ms
40,944 KB
testcase_11 WA -
testcase_12 AC 120 ms
41,296 KB
testcase_13 AC 118 ms
41,156 KB
testcase_14 AC 118 ms
40,940 KB
testcase_15 AC 118 ms
41,484 KB
testcase_16 AC 112 ms
40,504 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 109 ms
40,176 KB
testcase_20 AC 106 ms
40,000 KB
testcase_21 AC 103 ms
39,604 KB
testcase_22 AC 104 ms
40,328 KB
testcase_23 AC 107 ms
40,260 KB
testcase_24 AC 116 ms
41,152 KB
testcase_25 AC 116 ms
41,328 KB
testcase_26 AC 123 ms
40,552 KB
testcase_27 AC 108 ms
39,928 KB
testcase_28 AC 118 ms
41,468 KB
testcase_29 AC 114 ms
40,944 KB
testcase_30 AC 115 ms
41,152 KB
testcase_31 AC 115 ms
41,312 KB
testcase_32 AC 109 ms
40,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class No211{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		int[] sosu = {2,3,5,7,11,13};
		int[] gose = {4,6,8,9,10,12};
		int K = sc.nextInt();
		int count = 0;
		
		for(int i=0; i<sosu.length; i++){
			for(int k=0; k<gose.length; k++){
				if(sosu[i]*gose[i] == K){
					count++;
				}
			}
		}
		
		System.out.println(String.format("%.12f",(double)count/36));
	}
}
0