結果

問題 No.2428 Returning Shuffle
ユーザー ryohei22ryohei22
提出日時 2023-08-18 22:34:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 776 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 327,520 KB
最終ジャッジ日時 2024-11-28 08:33:29
合計ジャッジ時間 26,368 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 39 ms
56,960 KB
testcase_04 AC 39 ms
135,936 KB
testcase_05 AC 39 ms
56,960 KB
testcase_06 AC 38 ms
132,864 KB
testcase_07 AC 38 ms
57,088 KB
testcase_08 AC 38 ms
327,520 KB
testcase_09 AC 39 ms
57,472 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 39 ms
51,712 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 38 ms
51,840 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 38 ms
51,456 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 37 ms
52,096 KB
testcase_23 AC 38 ms
52,224 KB
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


MOD = 998244353 


N, M = map(int, input().split())
mapping = list(range(1, N+1))
for _ in range(M):
    S = list(map(int, input().split()))[1:]
    tmp = {mapping[S[(i+1)%len(S)]-1]: mapping[S[i]-1] for i in range(len(S))}
    for i in range(N):
        if mapping[i] in tmp:
            mapping[i] = tmp[mapping[i]]

lst = list(range(1, N+1))
cnt = 0
while 1:
    for i in range(N):
        lst[i] = mapping[lst[i]-1]
    cnt += 1

    for i in range(N):
        if lst[(i+1)%N] != ((lst[i] + 1) % (N + 1) if (lst[i] + 1) % (N + 1) != 0 else 1):
            break
    else:
        move = lst.index(1)
        break

# cntで全体がmoveだけ動く
if lst == list(range(1, N+1)):
    print(cnt)
else:
    print((cnt * (N * move / (math.gcd(N, move)))) % MOD)
0