結果

問題 No.1481 Rotation ABC
ユーザー convexineqconvexineq
提出日時 2021-04-16 21:49:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 86,912 KB
最終ジャッジ日時 2024-07-03 01:18:56
合計ジャッジ時間 10,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 WA -
testcase_02 AC 39 ms
51,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 40 ms
51,456 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 39 ms
51,712 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 254 ms
80,572 KB
testcase_14 AC 286 ms
82,556 KB
testcase_15 AC 247 ms
80,256 KB
testcase_16 AC 190 ms
78,464 KB
testcase_17 AC 173 ms
77,312 KB
testcase_18 AC 335 ms
83,840 KB
testcase_19 AC 170 ms
77,824 KB
testcase_20 AC 174 ms
77,824 KB
testcase_21 AC 302 ms
82,892 KB
testcase_22 AC 151 ms
77,312 KB
testcase_23 AC 384 ms
86,784 KB
testcase_24 AC 383 ms
86,656 KB
testcase_25 AC 384 ms
86,656 KB
testcase_26 AC 386 ms
86,784 KB
testcase_27 AC 388 ms
86,912 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
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