結果
問題 | No.170 スワップ文字列(Easy) |
ユーザー | ixmel |
提出日時 | 2017-03-27 20:18:37 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,104 bytes |
コンパイル時間 | 769 ms |
コンパイル使用メモリ | 86,208 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 12:17:57 |
合計ジャッジ時間 | 1,740 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | RE | - |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include<iostream>#include<vector>#include<string>#include<algorithm>#include<map>#include<set>#include<utility>#include<cmath>#include<cstring>#include<queue>#include<stack>#include<cstdio>#include<sstream>#include<iomanip>#include<assert.h>#define loop(i,a,b) for(int i=a;i<b;i++)#define rep(i,a) loop(i,0,a)#define pb push_back#define all(in) in.begin(),in.end()#define shosu(x) fixed<<setprecision(x)using namespace std;//kaewasuretyuuitypedef long long ll;typedef pair<int,int> pii;typedef vector<int> vi;typedef vector<vi> vvi;typedef vector<pii> vp;typedef vector<vp> vvp;typedef vector<string> vs;typedef vector<double> vd;typedef vector<vd> vvd;typedef pair<int,pii> pip;typedef vector<pip>vip;const double PI=acos(-1);const double EPS=1e-7;const int inf=1e8;const ll INF=1e16;int dx[4]={0,1,0,-1};int dy[4]={1,0,-1,0};int main(){string s;cin>>s;vi co(30);rep(i,s.size())co[s[i]-'0']++;vi f(10);f[0]=f[1]=1;loop(i,2,10)f[i]=f[i-1]*i;int out=f[s.size()];// rep(i,30)cout<<" "<<co[i];rep(i,30)out/=f[co[i]];cout<<out-1<<endl;}