結果

問題 No.1481 Rotation ABC
ユーザー convexineqconvexineq
提出日時 2021-04-16 22:05:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 390 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 87,168 KB
最終ジャッジ日時 2024-07-03 01:52:31
合計ジャッジ時間 6,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 43 ms
51,456 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 41 ms
51,456 KB
testcase_05 AC 41 ms
51,584 KB
testcase_06 AC 41 ms
51,456 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 42 ms
51,968 KB
testcase_09 AC 43 ms
51,712 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 AC 42 ms
51,584 KB
testcase_12 AC 42 ms
51,840 KB
testcase_13 AC 268 ms
80,520 KB
testcase_14 AC 286 ms
82,432 KB
testcase_15 AC 244 ms
80,336 KB
testcase_16 AC 186 ms
78,864 KB
testcase_17 AC 173 ms
78,292 KB
testcase_18 AC 334 ms
84,364 KB
testcase_19 AC 174 ms
77,872 KB
testcase_20 AC 172 ms
77,952 KB
testcase_21 AC 306 ms
83,200 KB
testcase_22 AC 154 ms
77,696 KB
testcase_23 AC 390 ms
87,040 KB
testcase_24 AC 386 ms
87,168 KB
testcase_25 AC 385 ms
87,096 KB
testcase_26 AC 387 ms
87,040 KB
testcase_27 AC 388 ms
86,784 KB
testcase_28 AC 42 ms
52,352 KB
testcase_29 AC 40 ms
52,352 KB
testcase_30 AC 38 ms
52,224 KB
testcase_31 AC 39 ms
52,352 KB
testcase_32 AC 43 ms
52,860 KB
testcase_33 AC 42 ms
52,688 KB
testcase_34 AC 41 ms
52,352 KB
testcase_35 AC 40 ms
52,480 KB
testcase_36 AC 42 ms
52,480 KB
testcase_37 AC 41 ms
52,096 KB
testcase_38 AC 38 ms
52,480 KB
testcase_39 AC 38 ms
52,608 KB
testcase_40 AC 39 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
F = 0
for lst in ["ABC","BCA","CAB"]:
    v = 0
    for i in lst:
        v = s.find(i,v)+1
        if v==0:
            break
    F = max(F,v)
if F==0:
    print(1)
    exit()
from math import factorial as f
r = f(len(s))
for i in "ABC": r //= f(s.count(i))
print((r-len(s))%998244353)
0