結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー rf141rf141
提出日時 2015-07-24 21:58:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 361 bytes
コンパイル時間 3,278 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 41,892 KB
最終ジャッジ日時 2024-07-08 13:05:50
合計ジャッジ時間 4,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,596 KB
testcase_01 AC 124 ms
41,516 KB
testcase_02 AC 127 ms
41,636 KB
testcase_03 AC 122 ms
41,652 KB
testcase_04 AC 123 ms
41,480 KB
testcase_05 AC 134 ms
41,480 KB
testcase_06 AC 124 ms
41,892 KB
testcase_07 AC 113 ms
41,704 KB
testcase_08 AC 129 ms
41,504 KB
testcase_09 AC 125 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class preNum{
    public static void main(String... args){
        Scanner s = new Scanner(System.in);
        double P = s.nextDouble();
        double C = s.nextDouble();
        double pre=(double)(2+3+5+7+11+13)/(double)6,mix=(double)(4+6+8+9+10+12)/(double)6;
         System.out.println(Math.pow(pre,P)*Math.pow(mix,C));
    }
}
0