結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー tsunabittsunabit
提出日時 2020-03-16 17:36:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 276 bytes
コンパイル時間 3,094 ms
コンパイル使用メモリ 73,712 KB
実行使用メモリ 41,308 KB
最終ジャッジ日時 2024-05-06 01:05:34
合計ジャッジ時間 5,094 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,928 KB
testcase_01 AC 111 ms
40,416 KB
testcase_02 AC 115 ms
41,008 KB
testcase_03 AC 119 ms
40,948 KB
testcase_04 AC 117 ms
41,140 KB
testcase_05 AC 120 ms
40,956 KB
testcase_06 AC 124 ms
41,308 KB
testcase_07 AC 114 ms
40,864 KB
testcase_08 AC 108 ms
41,028 KB
testcase_09 AC 104 ms
40,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No212 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int p = sc.nextInt(), c = sc.nextInt();
		System.out.println(Math.pow(41.0/6.0, p) * Math.pow(49.0/6.0, c));
	}
}
0