結果

問題 No.2497 GCD of LCMs
ユーザー pitPpitP
提出日時 2023-10-06 22:21:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 794 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 84,068 KB
最終ジャッジ日時 2024-07-26 16:33:52
合計ジャッジ時間 5,814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,708 KB
testcase_01 AC 38 ms
54,044 KB
testcase_02 AC 64 ms
70,452 KB
testcase_03 AC 39 ms
53,732 KB
testcase_04 AC 38 ms
53,132 KB
testcase_05 AC 37 ms
53,672 KB
testcase_06 AC 1,528 ms
78,188 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

def lcm(a, b):
    return a * b // gcd(a, b)

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())
    g[u - 1].append(v - 1)
    g[v - 1].append(u - 1)

visited = [False] * N
ans = [-1] * N
def dfs(now, goal, num):
    if now == goal:
        if ans[now] == -1:
            ans[now] = num
        else:
            ans[now] = gcd(ans[now], num)
        return 
    
    visited[now] = True
    for nxt in g[now]:
        if visited[nxt] : 
            continue
        dfs(nxt, goal, lcm(num, A[nxt]))
    visited[now] = False
    return 

for i in range(N):
    visited[0] = True
    dfs(0, i, A[0])
    visited[0] = False

for i in range(N):
    print(ans[i] % 998244353)
0