結果

問題 No.1318 ABCD quadruplets
ユーザー kotatsugamekotatsugame
提出日時 2020-12-17 01:52:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 650 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 33,384 KB
実行使用メモリ 9,692 KB
最終ジャッジ日時 2023-10-20 10:26:08
合計ジャッジ時間 6,923 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,692 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,248 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")
#include<cstdio>
using namespace std;
int N,M;
int ans[1<<20];
int sq[320001];
main()
{
	scanf("%d%d",&N,&M);
	for(int i=0;i<=M;i++)sq[i*i]=i;
	for(int i=0;i<N*2;i++)if(!sq[i+1])sq[i+1]=sq[i];
	for(int a=0;a<=M;a++)
	{
		int NA=N-a*a;
		int BL=sq[NA+a*a/4]-a/2;
		for(int b=0;b<=BL;b++)
		{
			int NB=NA-(a+b)*b;
			int ab=a+b;
			int CL=sq[NB+ab*ab/4]-ab/2;
			for(int c=0;c<=CL;c++)
			{
				int NC=NB-(ab+c)*c;
				int abc=ab+c;
				int DL=sq[NC+abc*abc/4]-abc/2;
				for(int d=0;d<=DL;d++)
				{
					ans[N-NC+abc*d+d*d]++;
				}
			}
		}
	}
	for(int i=0;i<=N;i++)printf("%d\n",ans[i]);
}
0