結果

問題 No.170 スワップ文字列(Easy)
ユーザー nksk38
提出日時 2017-07-12 20:44:25
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 784 bytes
コンパイル時間 741 ms
コンパイル使用メモリ 87,088 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-07 16:46:18
合計ジャッジ時間 1,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<string>
#include<queue>
#include<vector>
#include<functional>
#include<cmath>
#include<map>
#include<stack>
#include<set>
#include<numeric>
#include<limits>

using namespace std;
typedef long long ll;
typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef pair<ll, string> pls;

map<char, int> m;

int main()
{
	string s;
	cin >> s;

	ll ans = 1;
	for (int i = 1; i <= s.size(); i++) {
		ans *= i;
	}
	
	for (int i = 0; i < s.size(); i++) {
		int cnt = 0;
		if (m[s[i]] == 0) {
			m[s[i]] = 1;
 			for (int j = 0; j < s.size(); j++) {
				if (s[i] == s[j])
					cnt++;
			}
			ll fuc = 1;
			for (int j = 1; j <= cnt; j++)
				fuc *= j;
			if(cnt != 0)
			ans /= fuc;
		}
	}
	cout << ans - 1 << endl;
	return	0;
}
0