結果

問題 No.2428 Returning Shuffle
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-08-19 09:46:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 719 ms / 2,000 ms
コード長 1,369 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 266,784 KB
最終ジャッジ日時 2024-05-06 17:01:03
合計ジャッジ時間 5,581 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
94,592 KB
testcase_01 AC 719 ms
129,920 KB
testcase_02 AC 704 ms
130,048 KB
testcase_03 AC 39 ms
53,888 KB
testcase_04 AC 39 ms
53,760 KB
testcase_05 AC 40 ms
53,504 KB
testcase_06 AC 42 ms
54,100 KB
testcase_07 AC 39 ms
53,760 KB
testcase_08 AC 38 ms
53,888 KB
testcase_09 AC 39 ms
53,760 KB
testcase_10 AC 39 ms
54,016 KB
testcase_11 AC 39 ms
53,760 KB
testcase_12 AC 39 ms
53,760 KB
testcase_13 AC 40 ms
53,632 KB
testcase_14 AC 38 ms
53,888 KB
testcase_15 AC 39 ms
54,016 KB
testcase_16 AC 39 ms
54,016 KB
testcase_17 AC 39 ms
54,016 KB
testcase_18 AC 39 ms
53,888 KB
testcase_19 AC 290 ms
118,084 KB
testcase_20 AC 274 ms
118,144 KB
testcase_21 AC 38 ms
54,272 KB
testcase_22 AC 37 ms
53,632 KB
testcase_23 AC 40 ms
53,888 KB
testcase_24 AC 475 ms
266,400 KB
testcase_25 AC 462 ms
266,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Multiple_LCM(A: list) -> int:
    '''
    複数の整数に対する最小公倍数を返す

    Parameters
    ----------
    A:list
    '''
    from collections import defaultdict
    MOD = 998244353
    Exponent = defaultdict(int)
    for a in A:
        primes = []
        for i in range(2, a+1):
            if i*i > a:
                break
            if a % i != 0:
                continue
            cnt = 0
            while a % i == 0:
                cnt += 1
                a //= i
            primes.append((i, cnt))
        if a > 1:
            primes.append((a, 1))
        for p, v in primes:
            Exponent[p] = max(Exponent[p], v)
    res = 1
    for p, exp in Exponent.items():
        res *= pow(p, exp, MOD)
        res %= MOD
    return res


N, M = map(int, input().split())
P = [i for i in range(N)]
for _ in range(M):
    L, *T = list(map(int, input().split()))
    sigma = []
    for t in T:
        sigma.append(P[t-1])
    for i in range(L):
        if i < L-1:
            j = T[i+1]-1
        else:
            j = T[0]-1
        P[j] = sigma[i]
loop = []
seen = [False]*N
for i in range(N):
    if seen[i]:
        continue
    tmp = 1
    seen[i] = True
    next = P[i]
    while not seen[next]:
        seen[next] = True
        tmp += 1
        next = P[next]
    loop.append(tmp)
ans = Multiple_LCM(loop)
print(ans)
0