結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 77 ms
16,512 KB
testcase_03 AC 65 ms
14,224 KB
testcase_04 AC 68 ms
14,972 KB
testcase_05 AC 38 ms
11,520 KB
testcase_06 AC 45 ms
12,032 KB
testcase_07 AC 65 ms
14,720 KB
testcase_08 AC 66 ms
15,744 KB
testcase_09 AC 75 ms
15,616 KB
testcase_10 AC 64 ms
13,812 KB
testcase_11 AC 35 ms
11,520 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 27 ms
10,880 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 92 ms
16,256 KB
testcase_21 AC 77 ms
16,384 KB
testcase_22 AC 78 ms
16,384 KB
testcase_23 AC 77 ms
16,384 KB
testcase_24 AC 74 ms
16,384 KB
testcase_25 AC 76 ms
16,256 KB
testcase_26 AC 70 ms
16,384 KB
testcase_27 AC 71 ms
16,256 KB
testcase_28 AC 69 ms
16,384 KB
testcase_29 AC 72 ms
16,384 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)
ans*=2
ans%=mod
print(ans)
0