結果

問題 No.959 tree and fire
ユーザー tentententen
提出日時 2020-12-01 08:43:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 77,192 KB
実行使用メモリ 54,712 KB
最終ジャッジ日時 2024-09-13 02:51:01
合計ジャッジ時間 12,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,320 KB
testcase_01 AC 141 ms
54,280 KB
testcase_02 AC 144 ms
54,232 KB
testcase_03 AC 146 ms
54,712 KB
testcase_04 AC 140 ms
54,140 KB
testcase_05 AC 135 ms
54,260 KB
testcase_06 AC 139 ms
54,124 KB
testcase_07 AC 142 ms
54,340 KB
testcase_08 AC 147 ms
54,200 KB
testcase_09 AC 148 ms
54,204 KB
testcase_10 AC 142 ms
54,216 KB
testcase_11 AC 149 ms
54,048 KB
testcase_12 AC 144 ms
54,228 KB
testcase_13 AC 145 ms
54,056 KB
testcase_14 AC 141 ms
54,312 KB
testcase_15 AC 142 ms
54,120 KB
testcase_16 AC 139 ms
54,292 KB
testcase_17 AC 146 ms
54,352 KB
testcase_18 AC 138 ms
53,896 KB
testcase_19 AC 120 ms
53,176 KB
testcase_20 AC 146 ms
53,920 KB
testcase_21 AC 145 ms
54,320 KB
testcase_22 AC 151 ms
53,996 KB
testcase_23 AC 146 ms
54,000 KB
testcase_24 AC 146 ms
54,428 KB
testcase_25 AC 144 ms
54,340 KB
testcase_26 AC 145 ms
54,384 KB
testcase_27 AC 146 ms
53,920 KB
testcase_28 AC 146 ms
54,032 KB
testcase_29 AC 147 ms
54,212 KB
testcase_30 AC 147 ms
54,244 KB
testcase_31 AC 144 ms
54,292 KB
testcase_32 AC 142 ms
54,288 KB
testcase_33 AC 138 ms
54,444 KB
testcase_34 AC 147 ms
54,384 KB
testcase_35 AC 145 ms
54,456 KB
testcase_36 AC 144 ms
54,076 KB
testcase_37 AC 143 ms
53,892 KB
testcase_38 AC 143 ms
54,284 KB
testcase_39 AC 145 ms
54,508 KB
testcase_40 AC 146 ms
53,960 KB
testcase_41 AC 137 ms
54,120 KB
testcase_42 AC 145 ms
54,444 KB
testcase_43 AC 144 ms
54,120 KB
testcase_44 AC 140 ms
54,128 KB
testcase_45 AC 144 ms
53,944 KB
testcase_46 AC 143 ms
53,948 KB
testcase_47 AC 145 ms
54,248 KB
testcase_48 AC 144 ms
54,288 KB
testcase_49 AC 144 ms
54,252 KB
testcase_50 AC 146 ms
54,096 KB
testcase_51 AC 144 ms
54,352 KB
testcase_52 AC 141 ms
54,212 KB
testcase_53 AC 142 ms
54,320 KB
testcase_54 AC 141 ms
54,364 KB
testcase_55 AC 142 ms
54,364 KB
testcase_56 AC 141 ms
54,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int h = sc.nextInt();
        int w = sc.nextInt();
        double rate = sc.nextDouble();
        if (h == 1 && w == 1) {
            System.out.println(rate);
        } else if (h == 1) {
            double ans = Math.pow(rate, 2) * 2 + Math.pow(rate, 3) * (w - 2);
            System.out.println(ans);
        } else if (w == 1) {
            double ans = Math.pow(rate, 2) * 2 + Math.pow(rate, 3) * (h - 2);
            System.out.println(ans);
        } else {
            double ans = Math.pow(rate, 3) * 4;
            ans += Math.pow(rate, 4) * (w - 2) * 2;
            ans += Math.pow(rate, 4) * (h - 2) * 2;
            ans += Math.pow(rate, 5) * (w - 2) * (h - 2);
            System.out.println(ans);
        }
    }
}
0