結果

問題 No.800 四平方定理
ユーザー leaf_1415leaf_1415
提出日時 2019-03-17 21:32:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 59,008 KB
実行使用メモリ 67,360 KB
最終ジャッジ日時 2024-07-07 20:49:54
合計ジャッジ時間 2,153 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 26 ms
36,112 KB
testcase_11 AC 28 ms
38,832 KB
testcase_12 AC 28 ms
38,800 KB
testcase_13 AC 23 ms
36,120 KB
testcase_14 AC 26 ms
39,132 KB
testcase_15 AC 30 ms
39,188 KB
testcase_16 AC 28 ms
39,820 KB
testcase_17 AC 27 ms
39,968 KB
testcase_18 AC 29 ms
39,416 KB
testcase_19 AC 30 ms
39,020 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 29 ms
38,788 KB
testcase_23 AC 66 ms
66,152 KB
testcase_24 AC 60 ms
66,764 KB
testcase_25 AC 64 ms
66,440 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 58 ms
65,732 KB
testcase_29 AC 63 ms
66,000 KB
testcase_30 AC 59 ms
66,364 KB
testcase_31 AC 54 ms
62,032 KB
testcase_32 AC 59 ms
67,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#define llint long long

using namespace std;

llint n, d;
llint cnt[16000005];

int main(void)
{
	cin >> n >> d;
	
	for(int i = 1; i <= n; i++){
		for(int j = 1; j <= n; j++){
			cnt[i*i+j*j]++;
		}
	}
	//sort(vec.begin(), vec.end());
	
	llint ans = 0;
	for(int i = 1; i <= n; i++){
		for(int j = 1; j <= n; j++){
			llint x = d - (i*i-j*j);
			if(x < 0) continue;
			ans += cnt[x];
		}
	}
	cout << ans << endl;
	
	return 0;
}
0