mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 08:38:48 +00:00
17 lines
238 B
C++
17 lines
238 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int ans;
|
|
string s;
|
|
|
|
int main() {
|
|
cin >> s;
|
|
sort(s.begin(), s.end());
|
|
do
|
|
ans++;
|
|
while (next_permutation(s.begin(), s.end()));
|
|
cout << ans << endl;
|
|
return 0;
|
|
}
|