結果

問題 No.2497 GCD of LCMs
ユーザー convexineqconvexineq
提出日時 2024-01-13 18:02:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 76,816 KB
最終ジャッジ日時 2024-09-28 01:39:54
合計ジャッジ時間 2,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,988 KB
testcase_01 AC 35 ms
53,484 KB
testcase_02 AC 38 ms
53,892 KB
testcase_03 AC 36 ms
54,004 KB
testcase_04 AC 35 ms
53,744 KB
testcase_05 AC 35 ms
52,748 KB
testcase_06 AC 37 ms
53,624 KB
testcase_07 AC 83 ms
76,516 KB
testcase_08 AC 59 ms
70,912 KB
testcase_09 AC 61 ms
71,916 KB
testcase_10 AC 141 ms
76,816 KB
testcase_11 AC 93 ms
76,452 KB
testcase_12 AC 105 ms
76,720 KB
testcase_13 AC 134 ms
76,768 KB
testcase_14 AC 113 ms
76,464 KB
testcase_15 AC 41 ms
55,764 KB
testcase_16 AC 139 ms
76,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
from math import gcd
lcm = lambda a,b: a//gcd(a,b)*b
import sys
readline = sys.stdin.readline

n,m = map(int,readline().split())
*a, = map(int,readline().split())

g = [[] for _ in range(n)]
for _ in range(m):
    u,v = map(int,readline().split())
    g[u-1].append(v-1)
    g[v-1].append(u-1)

q = [(a[0],0)]
dist = [0]*n
dist[0] = a[0]

while q:
    c,v = q.pop()
    if dist[v] and c > dist[v]: continue
    for w in g[v]:
        nc = gcd(lcm(c,a[w]),dist[w])
        if dist[w] != 0 and nc == dist[w]: continue
        dist[w] = gcd(nc,dist[w])
        heappush(q,(dist[w],w))

for i in dist:print(i%998244353)
0