結果

問題 No.2045 Two Reflections
ユーザー tamatotamato
提出日時 2022-08-19 23:43:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 1,893 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 78,044 KB
最終ジャッジ日時 2024-10-08 11:22:17
合計ジャッジ時間 2,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,548 KB
testcase_01 AC 36 ms
53,128 KB
testcase_02 AC 73 ms
77,348 KB
testcase_03 AC 67 ms
78,044 KB
testcase_04 AC 76 ms
77,828 KB
testcase_05 AC 36 ms
53,412 KB
testcase_06 AC 36 ms
53,212 KB
testcase_07 AC 78 ms
77,424 KB
testcase_08 AC 91 ms
77,180 KB
testcase_09 AC 40 ms
54,364 KB
testcase_10 AC 38 ms
53,320 KB
testcase_11 AC 66 ms
76,156 KB
testcase_12 AC 37 ms
54,356 KB
testcase_13 AC 34 ms
53,200 KB
testcase_14 AC 36 ms
53,408 KB
testcase_15 AC 36 ms
52,660 KB
testcase_16 AC 35 ms
53,420 KB
testcase_17 AC 35 ms
52,816 KB
testcase_18 AC 36 ms
53,212 KB
testcase_19 AC 36 ms
53,304 KB
testcase_20 AC 36 ms
53,444 KB
testcase_21 AC 72 ms
77,216 KB
testcase_22 AC 72 ms
77,416 KB
testcase_23 AC 75 ms
77,156 KB
testcase_24 AC 74 ms
77,264 KB
testcase_25 AC 77 ms
77,524 KB
testcase_26 AC 74 ms
77,596 KB
testcase_27 AC 74 ms
76,880 KB
testcase_28 AC 73 ms
77,200 KB
testcase_29 AC 75 ms
77,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    from math import gcd
    input = sys.stdin.readline

    class UnionFind():
        def __init__(self, n):
            self.n = n
            self.root = [-1] * (n + 1)
            self.rnk = [0] * (n + 1)

        def find_root(self, x):
            while self.root[x] >= 0:
                x = self.root[x]
            return x

        def unite(self, x, y):
            x = self.find_root(x)
            y = self.find_root(y)
            if x == y:
                return
            elif self.rnk[x] > self.rnk[y]:
                self.root[x] += self.root[y]
                self.root[y] = x
            else:
                self.root[y] += self.root[x]
                self.root[x] = y
                if self.rnk[x] == self.rnk[y]:
                    self.rnk[y] += 1

        def isSameGroup(self, x, y):
            return self.find_root(x) == self.find_root(y)

        def size(self, x):
            return -self.root[self.find_root(x)]

    N, p, q = map(int, input().split())

    if p + q <= N:
        if p == q == 1:
            print(1)
        elif p == 1 or q == 1:
            print(2)
        else:
            print(4)
        exit()

    if p == q == N:
        if N == 1:
            print(1)
        else:
            print(2)
        exit()
    
    if p == 1 or q == 1:
        print(2)
        exit()

    UF = UnionFind(N)
    for i in range(1, p+1):
        if i * 2 >= p + 1:
            break
        UF.unite(i, p + 1 - i)
    for i in range(1, q+1):
        if i * 2 >= q + 1:
            break
        UF.unite(N - i + 1, N - q + i)

    S = []
    for i in range(1, N+1):
        if i == UF.find_root(i):
            S.append(UF.size(i))
    S = list(set(S))
    ans = 1
    for s in S:
        ans = ans * s // gcd(ans, s)
    ans = (ans * 2) % mod
    print(ans)


if __name__ == '__main__':
    main()
0