結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー jimanojimano
提出日時 2018-01-20 13:33:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 760 bytes
コンパイル時間 3,497 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 50,828 KB
最終ジャッジ日時 2024-06-25 23:44:05
合計ジャッジ時間 6,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,748 KB
testcase_01 AC 58 ms
50,760 KB
testcase_02 AC 57 ms
50,596 KB
testcase_03 AC 60 ms
50,828 KB
testcase_04 AC 58 ms
50,720 KB
testcase_05 AC 59 ms
50,732 KB
testcase_06 AC 61 ms
50,736 KB
testcase_07 AC 59 ms
50,616 KB
testcase_08 AC 61 ms
50,744 KB
testcase_09 AC 57 ms
50,788 KB
testcase_10 AC 58 ms
50,700 KB
testcase_11 AC 60 ms
50,612 KB
testcase_12 AC 59 ms
50,732 KB
testcase_13 AC 60 ms
50,260 KB
testcase_14 AC 58 ms
50,512 KB
testcase_15 AC 57 ms
50,724 KB
testcase_16 AC 57 ms
50,576 KB
testcase_17 AC 60 ms
50,728 KB
testcase_18 AC 60 ms
50,708 KB
testcase_19 AC 61 ms
50,484 KB
testcase_20 AC 58 ms
50,748 KB
testcase_21 AC 60 ms
50,396 KB
testcase_22 AC 57 ms
50,704 KB
testcase_23 AC 57 ms
50,232 KB
testcase_24 AC 58 ms
50,588 KB
testcase_25 AC 57 ms
50,600 KB
testcase_26 AC 56 ms
50,728 KB
testcase_27 AC 58 ms
50,680 KB
testcase_28 AC 57 ms
50,716 KB
testcase_29 AC 59 ms
50,760 KB
testcase_30 AC 64 ms
50,712 KB
testcase_31 AC 59 ms
50,792 KB
testcase_32 AC 58 ms
50,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigDecimal;
import java.math.RoundingMode;

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;
			BigDecimal ans;

			for (int p : prime) {
				for (int c : composite) {
					if (p * c == K)
						cnt++;
				}
			}
			ans = new BigDecimal((double)cnt/36).setScale(12, RoundingMode.HALF_UP);

			System.out.println(ans);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0