結果

問題 No.800 四平方定理
ユーザー LaFolia13LaFolia13
提出日時 2019-03-17 23:28:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 661 bytes
コンパイル時間 1,652 ms
コンパイル使用メモリ 171,348 KB
実行使用メモリ 241,224 KB
最終ジャッジ日時 2024-07-08 03:25:37
合計ジャッジ時間 12,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,632 KB
testcase_01 AC 7 ms
7,736 KB
testcase_02 AC 6 ms
6,400 KB
testcase_03 AC 6 ms
6,784 KB
testcase_04 AC 7 ms
6,272 KB
testcase_05 AC 6 ms
6,656 KB
testcase_06 AC 8 ms
8,704 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 10 ms
7,936 KB
testcase_10 AC 306 ms
121,216 KB
testcase_11 AC 319 ms
135,808 KB
testcase_12 AC 317 ms
133,464 KB
testcase_13 AC 295 ms
126,720 KB
testcase_14 AC 311 ms
135,768 KB
testcase_15 AC 315 ms
134,912 KB
testcase_16 AC 310 ms
137,344 KB
testcase_17 AC 314 ms
137,164 KB
testcase_18 AC 319 ms
136,676 KB
testcase_19 AC 322 ms
136,832 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 RE -
testcase_22 AC 340 ms
137,216 KB
testcase_23 AC 625 ms
241,132 KB
testcase_24 AC 579 ms
241,224 KB
testcase_25 AC 619 ms
240,384 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 RE -
testcase_28 AC 585 ms
239,868 KB
testcase_29 AC 604 ms
240,640 KB
testcase_30 AC 582 ms
240,204 KB
testcase_31 AC 524 ms
223,616 KB
testcase_32 AC 595 ms
241,084 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;
			for(auto &x : ok[check]){
				if(x.first == x.second)
					ans++;
				else
					ans += 2;
			}
		}

	cout << ans << endl;

	return 0;
}
0