結果

問題 No.2045 Two Reflections
ユーザー chineristACchineristAC
提出日時 2022-08-19 22:53:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,149 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 76,020 KB
最終ジャッジ日時 2024-10-08 10:08:53
合計ジャッジ時間 3,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
66,040 KB
testcase_01 AC 57 ms
66,060 KB
testcase_02 AC 72 ms
72,920 KB
testcase_03 AC 74 ms
72,556 KB
testcase_04 AC 79 ms
75,408 KB
testcase_05 AC 73 ms
73,804 KB
testcase_06 AC 71 ms
71,788 KB
testcase_07 AC 76 ms
73,808 KB
testcase_08 AC 79 ms
76,020 KB
testcase_09 AC 78 ms
75,052 KB
testcase_10 AC 75 ms
74,288 KB
testcase_11 AC 74 ms
73,728 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 55 ms
65,812 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 69 ms
72,060 KB
testcase_21 AC 73 ms
72,680 KB
testcase_22 AC 72 ms
72,420 KB
testcase_23 AC 74 ms
72,708 KB
testcase_24 AC 73 ms
72,988 KB
testcase_25 AC 73 ms
73,640 KB
testcase_26 AC 72 ms
72,276 KB
testcase_27 AC 73 ms
73,276 KB
testcase_28 AC 73 ms
71,988 KB
testcase_29 AC 72 ms
72,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict,Counter
from heapq import heapify,heappop,heappush
from itertools import cycle, permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

spf = [i for i in range(10**5+1)]
for p in range(2,10**5+1):
    if spf[p]==p:
        for n in range(p,10**5+1,p):
            spf[n] = p


mod = 998244353

N,p,q = mi()

P = [i for i in range(N)]
for i in range(p//2):
    P[i],P[p-1-i] = P[p-1-i],P[i]


for i in range(q//2):
    P[-i-1],P[-(q-1-i)-1] = P[-(q-1-i)-1],P[-i-1]

LCM = [0] * (N+1)
visit = [False] * N
for i in range(N):
    if visit[i]:
        continue
    n = 1
    pos = P[i]
    visit[i] = True
    while pos!=i:
        visit[pos] = True
        n += 1
        pos = P[pos]

    tmp = n
    while tmp!=1:
        p = spf[tmp]
        k = 0
        while tmp%p==0:
            k += 1
            tmp //= p
        LCM[p] = max(LCM[p],k)

res = 1
for p in range(2,N+1):
    if spf[p]==p:
        res *= pow(p,LCM[p],998244353)
        res %= 998244353

print((res*2) % 998244353)





0