結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー ffmm00ffmm00
提出日時 2015-06-01 17:33:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 432 bytes
コンパイル時間 3,509 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-07-06 13:14:25
合計ジャッジ時間 7,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,836 KB
testcase_01 AC 111 ms
52,812 KB
testcase_02 WA -
testcase_03 AC 99 ms
52,824 KB
testcase_04 AC 102 ms
52,532 KB
testcase_05 AC 101 ms
52,676 KB
testcase_06 AC 118 ms
53,680 KB
testcase_07 AC 115 ms
53,664 KB
testcase_08 WA -
testcase_09 AC 114 ms
53,652 KB
testcase_10 AC 100 ms
52,372 KB
testcase_11 AC 111 ms
53,736 KB
testcase_12 AC 102 ms
52,820 KB
testcase_13 AC 118 ms
53,840 KB
testcase_14 AC 113 ms
53,756 KB
testcase_15 AC 111 ms
53,836 KB
testcase_16 AC 109 ms
53,736 KB
testcase_17 WA -
testcase_18 AC 121 ms
53,984 KB
testcase_19 AC 112 ms
54,036 KB
testcase_20 AC 109 ms
53,664 KB
testcase_21 AC 100 ms
53,888 KB
testcase_22 AC 120 ms
53,520 KB
testcase_23 AC 97 ms
52,912 KB
testcase_24 AC 112 ms
54,100 KB
testcase_25 AC 116 ms
53,900 KB
testcase_26 AC 105 ms
52,892 KB
testcase_27 AC 100 ms
52,556 KB
testcase_28 AC 106 ms
52,800 KB
testcase_29 AC 105 ms
52,844 KB
testcase_30 AC 112 ms
53,840 KB
testcase_31 AC 110 ms
53,636 KB
testcase_32 AC 99 ms
52,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N211 {

	public static void main(String[] args) {
		Scanner sca = new Scanner(System.in);
		int K = sca.nextInt();
		int[] so = { 2, 3, 5, 7, 11, 13 };
		int[] go = { 4, 6, 8, 9, 10, 12 };

		for (int i = 0; i < 6; i++) {
			for (int j = 0; j < 6; j++) {
				if (so[i] * go[j] == K) {
					System.out.println(0.0277777777777777778);
					return;
				}
			}
		}

		System.out.println(0);
	}

}
0