結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー htensaihtensai
提出日時 2019-12-17 16:21:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 675 bytes
コンパイル時間 1,909 ms
コンパイル使用メモリ 75,196 KB
実行使用メモリ 50,372 KB
最終ジャッジ日時 2024-07-03 22:36:31
合計ジャッジ時間 3,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,340 KB
testcase_01 AC 53 ms
50,288 KB
testcase_02 AC 53 ms
50,280 KB
testcase_03 AC 53 ms
50,016 KB
testcase_04 AC 52 ms
50,372 KB
testcase_05 AC 52 ms
50,268 KB
testcase_06 AC 52 ms
50,332 KB
testcase_07 AC 53 ms
50,232 KB
testcase_08 AC 53 ms
50,340 KB
testcase_09 AC 53 ms
50,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int p = Integer.parseInt(first[0]);
        int c = Integer.parseInt(first[1]);
        int[] pArr = new int[]{2,3,5,7,11,13};
        int[] cArr = new int[]{4,6,8,9,10,12};
        double pEx = 0;
        double cEx = 0;
        for (int i = 0; i < 6; i++) {
            pEx += pArr[i] / 6.0;
            cEx += cArr[i] / 6.0;
        }
        System.out.println(Math.pow(pEx, p) * Math.pow(cEx, c));
    }
}
0