結果

問題 No.411 昇順昇順ソート
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-08-13 02:36:23
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 579 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 62,688 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-04-25 06:10:27
合計ジャッジ時間 4,437 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 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 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 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 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 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 <iostream>
#include <algorithm>
#include <vector>
#include <cstdio>
using namespace std;

int main(void){
	int n, k; cin >> n >> k;
	vector<int> v;
	v.push_back(k);
	for (int i = 1; i <= n; ++i){
		if(i != k) v.push_back(i);
	}
	int sum = 0;
	do{
		if(v[0] != k) break;
		/*
		for (int i = 0; i < v.size(); ++i){
			printf("%d ", v[i]);
		}
		printf("\n");
		*/
		int flag = 0;
		for (int i = 0; i < v.size() - 1; ++i){
			if(v[i] > v[i + 1]){
				flag++;
			}
		}
		if(flag == 1) sum++;
	}while(next_permutation(v.begin(), v.end()));

	printf("%d\n", sum);
	return 0;
}
0