結果

問題 No.800 四平方定理
ユーザー apoanzanapoanzan
提出日時 2019-03-18 10:51:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 1,129 ms
コンパイル使用メモリ 160,632 KB
実行使用メモリ 143,952 KB
最終ジャッジ日時 2024-07-18 01:19:43
合計ジャッジ時間 4,735 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
143,852 KB
testcase_01 AC 52 ms
143,924 KB
testcase_02 AC 51 ms
143,844 KB
testcase_03 AC 52 ms
143,768 KB
testcase_04 AC 52 ms
143,820 KB
testcase_05 AC 51 ms
143,700 KB
testcase_06 AC 50 ms
143,772 KB
testcase_07 AC 51 ms
143,684 KB
testcase_08 AC 49 ms
143,952 KB
testcase_09 AC 51 ms
143,784 KB
testcase_10 AC 87 ms
143,748 KB
testcase_11 AC 87 ms
143,684 KB
testcase_12 AC 88 ms
143,772 KB
testcase_13 AC 77 ms
143,744 KB
testcase_14 AC 84 ms
143,768 KB
testcase_15 AC 89 ms
143,768 KB
testcase_16 AC 86 ms
143,708 KB
testcase_17 AC 84 ms
143,904 KB
testcase_18 AC 91 ms
143,796 KB
testcase_19 AC 93 ms
143,760 KB
testcase_20 AC 51 ms
143,704 KB
testcase_21 AC 52 ms
143,704 KB
testcase_22 AC 96 ms
143,752 KB
testcase_23 AC 131 ms
143,788 KB
testcase_24 AC 117 ms
143,792 KB
testcase_25 AC 131 ms
143,888 KB
testcase_26 AC 52 ms
143,680 KB
testcase_27 AC 51 ms
143,684 KB
testcase_28 AC 123 ms
143,848 KB
testcase_29 AC 125 ms
143,824 KB
testcase_30 AC 121 ms
143,792 KB
testcase_31 AC 113 ms
143,708 KB
testcase_32 AC 120 ms
143,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
typedef pair<int,int> pii;
typedef vector<int> vi;
#define mp make_pair
#define pb push_back
#define pf push_front
#define fi first
#define se second
#define MOD 1000000007

int MAX = 9e6;

int main(){
	int n,d;
	cin >> n >> d;
	vector<ll> cnt1(MAX),cnt2(MAX);
	for(int i = 1; i < n+1; ++i){
		for(int j = 1;j < n+1; ++j){
			cnt1[i*i + j*j]++;
			if(i*i - j*j + d > 0) cnt2[i*i - j*j + d]++;
		}
	}
	ll ans = 0;
	for(int i = 0; i < MAX; ++i){
		ans += cnt1[i]*cnt2[i];
	}
	cout << ans << endl;
	return 0;
}
0