結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | たこし |
提出日時 | 2015-06-07 22:12:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,224 bytes |
コンパイル時間 | 784 ms |
コンパイル使用メモリ | 98,780 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-07-06 14:37:06 |
合計ジャッジ時間 | 1,386 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,244 KB |
testcase_01 | AC | 4 ms
7,392 KB |
testcase_02 | AC | 3 ms
7,424 KB |
testcase_03 | AC | 3 ms
7,264 KB |
testcase_04 | AC | 5 ms
7,424 KB |
testcase_05 | WA | - |
testcase_06 | AC | 4 ms
7,296 KB |
testcase_07 | AC | 4 ms
7,252 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 4 ms
7,296 KB |
testcase_11 | AC | 4 ms
7,268 KB |
testcase_12 | AC | 4 ms
7,124 KB |
ソースコード
#include <vector> #include <list> #include <map> #include <set> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <cctype> #include <string> #include <cstring> #include <ctime> #include <fstream> #include <queue> #include <complex> #define INF 1145141919 #define INF_INT_MAX 2147483647 #define INF_LL_MAX 9223372036854775807 #define EPS 1e-10 #define Pi acos(-1) #define LL long long #define ULL unsigned long long using namespace std; #define mod 573 #define MAX_C 1001 int C[MAX_C][MAX_C]; void init(){ C[0][0] = 1; for (int i = 1; i < MAX_C; i++){ for (int j = 0; j <= i; j++){ if (j == 0 || j == i){ C[i][j] = C[i - 1][0]; } else{ C[i][j] = (C[i - 1][j - 1] + C[i - 1][j]) % mod; } } } } int main() { init(); string S; cin >> S; map<char, int> M; for (int i = 0; i < S.length(); i++){ M[S[i]]++; } int N = S.length(); int ans = 1; for (char c = 'A'; c <= 'Z'; c++){ ans = (ans * C[N][M[c]]) % mod; N -= M[c]; } cout << (ans-1) % mod << endl; return 0; }