結果

問題 No.959 tree and fire
ユーザー tamatotamato
提出日時 2019-12-22 12:13:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 54,736 KB
最終ジャッジ日時 2024-09-14 02:54:51
合計ジャッジ時間 3,953 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,684 KB
testcase_01 AC 38 ms
53,348 KB
testcase_02 WA -
testcase_03 AC 38 ms
53,268 KB
testcase_04 AC 38 ms
53,068 KB
testcase_05 AC 38 ms
52,436 KB
testcase_06 AC 38 ms
52,340 KB
testcase_07 AC 39 ms
52,728 KB
testcase_08 AC 38 ms
53,420 KB
testcase_09 AC 38 ms
52,960 KB
testcase_10 AC 39 ms
52,524 KB
testcase_11 AC 37 ms
52,504 KB
testcase_12 WA -
testcase_13 AC 38 ms
52,884 KB
testcase_14 AC 37 ms
53,172 KB
testcase_15 AC 38 ms
53,212 KB
testcase_16 AC 38 ms
53,576 KB
testcase_17 AC 39 ms
52,508 KB
testcase_18 AC 38 ms
52,472 KB
testcase_19 AC 38 ms
52,592 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 38 ms
51,948 KB
testcase_23 AC 39 ms
53,000 KB
testcase_24 AC 39 ms
53,344 KB
testcase_25 AC 39 ms
53,340 KB
testcase_26 AC 39 ms
52,740 KB
testcase_27 AC 38 ms
53,880 KB
testcase_28 AC 39 ms
52,312 KB
testcase_29 AC 38 ms
52,840 KB
testcase_30 AC 40 ms
52,332 KB
testcase_31 AC 39 ms
52,068 KB
testcase_32 AC 39 ms
52,808 KB
testcase_33 AC 38 ms
53,496 KB
testcase_34 AC 39 ms
52,856 KB
testcase_35 AC 39 ms
53,276 KB
testcase_36 AC 38 ms
53,244 KB
testcase_37 AC 39 ms
52,396 KB
testcase_38 AC 40 ms
52,612 KB
testcase_39 AC 40 ms
53,328 KB
testcase_40 AC 39 ms
52,728 KB
testcase_41 AC 39 ms
52,496 KB
testcase_42 AC 39 ms
52,476 KB
testcase_43 AC 39 ms
52,624 KB
testcase_44 AC 38 ms
53,076 KB
testcase_45 AC 39 ms
52,004 KB
testcase_46 AC 38 ms
52,728 KB
testcase_47 AC 39 ms
53,212 KB
testcase_48 AC 38 ms
52,856 KB
testcase_49 AC 38 ms
52,220 KB
testcase_50 AC 38 ms
52,600 KB
testcase_51 AC 38 ms
52,496 KB
testcase_52 AC 39 ms
52,736 KB
testcase_53 AC 38 ms
53,008 KB
testcase_54 AC 39 ms
53,496 KB
testcase_55 AC 39 ms
52,996 KB
testcase_56 AC 40 ms
53,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
p = float(input())

if N == M == 1:
    print(p)
elif N == 1:
    print(p**3 * (M-2) + p**2 * 2)
elif M == 1:
    print(p**3 + (N-2) + p**2 * 2)
else:
    print(p**5 * (N-2) * (M-2) + p**4 * ((N-2)*2 + (M-2)*2) + p**3 * 4)
0