結果
| 問題 |
No.170 スワップ文字列(Easy)
|
| コンテスト | |
| ユーザー |
mayoko_
|
| 提出日時 | 2015-03-22 23:38:22 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 657 bytes |
| コンパイル時間 | 912 ms |
| コンパイル使用メモリ | 80,832 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-23 00:15:39 |
| 合計ジャッジ時間 | 1,547 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
#include <sstream>
#include <string>
#include <vector>
#include <map>
#include <algorithm>
#include <iostream>
#include <utility>
#include <set>
#include <cctype>
#include <queue>
#include <stack>
#include <cstdio>
#include <cstdlib>
#include <cmath>
using namespace std;
typedef long long ll;
int main(void) {
string s;
cin >> s;
int n = s.size();
ll ans = 1;
for (int i = 1; i <= n; i++) ans *= i;
map<char, int> m;
for (auto c : s) {
m[c]++;
}
for (auto el : m) {
ll tmp = 1;
for (int i = 1; i <= el.second; i++) tmp *= i;
ans /= tmp;
}
cout << ans-1 << endl;
return 0;
}
mayoko_