結果

問題 No.959 tree and fire
ユーザー htensaihtensai
提出日時 2020-01-18 19:31:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,101 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 77,388 KB
実行使用メモリ 50,784 KB
最終ジャッジ日時 2024-06-28 01:36:30
合計ジャッジ時間 6,999 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,192 KB
testcase_01 AC 57 ms
50,512 KB
testcase_02 AC 55 ms
50,200 KB
testcase_03 AC 54 ms
50,348 KB
testcase_04 AC 56 ms
50,692 KB
testcase_05 AC 55 ms
50,268 KB
testcase_06 AC 56 ms
50,628 KB
testcase_07 AC 55 ms
50,568 KB
testcase_08 AC 56 ms
50,620 KB
testcase_09 AC 55 ms
50,620 KB
testcase_10 AC 56 ms
50,556 KB
testcase_11 AC 56 ms
50,704 KB
testcase_12 AC 56 ms
50,564 KB
testcase_13 AC 56 ms
50,564 KB
testcase_14 AC 56 ms
50,320 KB
testcase_15 AC 56 ms
50,288 KB
testcase_16 AC 56 ms
50,576 KB
testcase_17 AC 56 ms
50,268 KB
testcase_18 AC 55 ms
50,308 KB
testcase_19 AC 56 ms
50,528 KB
testcase_20 AC 56 ms
50,656 KB
testcase_21 AC 57 ms
50,640 KB
testcase_22 AC 54 ms
50,728 KB
testcase_23 AC 55 ms
50,760 KB
testcase_24 AC 54 ms
50,172 KB
testcase_25 AC 55 ms
50,632 KB
testcase_26 AC 55 ms
50,784 KB
testcase_27 AC 56 ms
50,644 KB
testcase_28 AC 56 ms
50,440 KB
testcase_29 AC 55 ms
50,308 KB
testcase_30 AC 55 ms
50,300 KB
testcase_31 AC 55 ms
50,192 KB
testcase_32 AC 56 ms
50,640 KB
testcase_33 AC 57 ms
50,564 KB
testcase_34 WA -
testcase_35 AC 56 ms
50,564 KB
testcase_36 AC 56 ms
50,672 KB
testcase_37 AC 57 ms
50,192 KB
testcase_38 AC 56 ms
50,188 KB
testcase_39 AC 57 ms
50,536 KB
testcase_40 WA -
testcase_41 AC 56 ms
50,740 KB
testcase_42 AC 57 ms
50,468 KB
testcase_43 AC 56 ms
50,632 KB
testcase_44 AC 56 ms
50,552 KB
testcase_45 AC 56 ms
50,636 KB
testcase_46 AC 56 ms
50,608 KB
testcase_47 AC 56 ms
50,568 KB
testcase_48 AC 55 ms
50,296 KB
testcase_49 AC 56 ms
50,508 KB
testcase_50 AC 56 ms
50,676 KB
testcase_51 AC 56 ms
50,736 KB
testcase_52 AC 57 ms
50,568 KB
testcase_53 AC 56 ms
50,568 KB
testcase_54 AC 56 ms
50,460 KB
testcase_55 AC 55 ms
50,580 KB
testcase_56 AC 55 ms
50,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] line = br.readLine().split(" ", 3);
        int n = Integer.parseInt(line[0]);
        int m = Integer.parseInt(line[1]);
        double p = Double.parseDouble(br.readLine());
        if (n == 1 && m == 1) {
            System.out.println(p);
            return;
        } else if (n == 1) {
            double ans = 0;
            ans += Math.pow(p, 2) * 2;
            ans += Math.pow(p, 3) * (m - 2);
            System.out.println(ans);
            return;
        } else if (m == 1) {
            double ans = 0;
            ans += Math.pow(p, 2) * 2;
            ans += Math.pow(p, 3) * (n - 2);
            System.out.println(ans);
            return;
        }
        double ans = 0;
        ans += Math.pow(p, 3) * 4;
        ans += Math.pow(p, 4) * ((n - 2) * 2 + (m - 2) * 2);
        ans += Math.pow(p, 5) * (n - 2) * (m - 2);
        System.out.println(ans);
    }
}
0