結果

問題 No.800 四平方定理
ユーザー jupiro_jupijupiro_jupi
提出日時 2019-06-14 22:04:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,474 ms / 2,000 ms
コード長 1,206 bytes
コンパイル時間 954 ms
コンパイル使用メモリ 98,888 KB
実行使用メモリ 37,404 KB
最終ジャッジ日時 2024-04-26 16:40:37
合計ジャッジ時間 20,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 17 ms
6,940 KB
testcase_02 AC 12 ms
6,940 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 12 ms
6,944 KB
testcase_05 AC 14 ms
6,940 KB
testcase_06 AC 19 ms
6,940 KB
testcase_07 AC 18 ms
6,940 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 16 ms
6,940 KB
testcase_10 AC 650 ms
19,796 KB
testcase_11 AC 685 ms
37,404 KB
testcase_12 AC 748 ms
36,168 KB
testcase_13 AC 552 ms
19,852 KB
testcase_14 AC 605 ms
36,120 KB
testcase_15 AC 757 ms
36,428 KB
testcase_16 AC 620 ms
36,300 KB
testcase_17 AC 615 ms
36,428 KB
testcase_18 AC 827 ms
36,168 KB
testcase_19 AC 830 ms
36,392 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 831 ms
36,172 KB
testcase_23 AC 1,470 ms
36,176 KB
testcase_24 AC 1,177 ms
36,300 KB
testcase_25 AC 1,474 ms
36,188 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,450 ms
36,296 KB
testcase_29 AC 1,463 ms
36,300 KB
testcase_30 AC 1,207 ms
36,428 KB
testcase_31 AC 1,094 ms
36,424 KB
testcase_32 AC 1,236 ms
36,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <fstream>
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

char ToUpper(char cX) { return toupper(cX); }
char Tolower(char cX) { return tolower(cX); }


const long long INF = 1LL << 60;
const long long MOD = 1000000007LL;
const long long MAX = 500000LL;
using namespace std;
typedef unsigned long long ull;
typedef  long long ll;
using T = tuple<ll, ll, ll>;


int main()
{
	ll N, D;
	cin >> N >> D;
	vector<ll> sum1;
	for (ll x = 1; x <= N; x++) {
		for (ll y = 1; y <= N; y++) {
			sum1.push_back(x * x + y * y);
		}
	}
	sort(sum1.begin(), sum1.end());
	ll res = 0;
	for (ll z = 1; z <= N; z++) {
		for (ll w = 1; w <= N; w++) {
			ll temp = w * w + D - z * z;
			res += upper_bound(sum1.begin(), sum1.end(), temp) - lower_bound(sum1.begin(), sum1.end(), temp);
		}
	}

	cout << res << endl;
	return 0;
}

0