結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー GrenacheGrenache
提出日時 2015-05-22 22:33:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 473 bytes
コンパイル時間 4,022 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-07-06 05:07:40
合計ジャッジ時間 5,688 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,440 KB
testcase_01 AC 99 ms
41,400 KB
testcase_02 AC 101 ms
41,352 KB
testcase_03 AC 98 ms
41,144 KB
testcase_04 AC 102 ms
41,040 KB
testcase_05 AC 102 ms
40,748 KB
testcase_06 AC 96 ms
40,968 KB
testcase_07 AC 102 ms
41,056 KB
testcase_08 AC 104 ms
41,260 KB
testcase_09 AC 100 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main_yukicoder212 {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int p = sc.nextInt();
		int c = sc.nextInt();

		int[] d1 = {2, 3, 5, 7, 11, 13};
		int[] d2 = {4, 6, 8, 9, 10, 12};

		double e1 = 0;
		double e2 = 0;
		for (int i = 0; i < 6; i++) {
			e1 += (double)d1[i] / 6;
			e2 += (double)d2[i] / 6;
		}
		
		System.out.println(Math.pow(e1, p) * Math.pow(e2,  c));
		
		sc.close();
	}
}
0