結果

問題 No.959 tree and fire
ユーザー 37zigen37zigen
提出日時 2020-03-18 22:27:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,023 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 77,184 KB
実行使用メモリ 42,204 KB
最終ジャッジ日時 2024-05-08 02:47:01
合計ジャッジ時間 12,150 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
42,060 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 146 ms
41,624 KB
testcase_05 AC 144 ms
41,636 KB
testcase_06 AC 144 ms
41,516 KB
testcase_07 AC 146 ms
41,488 KB
testcase_08 AC 143 ms
41,784 KB
testcase_09 AC 144 ms
41,800 KB
testcase_10 AC 140 ms
41,676 KB
testcase_11 AC 144 ms
41,588 KB
testcase_12 WA -
testcase_13 AC 144 ms
41,676 KB
testcase_14 AC 144 ms
41,932 KB
testcase_15 WA -
testcase_16 AC 145 ms
41,896 KB
testcase_17 AC 142 ms
41,616 KB
testcase_18 AC 146 ms
41,804 KB
testcase_19 AC 144 ms
41,512 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 142 ms
41,800 KB
testcase_23 AC 139 ms
41,388 KB
testcase_24 AC 143 ms
41,528 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 141 ms
41,880 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 145 ms
41,656 KB
testcase_31 AC 145 ms
41,468 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 143 ms
41,808 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 144 ms
41,660 KB
testcase_42 WA -
testcase_43 AC 146 ms
41,932 KB
testcase_44 AC 144 ms
41,932 KB
testcase_45 AC 144 ms
41,520 KB
testcase_46 AC 143 ms
41,896 KB
testcase_47 AC 154 ms
41,248 KB
testcase_48 AC 144 ms
41,752 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 143 ms
41,492 KB
testcase_55 AC 147 ms
41,380 KB
testcase_56 AC 148 ms
41,960 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=Math.max(m-2,0)*Math.min(n,2);
		long vertical_side=Math.max(n-2, 0)*Math.min(m,2);
		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