結果

問題 No.959 tree and fire
ユーザー 37zigen37zigen
提出日時 2020-03-18 22:59:23
言語 Java
(openjdk 23)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 1,033 bytes
コンパイル時間 2,285 ms
コンパイル使用メモリ 79,704 KB
実行使用メモリ 54,688 KB
最終ジャッジ日時 2024-12-14 02:40:32
合計ジャッジ時間 12,163 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
54,232 KB
testcase_01 AC 142 ms
54,528 KB
testcase_02 AC 144 ms
54,268 KB
testcase_03 AC 152 ms
54,196 KB
testcase_04 AC 152 ms
54,556 KB
testcase_05 AC 140 ms
54,612 KB
testcase_06 AC 140 ms
54,272 KB
testcase_07 AC 141 ms
54,324 KB
testcase_08 AC 155 ms
54,188 KB
testcase_09 AC 158 ms
54,624 KB
testcase_10 AC 151 ms
54,340 KB
testcase_11 AC 144 ms
54,196 KB
testcase_12 AC 136 ms
54,660 KB
testcase_13 AC 120 ms
53,908 KB
testcase_14 AC 142 ms
54,540 KB
testcase_15 AC 140 ms
53,876 KB
testcase_16 AC 153 ms
54,308 KB
testcase_17 AC 157 ms
53,984 KB
testcase_18 AC 145 ms
54,276 KB
testcase_19 AC 145 ms
54,180 KB
testcase_20 AC 146 ms
54,356 KB
testcase_21 AC 139 ms
54,412 KB
testcase_22 AC 144 ms
54,344 KB
testcase_23 AC 137 ms
54,140 KB
testcase_24 AC 138 ms
54,460 KB
testcase_25 AC 141 ms
54,148 KB
testcase_26 AC 143 ms
54,008 KB
testcase_27 AC 143 ms
54,532 KB
testcase_28 AC 144 ms
54,180 KB
testcase_29 AC 143 ms
54,388 KB
testcase_30 AC 145 ms
54,312 KB
testcase_31 AC 144 ms
54,264 KB
testcase_32 AC 148 ms
54,292 KB
testcase_33 AC 146 ms
54,408 KB
testcase_34 AC 145 ms
54,128 KB
testcase_35 AC 142 ms
54,288 KB
testcase_36 AC 147 ms
54,424 KB
testcase_37 AC 144 ms
54,360 KB
testcase_38 AC 134 ms
53,464 KB
testcase_39 AC 138 ms
54,068 KB
testcase_40 AC 154 ms
54,280 KB
testcase_41 AC 138 ms
54,292 KB
testcase_42 AC 150 ms
54,304 KB
testcase_43 AC 145 ms
54,364 KB
testcase_44 AC 145 ms
54,196 KB
testcase_45 AC 142 ms
54,140 KB
testcase_46 AC 145 ms
53,596 KB
testcase_47 AC 149 ms
54,032 KB
testcase_48 AC 150 ms
54,440 KB
testcase_49 AC 148 ms
54,136 KB
testcase_50 AC 132 ms
53,756 KB
testcase_51 AC 147 ms
54,364 KB
testcase_52 AC 154 ms
54,244 KB
testcase_53 AC 143 ms
54,416 KB
testcase_54 AC 150 ms
54,688 KB
testcase_55 AC 150 ms
54,384 KB
testcase_56 AC 152 ms
54,224 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