結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-18 02:46:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 359 bytes
コンパイル時間 1,865 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 41,824 KB
最終ジャッジ日時 2024-05-04 15:18:21
合計ジャッジ時間 3,667 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,460 KB
testcase_01 AC 116 ms
41,784 KB
testcase_02 AC 107 ms
41,692 KB
testcase_03 AC 104 ms
41,824 KB
testcase_04 AC 105 ms
41,524 KB
testcase_05 AC 107 ms
41,788 KB
testcase_06 AC 116 ms
41,688 KB
testcase_07 AC 98 ms
41,464 KB
testcase_08 AC 114 ms
41,664 KB
testcase_09 AC 118 ms
41,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int P = sc.nextInt();
        double a = (2+3+5+7+11+13)/6.0;
        int C = sc.nextInt();
        double b = (4+6+8+9+10+12)/6.0;
        double r = Math.pow(a,P) * Math.pow(b,C);
        System.out.println(r);
    }
}
0