結果

問題 No.959 tree and fire
ユーザー 37zigen37zigen
提出日時 2020-03-18 22:59:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 1,033 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 78,308 KB
実行使用メモリ 42,084 KB
最終ジャッジ日時 2024-05-08 02:49:24
合計ジャッジ時間 12,134 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,556 KB
testcase_01 AC 137 ms
41,788 KB
testcase_02 AC 135 ms
41,524 KB
testcase_03 AC 137 ms
41,500 KB
testcase_04 AC 141 ms
41,600 KB
testcase_05 AC 136 ms
41,504 KB
testcase_06 AC 139 ms
41,516 KB
testcase_07 AC 139 ms
41,284 KB
testcase_08 AC 136 ms
41,716 KB
testcase_09 AC 139 ms
41,556 KB
testcase_10 AC 138 ms
41,600 KB
testcase_11 AC 140 ms
41,372 KB
testcase_12 AC 140 ms
41,512 KB
testcase_13 AC 136 ms
41,500 KB
testcase_14 AC 123 ms
41,764 KB
testcase_15 AC 134 ms
41,632 KB
testcase_16 AC 147 ms
41,784 KB
testcase_17 AC 140 ms
41,648 KB
testcase_18 AC 136 ms
41,712 KB
testcase_19 AC 141 ms
41,784 KB
testcase_20 AC 142 ms
41,564 KB
testcase_21 AC 136 ms
41,820 KB
testcase_22 AC 136 ms
41,804 KB
testcase_23 AC 121 ms
40,912 KB
testcase_24 AC 147 ms
41,780 KB
testcase_25 AC 140 ms
41,776 KB
testcase_26 AC 138 ms
42,084 KB
testcase_27 AC 139 ms
41,788 KB
testcase_28 AC 133 ms
41,156 KB
testcase_29 AC 129 ms
41,648 KB
testcase_30 AC 142 ms
41,904 KB
testcase_31 AC 139 ms
41,804 KB
testcase_32 AC 140 ms
41,804 KB
testcase_33 AC 134 ms
40,872 KB
testcase_34 AC 135 ms
41,864 KB
testcase_35 AC 135 ms
41,928 KB
testcase_36 AC 141 ms
41,528 KB
testcase_37 AC 138 ms
41,636 KB
testcase_38 AC 144 ms
41,660 KB
testcase_39 AC 143 ms
41,592 KB
testcase_40 AC 144 ms
41,812 KB
testcase_41 AC 133 ms
40,828 KB
testcase_42 AC 137 ms
41,756 KB
testcase_43 AC 141 ms
41,924 KB
testcase_44 AC 138 ms
41,804 KB
testcase_45 AC 139 ms
41,688 KB
testcase_46 AC 140 ms
41,480 KB
testcase_47 AC 135 ms
41,896 KB
testcase_48 AC 137 ms
41,552 KB
testcase_49 AC 137 ms
42,060 KB
testcase_50 AC 141 ms
41,860 KB
testcase_51 AC 139 ms
41,776 KB
testcase_52 AC 137 ms
41,532 KB
testcase_53 AC 144 ms
41,492 KB
testcase_54 AC 148 ms
41,548 KB
testcase_55 AC 135 ms
41,544 KB
testcase_56 AC 140 ms
41,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.Scanner;

class Main {

	public static void main(String[] args) {
		new Main().run();
	}
	
	double pow(double a,long n) {
		double ret=1;
		for(;n>0;n/=2,a*=a)if(n%2==1)ret*=a;
		return ret;
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		long n=sc.nextInt();
		long m=sc.nextInt();
		double p=sc.nextDouble();
		long center=Math.max(n-2, 0)*Math.max(m-2, 0);
		long lateral_side=Math.max(m-2,0)*Math.min(n,2);
		long vertical_side=Math.max(n-2, 0)*Math.min(m,2);
		long corner=Math.min(2, n)*Math.min(2, m);
		long area_center=5;
		long area_corner=1+Math.min(n-1,1)+Math.min(m-1,1);
		long area_lateral_side=3+Math.min(n-1, 1);
		long area_vertical_side=3+Math.min(m-1, 1);
		System.out.println(center*pow(p,area_center)+corner*pow(p,area_corner)+lateral_side*pow(p,area_lateral_side)+vertical_side*pow(p,area_vertical_side));
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0