結果

問題 No.959 tree and fire
ユーザー 37zigen37zigen
提出日時 2020-03-18 22:33:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,031 bytes
コンパイル時間 1,921 ms
コンパイル使用メモリ 77,968 KB
実行使用メモリ 56,420 KB
最終ジャッジ日時 2024-05-08 02:48:07
合計ジャッジ時間 10,625 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,176 KB
testcase_01 AC 128 ms
54,156 KB
testcase_02 AC 131 ms
53,992 KB
testcase_03 WA -
testcase_04 AC 127 ms
54,280 KB
testcase_05 AC 125 ms
53,604 KB
testcase_06 AC 108 ms
52,932 KB
testcase_07 AC 125 ms
54,096 KB
testcase_08 AC 126 ms
54,288 KB
testcase_09 AC 113 ms
52,976 KB
testcase_10 AC 133 ms
53,988 KB
testcase_11 AC 127 ms
54,040 KB
testcase_12 AC 127 ms
54,268 KB
testcase_13 AC 125 ms
54,324 KB
testcase_14 AC 127 ms
53,956 KB
testcase_15 AC 131 ms
53,988 KB
testcase_16 AC 132 ms
53,564 KB
testcase_17 AC 116 ms
54,072 KB
testcase_18 AC 124 ms
53,916 KB
testcase_19 AC 116 ms
53,280 KB
testcase_20 AC 117 ms
53,128 KB
testcase_21 AC 124 ms
52,924 KB
testcase_22 AC 129 ms
54,204 KB
testcase_23 AC 114 ms
53,056 KB
testcase_24 AC 130 ms
54,056 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 132 ms
54,056 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 127 ms
54,068 KB
testcase_31 AC 112 ms
53,116 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 116 ms
52,960 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 125 ms
53,596 KB
testcase_42 WA -
testcase_43 AC 118 ms
53,764 KB
testcase_44 AC 132 ms
54,352 KB
testcase_45 AC 131 ms
54,020 KB
testcase_46 AC 133 ms
53,972 KB
testcase_47 AC 126 ms
54,236 KB
testcase_48 AC 122 ms
54,216 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 123 ms
53,384 KB
testcase_55 AC 112 ms
52,844 KB
testcase_56 AC 113 ms
52,832 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=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