結果

問題 No.800 四平方定理
ユーザー LaFolia13LaFolia13
提出日時 2019-03-17 23:34:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 1,329 ms
コンパイル使用メモリ 172,080 KB
実行使用メモリ 241,152 KB
最終ジャッジ日時 2024-07-08 05:47:03
合計ジャッジ時間 9,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 7 ms
7,680 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 6 ms
6,944 KB
testcase_04 AC 5 ms
6,944 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 7 ms
8,480 KB
testcase_07 AC 5 ms
7,296 KB
testcase_08 AC 6 ms
8,600 KB
testcase_09 AC 7 ms
7,808 KB
testcase_10 AC 232 ms
121,012 KB
testcase_11 AC 258 ms
135,796 KB
testcase_12 AC 262 ms
133,376 KB
testcase_13 AC 245 ms
126,592 KB
testcase_14 AC 251 ms
135,680 KB
testcase_15 AC 266 ms
134,784 KB
testcase_16 AC 261 ms
137,088 KB
testcase_17 AC 265 ms
137,088 KB
testcase_18 AC 273 ms
136,576 KB
testcase_19 AC 274 ms
136,704 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 280 ms
137,088 KB
testcase_23 AC 570 ms
241,152 KB
testcase_24 AC 533 ms
241,024 KB
testcase_25 AC 557 ms
240,256 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 528 ms
239,744 KB
testcase_29 AC 533 ms
240,512 KB
testcase_30 AC 523 ms
240,000 KB
testcase_31 AC 498 ms
223,488 KB
testcase_32 AC 542 ms
241,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using llong = long long;
using ldbl = long double;
using P = pair<llong, llong>;

#define BE(x) x.begin(), x.end()

const llong inf = llong(1e18)+7;
const llong mod = 1e9+7;


int main(){
	int N, D;
	cin >> N >> D;

	int ans = 0;
	vector<vector<P>> ok(N*N*2+1);
	for(int i = 1; i <= N; i++)
		for(int j = i; j <= N; j++)
			ok[i*i+j*j].push_back(P(i,j));

	for(int i = 1; i <= N; i++)
		for(int j = 1; j <= N; j++){
			int check = D - (j*j - i*i);
			if(check < 0)
				break;
			if(check > N*N*2)
				continue;
			for(auto &x : ok[check]){
				if(x.first == x.second)
					ans++;
				else
					ans += 2;
			}
		}

	cout << ans << endl;

	return 0;
}
0