結果

問題 No.959 tree and fire
ユーザー masumasumath1masumasumath1
提出日時 2020-01-03 11:53:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-11-22 19:00:58
合計ジャッジ時間 131,671 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 29 ms
16,000 KB
testcase_05 AC 30 ms
21,632 KB
testcase_06 AC 29 ms
16,000 KB
testcase_07 AC 29 ms
21,248 KB
testcase_08 AC 28 ms
16,000 KB
testcase_09 AC 29 ms
21,248 KB
testcase_10 AC 29 ms
16,000 KB
testcase_11 AC 29 ms
21,376 KB
testcase_12 AC 29 ms
17,828 KB
testcase_13 AC 29 ms
16,256 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 AC 29 ms
10,752 KB
testcase_55 AC 27 ms
10,624 KB
testcase_56 AC 140 ms
26,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
p = float(input())
ans = 0
for i in range(N):
    for j in range(M):
        #角のとき
        if (i,j) in [(0,0),(0,M-1),(N-1,0),(N-1,M-1)]:
            if N == 1 or M == 1:
                ans += p**2
            else:
                ans += p**3
        #端のとき
        elif (i in [0,N-1]) or (j in [0,M-1]):
            if N == 1 or M == 1:
                ans += p**3
            else:
                ans += p**4
        #真ん中のとき
        else:
            ans += p**5
print(ans)
0