結果
| 問題 | No.170 スワップ文字列(Easy) | 
| コンテスト | |
| ユーザー |  knewknowl | 
| 提出日時 | 2015-04-26 11:19:13 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 15 ms / 5,000 ms | 
| コード長 | 272 bytes | 
| コンパイル時間 | 970 ms | 
| コンパイル使用メモリ | 73,628 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-12-23 00:26:30 | 
| 合計ジャッジ時間 | 1,679 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 21 | 
ソースコード
#include <iostream>
#include <algorithm>
#include <map>
using namespace std;
map<string,int> tbl;
int main(){
  string s;
  cin>>s;
  sort(s.begin(),s.end());
  do{
    tbl[s]=1;
  }while(next_permutation(s.begin(),s.end()));
  cout << tbl.size()-1 << endl;
  return 0;
}
            
            
            
        