結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 69 ms
16,384 KB
testcase_03 AC 68 ms
14,228 KB
testcase_04 AC 64 ms
14,848 KB
testcase_05 AC 35 ms
11,392 KB
testcase_06 AC 42 ms
12,160 KB
testcase_07 AC 64 ms
14,592 KB
testcase_08 AC 67 ms
15,872 KB
testcase_09 AC 75 ms
15,616 KB
testcase_10 AC 60 ms
13,824 KB
testcase_11 AC 32 ms
11,520 KB
testcase_12 AC 25 ms
10,880 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 AC 88 ms
15,616 KB
testcase_18 AC 79 ms
16,384 KB
testcase_19 AC 80 ms
16,384 KB
testcase_20 AC 89 ms
16,384 KB
testcase_21 AC 75 ms
16,384 KB
testcase_22 AC 70 ms
16,256 KB
testcase_23 AC 73 ms
16,384 KB
testcase_24 AC 71 ms
16,384 KB
testcase_25 AC 73 ms
16,256 KB
testcase_26 AC 73 ms
16,384 KB
testcase_27 AC 69 ms
16,512 KB
testcase_28 AC 69 ms
16,256 KB
testcase_29 AC 74 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 and 2<=Q:
    ans*=2
ans%=mod
print(ans)
0