結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー GrenacheGrenache
提出日時 2016-07-08 22:45:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,021 bytes
コンパイル時間 3,348 ms
コンパイル使用メモリ 78,776 KB
実行使用メモリ 91,544 KB
最終ジャッジ日時 2024-10-13 06:11:58
合計ジャッジ時間 21,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
54,172 KB
testcase_01 AC 105 ms
54,288 KB
testcase_02 AC 101 ms
54,304 KB
testcase_03 WA -
testcase_04 AC 104 ms
54,280 KB
testcase_05 AC 104 ms
54,324 KB
testcase_06 AC 105 ms
54,176 KB
testcase_07 AC 104 ms
54,200 KB
testcase_08 AC 109 ms
54,328 KB
testcase_09 AC 162 ms
60,680 KB
testcase_10 AC 154 ms
59,216 KB
testcase_11 AC 172 ms
57,628 KB
testcase_12 AC 153 ms
58,812 KB
testcase_13 AC 279 ms
62,328 KB
testcase_14 AC 176 ms
57,752 KB
testcase_15 AC 143 ms
57,816 KB
testcase_16 AC 153 ms
58,864 KB
testcase_17 AC 188 ms
65,488 KB
testcase_18 AC 351 ms
69,152 KB
testcase_19 AC 105 ms
54,508 KB
testcase_20 AC 104 ms
54,308 KB
testcase_21 AC 104 ms
54,068 KB
testcase_22 AC 105 ms
54,248 KB
testcase_23 AC 107 ms
54,020 KB
testcase_24 AC 105 ms
54,076 KB
testcase_25 AC 104 ms
54,168 KB
testcase_26 AC 104 ms
54,300 KB
testcase_27 AC 106 ms
54,156 KB
testcase_28 AC 106 ms
54,208 KB
testcase_29 AC 104 ms
54,404 KB
testcase_30 AC 102 ms
54,160 KB
testcase_31 AC 106 ms
54,216 KB
testcase_32 AC 107 ms
54,216 KB
testcase_33 AC 105 ms
54,188 KB
testcase_34 AC 102 ms
54,344 KB
testcase_35 AC 105 ms
54,356 KB
testcase_36 AC 103 ms
54,152 KB
testcase_37 AC 103 ms
54,136 KB
testcase_38 AC 102 ms
54,044 KB
testcase_39 AC 107 ms
54,380 KB
testcase_40 AC 103 ms
54,192 KB
testcase_41 AC 105 ms
54,124 KB
testcase_42 AC 105 ms
54,228 KB
testcase_43 AC 103 ms
54,084 KB
testcase_44 AC 104 ms
54,192 KB
testcase_45 AC 103 ms
54,152 KB
testcase_46 AC 104 ms
54,112 KB
testcase_47 AC 104 ms
54,152 KB
testcase_48 AC 105 ms
54,372 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 AC 106 ms
54,348 KB
testcase_70 AC 109 ms
54,156 KB
testcase_71 AC 106 ms
54,212 KB
testcase_72 AC 109 ms
54,040 KB
testcase_73 AC 102 ms
54,132 KB
testcase_74 AC 105 ms
54,364 KB
testcase_75 AC 107 ms
54,280 KB
testcase_76 AC 106 ms
54,308 KB
testcase_77 AC 108 ms
54,068 KB
testcase_78 AC 108 ms
54,184 KB
testcase_79 AC 106 ms
54,024 KB
testcase_80 AC 104 ms
54,284 KB
testcase_81 AC 103 ms
54,104 KB
testcase_82 AC 104 ms
54,172 KB
testcase_83 AC 109 ms
54,080 KB
testcase_84 AC 107 ms
54,096 KB
testcase_85 AC 104 ms
54,372 KB
testcase_86 AC 103 ms
54,084 KB
testcase_87 AC 105 ms
54,032 KB
testcase_88 AC 103 ms
54,184 KB
testcase_89 AC 240 ms
61,628 KB
testcase_90 AC 290 ms
63,656 KB
testcase_91 AC 346 ms
69,888 KB
testcase_92 AC 172 ms
61,684 KB
testcase_93 AC 327 ms
66,088 KB
testcase_94 AC 123 ms
55,720 KB
testcase_95 AC 334 ms
65,440 KB
testcase_96 AC 279 ms
62,348 KB
testcase_97 AC 280 ms
62,456 KB
testcase_98 AC 231 ms
60,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder389 {

    public static void main(String[] args) {
    	BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

    	Printer pr = new Printer(System.out);

		try {
			int m = Integer.parseInt(br.readLine());
			List<Integer> h = new ArrayList<>();
			int sum = 0;
			for (String s : br.readLine().split(" ")) {
				int tmp = Integer.parseInt(s);
				h.add(tmp);
				sum += tmp;
			}

			preCombi2(1_000_000);

			int k = h.size();
			if (sum == 0) {
				k = 0;
			}

			pr.println(C(m - sum - (k - 1) + k, k));
		} catch (NumberFormatException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
		} catch (IOException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
		}

        pr.close();
    }

	private static int MOD = 1_000_000_007;
	private static long[] fact;
	private static long[] ifact;

	private static void preCombi2(int size) {
		// cache size need size * 2 * 16.
		fact = new long[size + 1];
		fact[0] = 1;
		for (int i = 1; i <= size; i++) {
			fact[i] = fact[i - 1] * i % MOD;
		}

		ifact = new long[size + 1];
		ifact[0] = 1;

		int loop = MOD - 2;
		long x = fact[size];
		ifact[size] = 1;
		while (loop > 0) {
			if (loop % 2 == 1) {
				ifact[size] = ifact[size] * x % MOD;
			}
			x = x * x % MOD;
			loop /= 2;
		}

		for (int i = size - 1; i >= 0; i--) {
			ifact[i] = ifact[i + 1] * (i + 1) % MOD;
		}
	}

	private static int C(int n, int r) {
		if (r > n) {
			return 0;
		}

		return (int)(((fact[n] * ifact[n - r]) % MOD) * ifact[r] % MOD);
	}

	@SuppressWarnings("unused")
	private static int P(int n, int r) {
		if (r > n) {
			return 0;
		}

		return (int)((fact[n] * ifact[n -r]) % MOD);
	}

	@SuppressWarnings("unused")
	private static int H(int n, int r) {
		if (n == 0 && r == 0) {
			return 1;
		}

		return C(n + r - 1, r);
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0