結果

問題 No.2428 Returning Shuffle
ユーザー sotanishysotanishy
提出日時 2023-08-18 21:50:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,187 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 86,584 KB
実行使用メモリ 112,832 KB
最終ジャッジ日時 2023-08-18 21:50:19
合計ジャッジ時間 7,260 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.readline


def prime_factor(n):
    factors = {}
    if n % 2 == 0:
        cnt = 0
        while n % 2 == 0:
            cnt += 1
            n //= 2
        factors[2] = cnt
    i = 3
    while i * i <= n:
        if n % i == 0:
            cnt = 0
            while n % i == 0:
                cnt += 1
                n //= i
            factors[i] = cnt
        i += 2
    if n != 1:
        factors[n] = 1
    return factors


mod = 998244353
N, M = map(int, input().split())
P = list(range(N))
Q = list(range(N))
for _ in range(M):
    T, *S = map(int, input().split())
    S = list(map(lambda x: x-1, S))
    tmp = Q[P[S[0]]]
    x = [P[S[0]]]
    for i in range(T-1):
        Q[P[S[i]]] = Q[P[S[i+1]]]
        x.append(P[S[i+1]])
    Q[P[S[T-1]]] = tmp

    for i in x:
        P[Q[i]] = i

visited = [0] * N
exp = defaultdict(int)
for i in P:
    if visited[i]:
        continue
    j = P[i]
    cnt = 1
    while j != i:
        j = P[j]
        cnt += 1
    for p, c in prime_factor(cnt).items():
        exp[p] = max(exp[p], c)
ans = 1
for p, e in exp.items():
    ans = ans * pow(p, e, mod) % mod
print(ans)
0