結果

問題 No.411 昇順昇順ソート
ユーザー HAHAHAHAHAHA
提出日時 2016-08-13 16:01:14
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 384 bytes
コンパイル時間 1,447 ms
コンパイル使用メモリ 162,660 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-04-25 06:10:46
合計ジャッジ時間 5,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,448 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;


int main() {
	int n,k,cnt=0;
	cin >> n >> k;
	vector<int> v(n);
	for(int i=1;i<=n;i++){
		v[i-1]=i;
	}
	sort(v.begin(),v.end());
	do{
		int a=0;
		if(v[0]==k){
			for(int i=1;i<n;i++){
				if(v[i]<v[i-1]){
					a++;
				}
			}
			if(a==1) cnt++;
		}
		
	}while(next_permutation(v.begin(),v.end()));
	
	
	cout << cnt << endl;
	return 0;
}
0