結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー LogicR_pimanLogicR_piman
提出日時 2016-10-22 02:30:47
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 919 bytes
コンパイル時間 753 ms
コンパイル使用メモリ 55,540 KB
実行使用メモリ 16,832 KB
最終ジャッジ日時 2024-11-23 16:56:52
合計ジャッジ時間 52,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,320 KB
testcase_01 AC 2 ms
10,624 KB
testcase_02 AC 2 ms
10,624 KB
testcase_03 AC 2 ms
8,448 KB
testcase_04 TLE -
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
10,624 KB
testcase_07 AC 2 ms
8,320 KB
testcase_08 AC 1 ms
8,448 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 3 ms
8,320 KB
testcase_13 AC 9 ms
10,016 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 15 ms
10,624 KB
testcase_19 TLE -
testcase_20 WA -
testcase_21 TLE -
testcase_22 RE -
testcase_23 AC 2 ms
5,248 KB
testcase_24 WA -
testcase_25 TLE -
testcase_26 RE -
testcase_27 RE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 2 ms
5,248 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 2 ms
5,248 KB
testcase_34 RE -
testcase_35 TLE -
testcase_36 AC 2 ms
5,248 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 RE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 2 ms
5,248 KB
testcase_43 TLE -
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 17 ms
5,248 KB
testcase_50 AC 3 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 5 ms
5,248 KB
testcase_53 AC 3 ms
5,248 KB
testcase_54 AC 6 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 3 ms
5,248 KB
testcase_57 AC 8 ms
5,248 KB
testcase_58 AC 13 ms
5,248 KB
testcase_59 AC 10 ms
5,248 KB
testcase_60 AC 5 ms
5,248 KB
testcase_61 AC 21 ms
5,248 KB
testcase_62 AC 6 ms
5,248 KB
testcase_63 AC 14 ms
5,248 KB
testcase_64 AC 6 ms
5,248 KB
testcase_65 AC 4 ms
5,248 KB
testcase_66 AC 5 ms
5,248 KB
testcase_67 AC 5 ms
5,248 KB
testcase_68 AC 6 ms
5,248 KB
testcase_69 AC 1 ms
5,248 KB
testcase_70 AC 2 ms
5,248 KB
testcase_71 AC 2 ms
5,248 KB
testcase_72 AC 2 ms
5,248 KB
testcase_73 AC 2 ms
5,248 KB
testcase_74 AC 2 ms
5,248 KB
testcase_75 AC 2 ms
5,248 KB
testcase_76 AC 1 ms
5,248 KB
testcase_77 AC 1 ms
5,248 KB
testcase_78 AC 1 ms
5,248 KB
testcase_79 AC 2 ms
5,248 KB
testcase_80 AC 2 ms
5,248 KB
testcase_81 AC 1 ms
5,248 KB
testcase_82 AC 2 ms
5,248 KB
testcase_83 AC 2 ms
5,248 KB
testcase_84 AC 2 ms
5,248 KB
testcase_85 AC 1 ms
5,248 KB
testcase_86 AC 2 ms
5,248 KB
testcase_87 AC 1 ms
5,248 KB
testcase_88 AC 2 ms
5,248 KB
testcase_89 AC 6 ms
5,248 KB
testcase_90 AC 10 ms
5,248 KB
testcase_91 AC 16 ms
5,248 KB
testcase_92 AC 4 ms
5,248 KB
testcase_93 AC 10 ms
5,248 KB
testcase_94 AC 2 ms
5,248 KB
testcase_95 AC 11 ms
5,248 KB
testcase_96 AC 9 ms
5,248 KB
testcase_97 AC 8 ms
5,248 KB
testcase_98 AC 6 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>

using namespace std;

int main() {
	long long i = 0, n = 0, a = 0, b = 0, sum = 0, now = 0, max, ans = 0, c = 0, d = 0, e = 0, deno = 1, nu = 1;
	string s;

	cin >> max;
	cin.ignore();
	getline(cin, s);


	while (s[i] != '\0') {
		if (s[i] == ' ') {
			sum += now;
			now = 0;
			a++;
		}
		else {
			now = now * 10 + s[i] - 48;
		}
		i++;
	}
	sum += now;
	a++;

	b = max - sum - a + 1;
	n = a + b;
	

	//cout << n << " "<< a <<" "<< b << endl;)

	if (b == 0 || sum == 0) {	
		cout << "1" << endl;
	}
	else if (b < 0) {
		cout << "NA" << endl;
	}
	else {
		if (a > b) {
			c = a;
			d = b;
		}
		else {
			c = b;
			d = a;
		}
		for (i = 0; i < d; i++) {
			nu *= (n - i);
			deno *= (i + 1);
		}
		nu %= 1000000007;
		deno %= 1000000007;

		e = nu % deno;

		while (e != 0) {
			nu += 1000000007;
			e = nu % deno;
		}

		ans = nu / deno;
		
		cout << ans << endl;
	}
	return 0;
}
0