結果

問題 No.800 四平方定理
ユーザー e869120e869120
提出日時 2019-05-15 21:15:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 827 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 983 ms
コンパイル使用メモリ 76,344 KB
実行使用メモリ 35,160 KB
最終ジャッジ日時 2024-09-14 13:10:53
合計ジャッジ時間 13,488 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,812 KB
testcase_01 AC 15 ms
6,940 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 AC 10 ms
6,944 KB
testcase_05 AC 12 ms
6,940 KB
testcase_06 AC 17 ms
6,940 KB
testcase_07 AC 14 ms
6,940 KB
testcase_08 AC 17 ms
6,944 KB
testcase_09 AC 15 ms
6,944 KB
testcase_10 AC 398 ms
18,840 KB
testcase_11 AC 445 ms
29,196 KB
testcase_12 AC 442 ms
30,112 KB
testcase_13 AC 405 ms
19,492 KB
testcase_14 AC 438 ms
29,388 KB
testcase_15 AC 448 ms
29,736 KB
testcase_16 AC 440 ms
29,548 KB
testcase_17 AC 444 ms
29,176 KB
testcase_18 AC 461 ms
28,760 KB
testcase_19 AC 460 ms
30,156 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 466 ms
29,132 KB
testcase_23 AC 827 ms
35,008 KB
testcase_24 AC 799 ms
34,564 KB
testcase_25 AC 825 ms
34,584 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 789 ms
35,076 KB
testcase_29 AC 806 ms
35,028 KB
testcase_30 AC 793 ms
34,672 KB
testcase_31 AC 736 ms
33,896 KB
testcase_32 AC 804 ms
35,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

long long N, D, sum; vector<int>E1, E2;

int main() {
	cin >> N >> D;
	for (int i = 1; i <= N; i++) {
		for (int j = 1; j <= N; j++) {
			E1.push_back(i*i + j * j);
			E2.push_back(i*i - j * j);
		}
	}
	sort(E1.begin(), E1.end());
	sort(E2.begin(), E2.end());

	for (int i = 0; i < E1.size(); i++) {
		int target = D - E1[i];
		int pos1 = lower_bound(E2.begin(), E2.end(), target) - E2.begin();
		int pos2 = lower_bound(E2.begin(), E2.end(), target + 1) - E2.begin();
		sum += 1LL * (pos2 - pos1);
	}
	cout << sum << endl;
	return 0;
}
0