結果

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <stdio.h>
using namespace std;

int main() {
	// your code goes here
	std::string str;
	std::cin>>str;
	std::sort(str.begin(),str.end());
	int ans=0;
	int perm=1;
	for(int i=0;i<str.size();i++){
		perm*=(i+1);
	}
	int c=2;
	int div=1;
	for(int i=0;i<str.size()-1;i++){
		if(str[i]==str[i+1]){
			div*=c;
			c++;
		}else{
			perm/=div;
			div=1;
			c=2;
		}
	}
	printf("%d\n",perm/div-1);
	return 0;
}
0