結果

問題 No.1481 Rotation ABC
ユーザー convexineqconvexineq
提出日時 2021-04-16 21:50:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 214 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 87,296 KB
最終ジャッジ日時 2024-07-03 01:22:26
合計ジャッジ時間 12,611 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 43 ms
52,224 KB
testcase_07 AC 43 ms
51,968 KB
testcase_08 AC 43 ms
51,968 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 AC 42 ms
51,840 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 265 ms
81,024 KB
testcase_14 AC 302 ms
82,816 KB
testcase_15 AC 263 ms
80,128 KB
testcase_16 AC 203 ms
78,716 KB
testcase_17 AC 190 ms
78,032 KB
testcase_18 AC 350 ms
84,224 KB
testcase_19 AC 182 ms
78,336 KB
testcase_20 AC 186 ms
78,180 KB
testcase_21 AC 318 ms
83,200 KB
testcase_22 AC 166 ms
77,440 KB
testcase_23 AC 400 ms
87,040 KB
testcase_24 AC 400 ms
87,040 KB
testcase_25 AC 403 ms
87,296 KB
testcase_26 AC 399 ms
87,040 KB
testcase_27 AC 405 ms
86,916 KB
testcase_28 AC 370 ms
84,120 KB
testcase_29 AC 152 ms
77,568 KB
testcase_30 AC 244 ms
80,512 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
from math import factorial as f
ans = f(len(s))
for i in "ABC":
    c = s.count(i)
    if c:
        ans //= f(c)
    else:
        print(1)
        exit()
print((ans-len(s))%998244353)
0