結果

問題 No.959 tree and fire
ユーザー tentententen
提出日時 2023-02-16 13:42:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,913 bytes
コンパイル時間 2,710 ms
コンパイル使用メモリ 95,300 KB
実行使用メモリ 37,792 KB
最終ジャッジ日時 2024-07-18 14:47:49
合計ジャッジ時間 7,631 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,752 KB
testcase_01 AC 55 ms
37,564 KB
testcase_02 AC 55 ms
37,720 KB
testcase_03 AC 55 ms
37,568 KB
testcase_04 AC 56 ms
37,568 KB
testcase_05 AC 56 ms
37,644 KB
testcase_06 AC 56 ms
37,708 KB
testcase_07 AC 56 ms
37,612 KB
testcase_08 AC 55 ms
37,712 KB
testcase_09 AC 55 ms
37,440 KB
testcase_10 AC 55 ms
37,304 KB
testcase_11 AC 55 ms
37,564 KB
testcase_12 AC 55 ms
37,724 KB
testcase_13 AC 55 ms
37,744 KB
testcase_14 AC 55 ms
37,536 KB
testcase_15 AC 55 ms
37,676 KB
testcase_16 AC 55 ms
37,568 KB
testcase_17 AC 54 ms
37,412 KB
testcase_18 AC 56 ms
37,556 KB
testcase_19 AC 55 ms
37,748 KB
testcase_20 AC 54 ms
37,792 KB
testcase_21 AC 56 ms
37,724 KB
testcase_22 AC 56 ms
37,668 KB
testcase_23 AC 55 ms
37,652 KB
testcase_24 AC 55 ms
37,540 KB
testcase_25 AC 55 ms
37,664 KB
testcase_26 AC 55 ms
37,704 KB
testcase_27 AC 55 ms
37,568 KB
testcase_28 AC 56 ms
37,568 KB
testcase_29 AC 56 ms
37,732 KB
testcase_30 AC 55 ms
37,556 KB
testcase_31 AC 55 ms
37,696 KB
testcase_32 AC 56 ms
37,312 KB
testcase_33 AC 55 ms
37,428 KB
testcase_34 AC 56 ms
37,680 KB
testcase_35 AC 56 ms
37,700 KB
testcase_36 AC 55 ms
37,456 KB
testcase_37 AC 54 ms
37,420 KB
testcase_38 AC 55 ms
37,652 KB
testcase_39 AC 55 ms
37,676 KB
testcase_40 AC 55 ms
37,740 KB
testcase_41 AC 55 ms
37,448 KB
testcase_42 AC 54 ms
37,488 KB
testcase_43 AC 55 ms
37,748 KB
testcase_44 AC 54 ms
37,312 KB
testcase_45 AC 55 ms
37,696 KB
testcase_46 AC 54 ms
37,728 KB
testcase_47 AC 54 ms
37,488 KB
testcase_48 AC 54 ms
37,752 KB
testcase_49 AC 54 ms
37,456 KB
testcase_50 AC 54 ms
37,712 KB
testcase_51 AC 54 ms
37,712 KB
testcase_52 AC 54 ms
37,456 KB
testcase_53 AC 53 ms
37,488 KB
testcase_54 AC 54 ms
37,676 KB
testcase_55 AC 54 ms
37,728 KB
testcase_56 AC 54 ms
37,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long h = sc.nextInt();
        long w = sc.nextInt();
        double p = sc.nextDouble();
        double ans;
        if (h == 1 && w == 1) {
            ans = p;
        } else if (h == 1 || w == 1) {
            ans = Math.pow(p, 2) * 2 + Math.pow(p, 3) * (h * w - 2);
        } else {
            ans = Math.pow(p, 3) * 4 + Math.pow(p, 4) * (h + w - 4) * 2 + Math.pow(p, 5) * (h * w - (h + w - 2) * 2);
        }
        System.out.println(new java.math.BigDecimal(ans).toPlainString());
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0