結果

問題 No.411 昇順昇順ソート
ユーザー 37zigen37zigen
提出日時 2016-08-12 22:47:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 645 bytes
コンパイル時間 3,678 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-11-07 15:38:15
合計ジャッジ時間 9,319 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,288 KB
testcase_01 AC 131 ms
41,016 KB
testcase_02 AC 131 ms
40,972 KB
testcase_03 AC 130 ms
40,928 KB
testcase_04 AC 133 ms
41,288 KB
testcase_05 AC 115 ms
39,884 KB
testcase_06 AC 130 ms
41,228 KB
testcase_07 AC 131 ms
40,660 KB
testcase_08 AC 119 ms
40,424 KB
testcase_09 AC 117 ms
40,144 KB
testcase_10 AC 132 ms
41,200 KB
testcase_11 AC 117 ms
40,056 KB
testcase_12 AC 118 ms
40,280 KB
testcase_13 AC 114 ms
39,844 KB
testcase_14 AC 120 ms
40,792 KB
testcase_15 AC 129 ms
41,468 KB
testcase_16 AC 127 ms
40,904 KB
testcase_17 AC 119 ms
40,216 KB
testcase_18 AC 132 ms
41,052 KB
testcase_19 AC 116 ms
39,968 KB
testcase_20 AC 122 ms
40,812 KB
testcase_21 AC 129 ms
41,016 KB
testcase_22 AC 116 ms
39,828 KB
testcase_23 AC 130 ms
41,188 KB
testcase_24 WA -
testcase_25 AC 127 ms
40,860 KB
testcase_26 AC 131 ms
41,176 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 130 ms
40,992 KB
testcase_30 AC 130 ms
40,892 KB
testcase_31 AC 117 ms
39,876 KB
testcase_32 AC 118 ms
39,636 KB
testcase_33 AC 130 ms
41,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

import java.util.Scanner;

public class Q411 {
	public static void main(String[] args) {
		new Q411().solver();
	}

	void solver() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int K = sc.nextInt();
		if (K == 1&&N==2) {
			System.out.println(0);
			return;
		}
		long ans = 0;
		for (int i = 0; i <= N - K; i++) {
			ans += nCk(N - K, i);
		}
		System.out.println(ans);
	}

	static long nCk(int n, int k) {
		if (n < k)
			return 0;
		else {
			return (fact(n) / fact(n - k) / fact(k));
		}
	}

	static long fact(int n) {
		long ans = 1;
		for (int i = 1; i <= n; i++)
			ans *= i;
		return ans;
	}
}
0