結果

問題 No.2494 Sum within Components
ユーザー なえしらなえしら
提出日時 2024-04-16 21:08:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 109,488 KB
最終ジャッジ日時 2024-10-08 01:01:10
合計ジャッジ時間 4,267 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,760 KB
testcase_01 AC 39 ms
52,624 KB
testcase_02 AC 39 ms
52,528 KB
testcase_03 AC 38 ms
52,836 KB
testcase_04 AC 42 ms
52,668 KB
testcase_05 AC 39 ms
53,040 KB
testcase_06 AC 38 ms
52,852 KB
testcase_07 AC 38 ms
53,064 KB
testcase_08 AC 39 ms
52,136 KB
testcase_09 AC 93 ms
76,816 KB
testcase_10 AC 106 ms
77,800 KB
testcase_11 AC 103 ms
77,224 KB
testcase_12 AC 117 ms
78,044 KB
testcase_13 AC 107 ms
77,384 KB
testcase_14 AC 355 ms
102,232 KB
testcase_15 AC 364 ms
94,144 KB
testcase_16 AC 189 ms
99,672 KB
testcase_17 AC 117 ms
102,316 KB
testcase_18 AC 188 ms
108,464 KB
testcase_19 AC 405 ms
109,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

N, M = map(int, input().split())
A = list(map(int, input().split()))
G = [[] for _ in range(N)]
for _ in range(M):
  u, v = map(int, input().split())
  u -= 1; v -= 1
  G[u].append(v)
  G[v].append(u)

seen = [False]*N
stack = []
ans = 1
for i in range(N):
  if seen[i]: continue
  cnt = sum = 0 
  seen[i] = True
  stack.append(i)
  while stack:
    u = stack.pop()
    cnt += 1; sum += A[u]
    for v in G[u]:
      if not seen[v]:
        seen[v] = True
        stack.append(v)
  ans *= pow(sum % MOD, cnt, MOD)
  ans %= MOD

print(ans)
0