結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー jimanojimano
提出日時 2018-01-20 13:35:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 615 bytes
コンパイル時間 2,914 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 37,328 KB
最終ジャッジ日時 2024-06-25 23:44:15
合計ジャッジ時間 5,765 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,988 KB
testcase_01 AC 54 ms
37,008 KB
testcase_02 AC 53 ms
37,172 KB
testcase_03 AC 53 ms
37,000 KB
testcase_04 AC 53 ms
37,136 KB
testcase_05 AC 53 ms
36,964 KB
testcase_06 AC 53 ms
36,764 KB
testcase_07 AC 53 ms
36,624 KB
testcase_08 AC 53 ms
36,852 KB
testcase_09 AC 53 ms
37,100 KB
testcase_10 AC 54 ms
37,052 KB
testcase_11 AC 54 ms
37,160 KB
testcase_12 AC 56 ms
37,064 KB
testcase_13 AC 52 ms
37,040 KB
testcase_14 AC 52 ms
36,984 KB
testcase_15 AC 53 ms
36,764 KB
testcase_16 AC 52 ms
37,196 KB
testcase_17 AC 52 ms
36,616 KB
testcase_18 AC 53 ms
36,984 KB
testcase_19 AC 52 ms
36,968 KB
testcase_20 AC 53 ms
36,880 KB
testcase_21 AC 53 ms
36,764 KB
testcase_22 AC 54 ms
37,192 KB
testcase_23 AC 54 ms
37,180 KB
testcase_24 AC 54 ms
36,628 KB
testcase_25 AC 52 ms
37,104 KB
testcase_26 AC 53 ms
36,908 KB
testcase_27 AC 53 ms
37,008 KB
testcase_28 AC 55 ms
37,328 KB
testcase_29 AC 53 ms
36,996 KB
testcase_30 AC 54 ms
36,916 KB
testcase_31 AC 53 ms
36,748 KB
testcase_32 AC 53 ms
36,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0211 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in));) {
			int K = Integer.parseInt(br.readLine());
			int[] prime = { 2, 3, 5, 7, 11, 13 };
			int[] composite = { 4, 6, 8, 9, 10, 12 };
			int cnt = 0;

			for (int p : prime) {
				for (int c : composite) {
					if (p * c == K)
						cnt++;
				}
			}
			System.out.println((double)cnt/36);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0