結果

問題 No.800 四平方定理
ユーザー yuma220284yuma220284
提出日時 2020-02-10 09:55:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,204 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 3,036 ms
コンパイル使用メモリ 163,832 KB
実行使用メモリ 37,184 KB
最終ジャッジ日時 2024-10-01 06:15:40
合計ジャッジ時間 16,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,248 KB
testcase_01 AC 15 ms
5,376 KB
testcase_02 AC 10 ms
5,376 KB
testcase_03 AC 11 ms
5,376 KB
testcase_04 AC 11 ms
5,376 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 16 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 14 ms
5,376 KB
testcase_10 AC 546 ms
19,788 KB
testcase_11 AC 558 ms
36,044 KB
testcase_12 AC 634 ms
36,172 KB
testcase_13 AC 441 ms
19,792 KB
testcase_14 AC 484 ms
36,048 KB
testcase_15 AC 644 ms
36,296 KB
testcase_16 AC 490 ms
37,184 KB
testcase_17 AC 496 ms
36,044 KB
testcase_18 AC 742 ms
36,984 KB
testcase_19 AC 742 ms
36,112 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 735 ms
36,172 KB
testcase_23 AC 1,185 ms
36,176 KB
testcase_24 AC 910 ms
36,304 KB
testcase_25 AC 1,204 ms
36,300 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 883 ms
36,236 KB
testcase_29 AC 1,092 ms
36,300 KB
testcase_30 AC 883 ms
36,044 KB
testcase_31 AC 821 ms
36,176 KB
testcase_32 AC 917 ms
36,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	long long N, D;
	cin >> N >> D;
	vector<long long> V;
	for (int i = 1; i <= N; i++) {
		for (int j = 1; j <= N; j++) V.push_back(i * i + j * j);
	}
	sort(V.begin(), V.end());
	long long ANS = 0;
	for (int i = 1; i <= N; i++) {
		for (int j = 1; j <= N; j++) {
			if (i * i + D >= j * j) ANS += upper_bound(V.begin(), V.end(), i * i + D - j * j) - lower_bound(V.begin(), V.end(), i * i + D - j * j);
		}
	}
	cout << ANS << endl;
}
0