結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー happy-beanshappy-beans
提出日時 2017-03-15 03:49:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 3,265 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-06-30 00:47:41
合計ジャッジ時間 5,165 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,052 KB
testcase_01 AC 129 ms
41,372 KB
testcase_02 AC 130 ms
41,392 KB
testcase_03 AC 130 ms
41,108 KB
testcase_04 AC 128 ms
41,132 KB
testcase_05 AC 129 ms
41,248 KB
testcase_06 AC 128 ms
41,124 KB
testcase_07 AC 129 ms
41,400 KB
testcase_08 AC 128 ms
41,124 KB
testcase_09 AC 130 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No212 {

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

}
0