結果

問題 No.800 四平方定理
ユーザー LaFolia13LaFolia13
提出日時 2019-03-17 23:31:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 678 bytes
コンパイル時間 1,327 ms
コンパイル使用メモリ 171,980 KB
実行使用メモリ 241,152 KB
最終ジャッジ日時 2024-07-08 05:35:56
合計ジャッジ時間 9,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,632 KB
testcase_01 AC 6 ms
7,796 KB
testcase_02 AC 5 ms
6,400 KB
testcase_03 AC 6 ms
6,784 KB
testcase_04 AC 6 ms
6,272 KB
testcase_05 AC 5 ms
6,656 KB
testcase_06 AC 7 ms
8,560 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 6 ms
7,936 KB
testcase_10 AC 240 ms
121,340 KB
testcase_11 AC 278 ms
135,832 KB
testcase_12 AC 264 ms
133,632 KB
testcase_13 AC 249 ms
126,688 KB
testcase_14 AC 259 ms
135,808 KB
testcase_15 AC 265 ms
135,040 KB
testcase_16 AC 271 ms
137,216 KB
testcase_17 AC 274 ms
137,276 KB
testcase_18 AC 282 ms
136,832 KB
testcase_19 AC 275 ms
136,832 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 286 ms
137,264 KB
testcase_23 AC 579 ms
241,124 KB
testcase_24 AC 501 ms
241,152 KB
testcase_25 AC 541 ms
240,512 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 516 ms
239,872 KB
testcase_29 AC 510 ms
240,640 KB
testcase_30 AC 508 ms
240,128 KB
testcase_31 AC 461 ms
223,604 KB
testcase_32 AC 514 ms
241,148 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 || check > N*N*2)
				break;
			for(auto &x : ok[check]){
				if(x.first == x.second)
					ans++;
				else
					ans += 2;
			}
		}

	cout << ans << endl;

	return 0;
}
0