結果

問題 No.2045 Two Reflections
ユーザー vwxyzvwxyz
提出日時 2023-05-11 18:34:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-05-05 16:24:42
合計ジャッジ時間 2,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 73 ms
16,384 KB
testcase_03 AC 64 ms
14,356 KB
testcase_04 AC 64 ms
14,844 KB
testcase_05 AC 34 ms
11,392 KB
testcase_06 AC 41 ms
12,288 KB
testcase_07 AC 63 ms
14,848 KB
testcase_08 AC 65 ms
15,616 KB
testcase_09 AC 72 ms
15,488 KB
testcase_10 AC 65 ms
13,688 KB
testcase_11 AC 33 ms
11,520 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 26 ms
10,880 KB
testcase_15 AC 24 ms
10,752 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 AC 83 ms
15,616 KB
testcase_18 AC 78 ms
16,256 KB
testcase_19 AC 82 ms
16,256 KB
testcase_20 WA -
testcase_21 AC 69 ms
16,384 KB
testcase_22 AC 72 ms
16,384 KB
testcase_23 AC 70 ms
16,384 KB
testcase_24 AC 69 ms
16,384 KB
testcase_25 AC 71 ms
16,384 KB
testcase_26 AC 68 ms
16,384 KB
testcase_27 AC 72 ms
16,384 KB
testcase_28 AC 66 ms
16,384 KB
testcase_29 AC 69 ms
16,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
import math
def LCM(a,b):
    return a*b//math.gcd(a,b)

N,P,Q=map(int,readline().split())
lst=[i for i in range(N)]
lst[:P]=lst[:P][::-1]
lst[-Q:]=lst[-Q:][::-1]
ans=1
mod=998244353
seen=[False]*N
for i in range(N):
    if seen[i]:
        continue
    cnt=0
    while not seen[i]:
        seen[i]=True
        cnt+=1
        i=lst[i]
    ans=LCM(ans,cnt)
if 2<=P<N and 2<=Q<N:
    ans*=2
ans%=mod
print(ans)
0