結果

問題 No.411 昇順昇順ソート
ユーザー nCk_cvnCk_cv
提出日時 2016-08-28 01:05:31
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 798 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 77,216 KB
実行使用メモリ 46,720 KB
最終ジャッジ日時 2024-11-08 20:10:20
合計ジャッジ時間 10,247 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
46,300 KB
testcase_01 AC 131 ms
41,184 KB
testcase_02 AC 129 ms
41,208 KB
testcase_03 AC 127 ms
41,600 KB
testcase_04 AC 130 ms
41,388 KB
testcase_05 AC 128 ms
41,212 KB
testcase_06 AC 128 ms
41,260 KB
testcase_07 AC 129 ms
41,044 KB
testcase_08 AC 127 ms
41,424 KB
testcase_09 AC 133 ms
41,016 KB
testcase_10 AC 129 ms
41,148 KB
testcase_11 AC 129 ms
41,080 KB
testcase_12 AC 131 ms
41,372 KB
testcase_13 AC 128 ms
41,088 KB
testcase_14 AC 131 ms
41,136 KB
testcase_15 AC 129 ms
40,928 KB
testcase_16 AC 131 ms
40,916 KB
testcase_17 AC 134 ms
41,232 KB
testcase_18 AC 133 ms
41,276 KB
testcase_19 AC 122 ms
40,012 KB
testcase_20 AC 133 ms
41,216 KB
testcase_21 AC 132 ms
41,304 KB
testcase_22 AC 135 ms
41,088 KB
testcase_23 AC 130 ms
40,952 KB
testcase_24 AC 132 ms
41,176 KB
testcase_25 AC 132 ms
41,372 KB
testcase_26 AC 131 ms
41,072 KB
testcase_27 AC 278 ms
41,560 KB
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
		static int INF = 2 << 27;
		public static void main(String[] args) {
			Scanner sc = new Scanner(System.in);
			int N = sc.nextInt();
			int K = sc.nextInt();
			int ans = dfs(0,K,new int[N],new boolean[N],false);
			System.out.println(ans);
		}
		static int dfs(int a, int b, int[] c, boolean[] d, boolean e) {
			if(a == 0) {
				c[a] = b;
				d[b-1] = true;
				return dfs(a+1,b,c,d,e);
			}
			if(a == c.length) {
				if(e)
				return 1;
				return 0;
			}
			int ret = 0;
			for(int i = 0; i < c.length; i++) {
				if(d[i]) continue;
				boolean nex = e;
				if(c[a-1] > i+1) {
					if(e) continue;
					nex = true;
				}
				c[a] = i+1;
				d[i] = true;
				ret += dfs(a+1,b,c,d,nex);
				c[a] = 0;
				d[i] = false;
			}
			return ret;
		}

}
0