結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー ku_material_roku_material_ro
提出日時 2016-10-22 02:23:12
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,524 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 63,616 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-23 16:59:08
合計ジャッジ時間 100,267 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 WA -
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 1 ms
8,704 KB
testcase_04 AC 1,545 ms
10,496 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,771 ms
10,496 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 33 ms
10,496 KB
testcase_13 AC 1,620 ms
8,320 KB
testcase_14 TLE -
testcase_15 AC 704 ms
8,448 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 115 ms
8,448 KB
testcase_20 AC 971 ms
10,496 KB
testcase_21 AC 95 ms
8,320 KB
testcase_22 AC 870 ms
8,448 KB
testcase_23 AC 2 ms
8,448 KB
testcase_24 TLE -
testcase_25 AC 1,887 ms
8,448 KB
testcase_26 TLE -
testcase_27 AC 1,438 ms
8,448 KB
testcase_28 AC 542 ms
9,520 KB
testcase_29 AC 727 ms
9,908 KB
testcase_30 AC 2 ms
9,644 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 2 ms
9,644 KB
testcase_34 AC 359 ms
9,780 KB
testcase_35 TLE -
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 47 ms
5,248 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 746 ms
5,248 KB
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 AC 1,937 ms
5,248 KB
testcase_47 AC 1,875 ms
5,248 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 21 ms
5,248 KB
testcase_51 AC 15 ms
5,248 KB
testcase_52 AC 227 ms
5,248 KB
testcase_53 AC 44 ms
5,248 KB
testcase_54 AC 345 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 30 ms
5,248 KB
testcase_57 AC 1,077 ms
5,248 KB
testcase_58 TLE -
testcase_59 TLE -
testcase_60 AC 470 ms
5,248 KB
testcase_61 TLE -
testcase_62 AC 534 ms
5,248 KB
testcase_63 TLE -
testcase_64 AC 309 ms
5,248 KB
testcase_65 AC 109 ms
5,248 KB
testcase_66 AC 398 ms
5,248 KB
testcase_67 AC 316 ms
5,248 KB
testcase_68 AC 379 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 2 ms
5,248 KB
testcase_76 AC 2 ms
5,248 KB
testcase_77 AC 2 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 2 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 2 ms
5,248 KB
testcase_86 AC 2 ms
5,248 KB
testcase_87 AC 2 ms
5,248 KB
testcase_88 AC 1 ms
5,248 KB
testcase_89 AC 673 ms
5,248 KB
testcase_90 AC 1,971 ms
5,248 KB
testcase_91 TLE -
testcase_92 AC 114 ms
5,248 KB
testcase_93 TLE -
testcase_94 AC 3 ms
5,248 KB
testcase_95 TLE -
testcase_96 AC 1,505 ms
5,248 KB
testcase_97 AC 1,295 ms
5,248 KB
testcase_98 AC 352 ms
10,496 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;
	cin >> m;
	cin.ignore();
	getline(cin, s);
	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 (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