結果

問題 No.1481 Rotation ABC
ユーザー pluto77pluto77
提出日時 2021-05-07 10:41:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,264 KB
最終ジャッジ日時 2024-09-14 23:22:47
合計ジャッジ時間 11,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 360 ms
13,436 KB
testcase_14 AC 337 ms
13,540 KB
testcase_15 AC 286 ms
13,324 KB
testcase_16 AC 210 ms
12,772 KB
testcase_17 AC 194 ms
12,972 KB
testcase_18 AC 382 ms
13,592 KB
testcase_19 AC 186 ms
12,864 KB
testcase_20 AC 189 ms
12,900 KB
testcase_21 AC 349 ms
13,580 KB
testcase_22 AC 166 ms
12,696 KB
testcase_23 AC 453 ms
13,892 KB
testcase_24 AC 453 ms
13,908 KB
testcase_25 AC 455 ms
13,844 KB
testcase_26 AC 459 ms
13,996 KB
testcase_27 AC 453 ms
13,972 KB
testcase_28 AC 32 ms
10,880 KB
testcase_29 AC 32 ms
10,880 KB
testcase_30 AC 31 ms
10,880 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 #

#yuki1481
from math import *
mod=998244353
n=int(input())
s=input()
x=s.count('A')
y=s.count('B')
z=s.count('C')
if x==0 or y==0 or z==0:
 print(1)
 exit()
res=factorial(n)//(factorial(x)*factorial(y)*factorial(z))-n
print(res%mod)
0