結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー mkawa2mkawa2
提出日時 2024-12-09 18:39:20
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,671 bytes
コンパイル時間 833 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 161,664 KB
最終ジャッジ日時 2024-12-09 18:41:19
合計ジャッジ時間 118,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 43 ms
57,856 KB
testcase_02 TLE -
testcase_03 MLE -
testcase_04 AC 134 ms
81,792 KB
testcase_05 MLE -
testcase_06 TLE -
testcase_07 MLE -
testcase_08 AC 95 ms
81,544 KB
testcase_09 TLE -
testcase_10 AC 1,371 ms
83,468 KB
testcase_11 TLE -
testcase_12 AC 120 ms
81,664 KB
testcase_13 MLE -
testcase_14 AC 2,503 ms
83,868 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2,641 ms
85,176 KB
testcase_23 TLE -
testcase_24 AC 1,417 ms
84,628 KB
testcase_25 TLE -
testcase_26 AC 1,442 ms
84,636 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 TLE -
testcase_31 MLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 1,471 ms
83,248 KB
testcase_35 MLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 38 ms
52,352 KB
testcase_41 AC 40 ms
52,352 KB
testcase_42 AC 39 ms
52,352 KB
testcase_43 AC 40 ms
52,480 KB
testcase_44 AC 39 ms
52,096 KB
testcase_45 AC 39 ms
52,352 KB
testcase_46 AC 41 ms
53,248 KB
testcase_47 AC 47 ms
60,288 KB
testcase_48 AC 62 ms
68,224 KB
testcase_49 AC 79 ms
76,600 KB
testcase_50 AC 40 ms
52,352 KB
testcase_51 AC 43 ms
52,736 KB
testcase_52 AC 46 ms
52,864 KB
testcase_53 AC 57 ms
62,464 KB
testcase_54 AC 100 ms
76,416 KB
testcase_55 AC 39 ms
52,352 KB
testcase_56 AC 41 ms
52,608 KB
testcase_57 AC 66 ms
70,016 KB
testcase_58 AC 40 ms
52,096 KB
testcase_59 AC 52 ms
63,616 KB
testcase_60 AC 40 ms
52,608 KB
testcase_61 AC 96 ms
76,288 KB
testcase_62 AC 41 ms
52,992 KB
testcase_63 AC 43 ms
53,632 KB
testcase_64 AC 49 ms
61,952 KB
testcase_65 AC 62 ms
68,480 KB
testcase_66 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
# md = 998244353

def cal(a):
    def dfs(ij):
        def push(ij):
            if a[ij]==0:return
            a[ij]=0
            st.append(ij)
        cnt=0
        st=[ij]
        a[ij]=0
        while st:
            ij=st.pop()
            cnt+=1
            i,j=divmod(ij,w)
            if i+1<h:push(ij+w)
            if j+1<w:push(ij+1)
            if i:push(ij-w)
            if j:push(ij-1)
        return val[cnt]

    res=0
    for i in range(h):
        for j in range(w):
            ij=i*w+j
            if a[ij]==0:continue
            res+=dfs(ij)
            res%=md
    return res

h,w,k,md=LI()

n=h*w
val=[pow(i,k,md) for i in range(n+1)]

st=[[]]
s=0
while st:
    a=st.pop()
    if len(a)==n:
        s+=cal(a)
        s%=md
    else:
        st.append(a+[0])
        st.append(a+[1])

coe=0
for i in range(n):
    coe+=pow(i+1,md-2,md)
    coe%=md

ans=s*coe%md*pow(2,n*(md-2),md)%md
print(ans)
0