結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | titia |
提出日時 | 2022-04-28 00:43:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 359 bytes |
コンパイル時間 | 76 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 66,560 KB |
最終ジャッジ日時 | 2024-06-28 07:50:41 |
合計ジャッジ時間 | 5,197 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 300 ms
66,560 KB |
testcase_01 | AC | 311 ms
66,304 KB |
testcase_02 | AC | 299 ms
66,432 KB |
testcase_03 | AC | 300 ms
66,304 KB |
testcase_04 | AC | 298 ms
66,176 KB |
testcase_05 | WA | - |
testcase_06 | AC | 296 ms
66,304 KB |
testcase_07 | AC | 303 ms
66,304 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 307 ms
66,560 KB |
testcase_11 | AC | 312 ms
66,432 KB |
testcase_12 | AC | 304 ms
66,176 KB |
ソースコード
from collections import Counter S=input() mod=573 N=1020 Combi=[[] for i in range(N+1)] Combi[0]=[1,0] for i in range(1,N+1): Combi[i].append(1) for j in range(i): Combi[i].append(Combi[i-1][j]+Combi[i-1][j+1]) Combi[i].append(0) C=Counter(S) ANS=1 n=len(S) for c in C: ANS*=Combi[n][C[c]] n-=C[c] ANS%=mod print(ANS-1)