結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー tsunabittsunabit
提出日時 2020-03-16 17:36:28
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 276 bytes
コンパイル時間 4,455 ms
コンパイル使用メモリ 73,872 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-11-28 02:56:10
合計ジャッジ時間 5,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,276 KB
testcase_01 AC 117 ms
41,248 KB
testcase_02 AC 122 ms
41,040 KB
testcase_03 AC 114 ms
39,900 KB
testcase_04 AC 122 ms
41,276 KB
testcase_05 AC 115 ms
40,092 KB
testcase_06 AC 116 ms
40,060 KB
testcase_07 AC 127 ms
41,276 KB
testcase_08 AC 125 ms
41,512 KB
testcase_09 AC 107 ms
41,488 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