結果

問題 No.2494 Sum within Components
ユーザー minimumminimum
提出日時 2023-10-06 21:32:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 109,700 KB
最終ジャッジ日時 2024-07-26 15:48:28
合計ジャッジ時間 4,143 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,632 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 46 ms
53,632 KB
testcase_04 AC 47 ms
53,760 KB
testcase_05 AC 45 ms
54,016 KB
testcase_06 AC 45 ms
53,504 KB
testcase_07 AC 46 ms
54,016 KB
testcase_08 AC 46 ms
53,760 KB
testcase_09 AC 113 ms
77,440 KB
testcase_10 AC 133 ms
80,512 KB
testcase_11 AC 116 ms
78,080 KB
testcase_12 AC 136 ms
80,384 KB
testcase_13 AC 121 ms
78,720 KB
testcase_14 AC 384 ms
101,376 KB
testcase_15 AC 402 ms
94,080 KB
testcase_16 AC 237 ms
99,456 KB
testcase_17 AC 170 ms
109,200 KB
testcase_18 AC 244 ms
108,948 KB
testcase_19 AC 451 ms
109,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


MOD = 998244353
N, M = map(int, input().split())
A = list(map(int, input().split()))
edges = [[] for i in range(N)]
for i in range(M):
    u, v = map(lambda x: x - 1, map(int, input().split()))
    edges[u].append(v)
    edges[v].append(u)

ans = 1
done = [0] * N
for i in range(N):
    if done[i]:
        continue
    done[i] = 1
    dq = deque([i])
    c = 1
    s = A[i]
    while dq:
        now = dq.popleft()
        for nxt in edges[now]:
            if done[nxt]:
                continue
            done[nxt] = 1
            dq.append(nxt)
            c += 1
            s += A[nxt]
            s %= MOD
    ans *= pow(s, c, MOD)
    ans %= MOD

print(ans)
0