結果

問題 No.473 和と積の和
ユーザー tailstails
提出日時 2016-12-23 03:42:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 700 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 181,112 KB
実行使用メモリ 670,336 KB
最終ジャッジ日時 2024-12-16 03:03:49
合計ジャッジ時間 30,951 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 MLE -
testcase_02 AC 2 ms
13,636 KB
testcase_03 MLE -
testcase_04 AC 2 ms
13,640 KB
testcase_05 MLE -
testcase_06 AC 2 ms
13,636 KB
testcase_07 MLE -
testcase_08 AC 1 ms
13,632 KB
testcase_09 AC 2 ms
418,724 KB
testcase_10 AC 2 ms
13,636 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 1 ms
6,816 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 4 ms
6,820 KB
testcase_24 AC 9 ms
6,816 KB
testcase_25 TLE -
testcase_26 AC 605 ms
102,272 KB
testcase_27 AC 1,300 ms
190,464 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 83 ms
6,820 KB
testcase_30 AC 69 ms
6,816 KB
testcase_31 AC 50 ms
6,816 KB
testcase_32 AC 32 ms
6,816 KB
testcase_33 AC 6 ms
6,820 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 379 ms
15,744 KB
testcase_37 AC 10 ms
6,816 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 2 ms
6,820 KB
testcase_42 AC 3 ms
6,816 KB
testcase_43 AC 23 ms
9,344 KB
testcase_44 AC 221 ms
46,080 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 2 ms
399,268 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    4 | main(){
      | ^~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

main(){
	int n,x;
	scanf("%d%d",&n,&x);
	++x;
	vector<int> v;
	for(int i=2;i*i<=x;){
		if(x%i==0){
			v.push_back(i);
			x/=i;
		}else{
			++i;
		}
	}
	v.push_back(x);
	int r=0;
	if(v.size()>=n){
		multiset<int> m;
		for(int i=0;i<n;++i){
			m.insert(1);
		}
		set<multiset<int>> s1,s2;
		s1.insert(m);
		for(int vi:v){
			for(multiset<int> const& m1:s1){
				int l=0;
				for(int a:m1){
					if(a!=l){
						l=a;
						multiset<int> m2=m1;
						m2.erase(m2.find(a));
						m2.insert(a*vi);
						s2.insert(m2);
					}
				}
			}
			s1.swap(s2);s2.clear();
		}
		for(multiset<int> const& m1:s1){
			r+=m1.find(1)==m1.end();
		}
	}
	printf("%d\n",r);
}
0