結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー tentententen
提出日時 2020-10-15 19:42:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 244 bytes
コンパイル時間 1,769 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-07-20 19:54:24
合計ジャッジ時間 3,470 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,336 KB
testcase_01 AC 102 ms
40,308 KB
testcase_02 AC 101 ms
40,288 KB
testcase_03 AC 118 ms
41,564 KB
testcase_04 AC 114 ms
41,424 KB
testcase_05 AC 112 ms
41,440 KB
testcase_06 AC 109 ms
40,884 KB
testcase_07 AC 112 ms
41,180 KB
testcase_08 AC 116 ms
41,312 KB
testcase_09 AC 99 ms
40,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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