結果

問題 No.2494 Sum within Components
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-10-06 21:52:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 102,272 KB
最終ジャッジ日時 2024-07-26 16:01:44
合計ジャッジ時間 3,548 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,128 KB
testcase_01 AC 33 ms
53,068 KB
testcase_02 AC 33 ms
54,428 KB
testcase_03 AC 37 ms
53,092 KB
testcase_04 AC 34 ms
52,316 KB
testcase_05 AC 34 ms
52,068 KB
testcase_06 AC 32 ms
53,080 KB
testcase_07 AC 33 ms
52,696 KB
testcase_08 AC 35 ms
52,652 KB
testcase_09 AC 109 ms
76,968 KB
testcase_10 AC 115 ms
79,012 KB
testcase_11 AC 89 ms
76,772 KB
testcase_12 AC 123 ms
78,704 KB
testcase_13 AC 118 ms
78,052 KB
testcase_14 AC 270 ms
98,576 KB
testcase_15 AC 275 ms
91,548 KB
testcase_16 AC 183 ms
95,808 KB
testcase_17 AC 131 ms
102,272 KB
testcase_18 AC 193 ms
102,152 KB
testcase_19 AC 306 ms
102,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def union(x,y):
  rx=root(x)
  ry=root(y)
  if rx==ry:
    return
  if rx>ry:
    rx,ry=ry,rx
  r[ry]=rx
  return

def root(x):
  p=x
  l=[p]
  while r[p]!=p:
    p=r[p]
    l.append(p)
  for p in l:
    r[p]=l[-1]
  return r[x]

M=998244353
n,m=map(int,input().split())
a=list(map(int,input().split()))
r=list(range(n))

for i in range(m):
  u,v=map(int,input().split())
  u-=1
  v-=1
  union(u,v)

g=[0]*n
for i in range(n):
  ri=root(i)
  g[ri]+=a[i]
  g[ri]%=M

b=1
for i in range(n):
  ri=root(i)
  b*=g[ri]
  b%=M

print(b)
0