結果
問題 | No.171 スワップ文字列(Med) |
ユーザー | hogeover30 |
提出日時 | 2015-03-23 01:10:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 645 bytes |
コンパイル時間 | 476 ms |
コンパイル使用メモリ | 60,032 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 00:20:20 |
合計ジャッジ時間 | 1,020 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | RE | - |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> using namespace std; const int mod=573; int extgcd(int a, int b, int& x, int& y) { int d=a; if (b) { d=extgcd(b, a%b, y, x); y-=a/b*x; } else { x=1; y=0; } return d; } int inv(int a) { int x, y; extgcd(a, mod, x, y); return (mod+x%mod)%mod; } int main() { string s; cin>>s; int a[256]={}, f[600]={}; f[0]=1; for(int i=1;i<600;++i) f[i]=f[i-1]*i%mod; for(char c: s) a[c]++; int res=f[s.size()]; for(int v: a) if (v) res=res*inv(f[v])%mod; res=(res-1+mod)%mod; cout<<res<<endl; }