結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー HEGO55HEGO55
提出日時 2017-05-27 14:13:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 1,000 ms
コード長 426 bytes
コンパイル時間 2,503 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-06-25 23:32:01
合計ジャッジ時間 8,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,756 KB
testcase_01 AC 135 ms
41,180 KB
testcase_02 AC 137 ms
41,544 KB
testcase_03 AC 136 ms
41,240 KB
testcase_04 AC 142 ms
41,280 KB
testcase_05 AC 135 ms
41,412 KB
testcase_06 AC 136 ms
41,496 KB
testcase_07 AC 137 ms
41,572 KB
testcase_08 AC 136 ms
41,296 KB
testcase_09 AC 137 ms
41,236 KB
testcase_10 AC 135 ms
41,240 KB
testcase_11 AC 139 ms
41,460 KB
testcase_12 AC 141 ms
41,464 KB
testcase_13 AC 139 ms
41,208 KB
testcase_14 AC 140 ms
41,424 KB
testcase_15 AC 140 ms
41,416 KB
testcase_16 AC 140 ms
41,396 KB
testcase_17 AC 139 ms
41,328 KB
testcase_18 AC 140 ms
41,332 KB
testcase_19 AC 138 ms
41,288 KB
testcase_20 AC 145 ms
41,204 KB
testcase_21 AC 141 ms
41,544 KB
testcase_22 AC 142 ms
41,524 KB
testcase_23 AC 137 ms
41,084 KB
testcase_24 AC 141 ms
41,756 KB
testcase_25 AC 140 ms
41,480 KB
testcase_26 AC 143 ms
41,284 KB
testcase_27 AC 142 ms
41,604 KB
testcase_28 AC 141 ms
41,396 KB
testcase_29 AC 143 ms
41,280 KB
testcase_30 AC 142 ms
41,236 KB
testcase_31 AC 141 ms
41,524 KB
testcase_32 AC 143 ms
41,264 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[k] == K){
					count++;
				}
			}
		}
		
		System.out.println(String.format("%.12f",(double)count/36));
	}
}
0