結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 80 ms
16,256 KB
testcase_03 AC 70 ms
14,184 KB
testcase_04 AC 73 ms
14,716 KB
testcase_05 AC 41 ms
11,520 KB
testcase_06 AC 48 ms
12,160 KB
testcase_07 AC 73 ms
14,596 KB
testcase_08 AC 76 ms
15,616 KB
testcase_09 AC 83 ms
15,616 KB
testcase_10 AC 70 ms
13,564 KB
testcase_11 AC 40 ms
11,520 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 30 ms
10,752 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 83 ms
16,256 KB
testcase_22 AC 84 ms
16,384 KB
testcase_23 AC 83 ms
16,256 KB
testcase_24 AC 82 ms
16,256 KB
testcase_25 AC 82 ms
16,256 KB
testcase_26 AC 79 ms
16,256 KB
testcase_27 AC 78 ms
16,256 KB
testcase_28 AC 78 ms
16,256 KB
testcase_29 AC 79 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 P!=N or Q!=N:
    ans*=2
ans%=mod
print(ans)
0