結果

問題 No.959 tree and fire
ユーザー 37zigen37zigen
提出日時 2020-03-18 21:42:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 998 bytes
コンパイル時間 3,049 ms
コンパイル使用メモリ 77,672 KB
実行使用メモリ 42,224 KB
最終ジャッジ日時 2024-05-08 02:42:01
合計ジャッジ時間 11,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,580 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 139 ms
41,736 KB
testcase_05 AC 122 ms
40,560 KB
testcase_06 AC 132 ms
41,468 KB
testcase_07 AC 128 ms
41,084 KB
testcase_08 AC 124 ms
40,340 KB
testcase_09 AC 137 ms
41,572 KB
testcase_10 AC 137 ms
41,744 KB
testcase_11 AC 124 ms
40,948 KB
testcase_12 WA -
testcase_13 AC 135 ms
40,924 KB
testcase_14 AC 138 ms
41,628 KB
testcase_15 WA -
testcase_16 AC 135 ms
41,840 KB
testcase_17 AC 126 ms
40,928 KB
testcase_18 AC 138 ms
41,704 KB
testcase_19 AC 137 ms
41,836 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 137 ms
41,696 KB
testcase_23 AC 133 ms
41,608 KB
testcase_24 AC 138 ms
41,784 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 135 ms
41,768 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 133 ms
41,192 KB
testcase_31 AC 135 ms
41,580 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 138 ms
41,888 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 136 ms
41,628 KB
testcase_42 WA -
testcase_43 AC 134 ms
41,568 KB
testcase_44 AC 136 ms
41,392 KB
testcase_45 AC 135 ms
41,624 KB
testcase_46 AC 133 ms
41,528 KB
testcase_47 AC 132 ms
41,452 KB
testcase_48 AC 115 ms
41,128 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 135 ms
41,856 KB
testcase_55 AC 132 ms
41,852 KB
testcase_56 AC 125 ms
41,140 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);
		int n=sc.nextInt();
		int m=sc.nextInt();
		double p=sc.nextDouble();
		long center=Math.max(n-2, 0)*Math.max(m-2, 0);
		long lateral_side=2*Math.max(n-2,0);
		long vertical_side=2*Math.max(m-2,0);
		long corner=(n>=2?2:1)*(m>=2?2:1);
		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(m-1, 1);
		long area_vertical_side=3+Math.min(n-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