結果

問題 No.959 tree and fire
ユーザー roarisroaris
提出日時 2019-12-22 02:15:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-09-13 10:00:02
合計ジャッジ時間 3,982 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,220 KB
testcase_01 AC 36 ms
52,868 KB
testcase_02 AC 37 ms
53,264 KB
testcase_03 AC 37 ms
53,664 KB
testcase_04 AC 38 ms
52,620 KB
testcase_05 AC 37 ms
53,040 KB
testcase_06 AC 36 ms
52,604 KB
testcase_07 AC 36 ms
52,364 KB
testcase_08 AC 37 ms
52,284 KB
testcase_09 AC 37 ms
53,604 KB
testcase_10 AC 37 ms
52,124 KB
testcase_11 AC 37 ms
53,352 KB
testcase_12 AC 37 ms
53,100 KB
testcase_13 AC 38 ms
52,716 KB
testcase_14 AC 38 ms
52,128 KB
testcase_15 AC 36 ms
53,336 KB
testcase_16 AC 37 ms
53,912 KB
testcase_17 AC 38 ms
54,008 KB
testcase_18 AC 37 ms
52,744 KB
testcase_19 AC 37 ms
53,936 KB
testcase_20 AC 36 ms
52,396 KB
testcase_21 AC 36 ms
53,344 KB
testcase_22 AC 36 ms
53,340 KB
testcase_23 AC 38 ms
53,076 KB
testcase_24 AC 38 ms
53,272 KB
testcase_25 AC 37 ms
52,808 KB
testcase_26 AC 37 ms
52,588 KB
testcase_27 AC 37 ms
51,948 KB
testcase_28 AC 37 ms
52,264 KB
testcase_29 AC 37 ms
53,480 KB
testcase_30 AC 37 ms
53,220 KB
testcase_31 AC 38 ms
52,472 KB
testcase_32 AC 38 ms
52,816 KB
testcase_33 AC 38 ms
52,416 KB
testcase_34 AC 38 ms
52,200 KB
testcase_35 AC 38 ms
52,272 KB
testcase_36 AC 38 ms
53,952 KB
testcase_37 AC 38 ms
52,612 KB
testcase_38 AC 38 ms
53,196 KB
testcase_39 AC 38 ms
52,648 KB
testcase_40 AC 38 ms
52,812 KB
testcase_41 AC 38 ms
54,068 KB
testcase_42 AC 37 ms
53,188 KB
testcase_43 AC 38 ms
52,396 KB
testcase_44 AC 38 ms
52,068 KB
testcase_45 AC 37 ms
52,008 KB
testcase_46 AC 37 ms
52,256 KB
testcase_47 AC 37 ms
52,324 KB
testcase_48 AC 37 ms
52,600 KB
testcase_49 AC 39 ms
52,404 KB
testcase_50 AC 37 ms
52,624 KB
testcase_51 AC 38 ms
52,772 KB
testcase_52 AC 37 ms
51,940 KB
testcase_53 AC 37 ms
53,696 KB
testcase_54 AC 37 ms
53,536 KB
testcase_55 AC 38 ms
52,348 KB
testcase_56 AC 37 ms
52,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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