結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | Twizz |
提出日時 | 2017-05-17 09:18:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 652 bytes |
コンパイル時間 | 1,170 ms |
コンパイル使用メモリ | 159,272 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-17 12:26:25 |
合計ジャッジ時間 | 2,510 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
ソースコード
#include"bits/stdc++.h" #include<fstream> #include<random> //#include<bits/stdc++.h> using namespace std; #define print(x) cout<<x<<endl; #define rep(i,a,b) for(int i=a;i<b;i++) typedef long long ll; const ll mod = 573; #define pi 3.141592 string s; ll ex(int n) { if (n == 1)return 1; return n*ex(n - 1)%mod; } int main() { cin >> s; ll count[26] = {}; int n = s.size(); rep(i, 0, n) { rep(j, 0, 26) { if (j == s[i] - 'A') { count[j]++; } } } ll ch = ex(n)%mod; rep(i, 0, 26) { if(count[i]>1)ch /= ex(count[i])%mod; } if (ch%mod == 0) { print(0); } else print(ch%mod - 1); //rep(i, 0, 26)print(count[i]); return 0; }