結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー ku_material_roku_material_ro
提出日時 2016-10-22 02:34:40
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,606 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 63,624 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-23 17:00:54
合計ジャッジ時間 99,899 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
8,576 KB
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 2 ms
8,704 KB
testcase_04 AC 1,544 ms
10,496 KB
testcase_05 AC 2 ms
8,576 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
8,576 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 1,762 ms
9,780 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 33 ms
10,496 KB
testcase_13 AC 1,597 ms
8,320 KB
testcase_14 TLE -
testcase_15 AC 705 ms
8,448 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 114 ms
8,448 KB
testcase_20 AC 956 ms
10,496 KB
testcase_21 AC 94 ms
8,448 KB
testcase_22 AC 870 ms
8,448 KB
testcase_23 AC 2 ms
10,024 KB
testcase_24 TLE -
testcase_25 AC 1,881 ms
10,020 KB
testcase_26 TLE -
testcase_27 AC 1,436 ms
8,320 KB
testcase_28 AC 539 ms
9,904 KB
testcase_29 AC 725 ms
10,496 KB
testcase_30 AC 2 ms
10,496 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 1 ms
10,496 KB
testcase_34 AC 356 ms
10,496 KB
testcase_35 TLE -
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 47 ms
5,248 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 744 ms
5,248 KB
testcase_42 AC 1 ms
5,248 KB
testcase_43 TLE -
testcase_44 AC 1 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 1,918 ms
5,248 KB
testcase_47 AC 1,969 ms
5,248 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 20 ms
5,248 KB
testcase_51 AC 14 ms
5,248 KB
testcase_52 AC 223 ms
5,248 KB
testcase_53 AC 44 ms
5,248 KB
testcase_54 AC 351 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 29 ms
5,248 KB
testcase_57 AC 1,131 ms
5,248 KB
testcase_58 TLE -
testcase_59 TLE -
testcase_60 AC 464 ms
5,248 KB
testcase_61 TLE -
testcase_62 AC 548 ms
5,248 KB
testcase_63 TLE -
testcase_64 AC 331 ms
5,248 KB
testcase_65 AC 117 ms
5,248 KB
testcase_66 AC 397 ms
5,248 KB
testcase_67 AC 313 ms
5,248 KB
testcase_68 AC 388 ms
5,248 KB
testcase_69 AC 2 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 1 ms
5,248 KB
testcase_76 AC 1 ms
5,248 KB
testcase_77 AC 1 ms
5,248 KB
testcase_78 AC 2 ms
5,248 KB
testcase_79 AC 2 ms
5,248 KB
testcase_80 AC 2 ms
5,248 KB
testcase_81 AC 2 ms
5,248 KB
testcase_82 AC 2 ms
5,248 KB
testcase_83 AC 1 ms
5,248 KB
testcase_84 AC 1 ms
5,248 KB
testcase_85 AC 2 ms
5,248 KB
testcase_86 AC 2 ms
5,248 KB
testcase_87 AC 2 ms
5,248 KB
testcase_88 AC 2 ms
5,248 KB
testcase_89 AC 692 ms
5,248 KB
testcase_90 AC 1,829 ms
6,820 KB
testcase_91 TLE -
testcase_92 AC 113 ms
5,248 KB
testcase_93 TLE -
testcase_94 AC 2 ms
5,248 KB
testcase_95 TLE -
testcase_96 AC 1,501 ms
5,248 KB
testcase_97 AC 1,336 ms
5,248 KB
testcase_98 AC 326 ms
9,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
#include <string>
#include <algorithm>
using namespace std;

int kaijo(long a){
	long n=1;
	if (a > 0){
		for (long i = a; i > 0; i--){
			n *= i;
			n = n % 1000000007;
		}
	}
	else{
		n = 1;
	}
	return n;
}

int permtation(long a,long b){
	long n = 1;
	if (b != 0){
		for (long i = 0; i < b; i++){
			n *= (a-i);
			n = n % 1000000007;
		}
	}
	else{
		n = 1;
	}
	return n;
}

int main(){
	long m;
	long a = 0;
	string s;
	string s1;
	long h;
	long cnt = 0;
	long ans;
	long p, k;
	int flag=0;
	cin >> m;
	cin.ignore();
	getline(cin, s);
	if (s == "0") flag = 1;
	while (1){
		s1 = s;
		//cout << s1 << endl;
		a = s1.find(" ", 0);
		if (a == -1){
			h = stoi(s1);
			m -= h;
			cnt++;
			break;
		}
		else{
			s1.erase(a,s1.length());
			h = stoi(s1);
			m -= h;
			cnt++;
			s.erase(0, a + 1);
			//cout << s << endl;
		}
	}
	long judge = m - cnt + 1;
	//cout << m << endl;
	//cout << cnt << endl;
	//cout << judge << endl;
	if (flag == 1){
		cout << "1" << endl;
	}else if (judge <0){
		cout << "NA" << endl;
	}
	else{
		if (judge>cnt){
			p = permtation(m + 1, cnt);
			k = kaijo(cnt);
			
			while (1){
				ans = p / k;
				if (ans*k == p){
					cout << ans << endl;
					break;
				}
				else{
					p += 1000000007;
				}
			}
		}
		else{
			p = permtation(m + 1, judge);
			k = kaijo(judge);
			
			while (1){
				ans = p / k;
				if (ans*k == p){
					cout << ans << endl;
					break;
				}
				else{
					p += 1000000007;
				}
			}
		}
		//ans = kaijo(m + 1) / (kaijo(m - cnt + 1)*kaijo(cnt));
		//cout << ans << endl;
		//cout << m << endl;
	}
	return 0;
}
0