結果

問題 No.287 場合の数
ユーザー kotatsugamekotatsugame
提出日時 2020-02-27 20:37:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 24 ms / 5,000 ms
コード長 705 bytes
コンパイル時間 721 ms
コンパイル使用メモリ 77,516 KB
実行使用メモリ 9,312 KB
最終ジャッジ日時 2024-10-13 16:00:47
合計ジャッジ時間 1,837 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 23 ms
8,288 KB
testcase_04 AC 23 ms
9,312 KB
testcase_05 AC 16 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 8 ms
6,816 KB
testcase_08 AC 13 ms
6,816 KB
testcase_09 AC 18 ms
6,816 KB
testcase_10 AC 24 ms
9,184 KB
testcase_11 AC 6 ms
6,820 KB
testcase_12 AC 21 ms
7,904 KB
testcase_13 AC 4 ms
6,816 KB
testcase_14 AC 9 ms
6,820 KB
testcase_15 AC 17 ms
6,820 KB
testcase_16 AC 9 ms
6,820 KB
testcase_17 AC 21 ms
9,056 KB
testcase_18 AC 7 ms
6,820 KB
testcase_19 AC 18 ms
6,816 KB
testcase_20 AC 11 ms
6,816 KB
testcase_21 AC 16 ms
6,816 KB
testcase_22 AC 16 ms
6,820 KB
testcase_23 AC 14 ms
6,816 KB
testcase_24 AC 10 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
main()
{
	int N;cin>>N;
	vector<pair<int,long> >A;
	for(int i=0;i<=N;i++)A.push_back(make_pair(i,1L));
	for(int ccc=0;ccc<3;ccc++)
	{
		vector<pair<int,long> >B;
		for(int i=0;i<A.size();i++)for(int j=0;j<A.size();j++)
		{
			B.push_back(make_pair(A[i].first+A[j].first,A[i].second*A[j].second));
		}
		sort(B.begin(),B.end());
		long t=0;
		int pre=0;
		A.clear();
		for(pair<int,long>p:B)
		{
			if(pre<p.first)
			{
				A.push_back(make_pair(pre,t));
				t=0;
				pre=p.first;
			}
			t+=p.second;
		}
		A.push_back(make_pair(pre,t));
	}
	long ans=0;
	for(pair<int,long>p:A)if(p.first==6*N)ans+=p.second;
	cout<<ans<<endl;
}
0