結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,116 KB
testcase_01 AC 112 ms
40,892 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 106 ms
40,476 KB
testcase_07 AC 117 ms
41,608 KB
testcase_08 WA -
testcase_09 AC 101 ms
40,252 KB
testcase_10 AC 108 ms
39,436 KB
testcase_11 WA -
testcase_12 AC 114 ms
41,336 KB
testcase_13 AC 103 ms
40,008 KB
testcase_14 AC 108 ms
40,820 KB
testcase_15 AC 112 ms
41,192 KB
testcase_16 AC 117 ms
41,276 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 100 ms
39,860 KB
testcase_20 AC 115 ms
41,160 KB
testcase_21 AC 106 ms
39,920 KB
testcase_22 AC 101 ms
39,912 KB
testcase_23 AC 111 ms
41,096 KB
testcase_24 AC 115 ms
40,896 KB
testcase_25 AC 120 ms
41,148 KB
testcase_26 AC 117 ms
40,884 KB
testcase_27 AC 113 ms
41,504 KB
testcase_28 AC 115 ms
41,316 KB
testcase_29 AC 108 ms
39,728 KB
testcase_30 AC 113 ms
41,008 KB
testcase_31 AC 115 ms
40,976 KB
testcase_32 AC 116 ms
41,184 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++;
				}
			}
		}
		
		double pro = count/36.;
		System.out.println(pro);
	}
}
0