結果

問題 No.800 四平方定理
ユーザー izryt(趣味)izryt(趣味)
提出日時 2020-05-24 09:23:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,269 bytes
コンパイル時間 986 ms
コンパイル使用メモリ 104,860 KB
実行使用メモリ 131,072 KB
最終ジャッジ日時 2024-10-10 23:00:57
合計ジャッジ時間 24,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
10,496 KB
testcase_01 AC 85 ms
6,272 KB
testcase_02 AC 62 ms
5,376 KB
testcase_03 AC 67 ms
5,760 KB
testcase_04 AC 71 ms
5,248 KB
testcase_05 AC 67 ms
5,504 KB
testcase_06 AC 87 ms
6,784 KB
testcase_07 AC 80 ms
5,888 KB
testcase_08 AC 94 ms
6,656 KB
testcase_09 AC 79 ms
6,400 KB
testcase_10 AC 1,472 ms
65,664 KB
testcase_11 AC 1,691 ms
73,216 KB
testcase_12 AC 1,693 ms
72,064 KB
testcase_13 AC 1,505 ms
68,608 KB
testcase_14 AC 1,683 ms
73,216 KB
testcase_15 AC 1,681 ms
72,704 KB
testcase_16 AC 1,622 ms
73,984 KB
testcase_17 AC 1,671 ms
73,856 KB
testcase_18 AC 1,764 ms
73,600 KB
testcase_19 AC 1,780 ms
73,728 KB
testcase_20 AC 16 ms
5,248 KB
testcase_21 AC 23 ms
5,248 KB
testcase_22 AC 1,805 ms
73,984 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <string>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <utility>
#include <functional>
#include <climits>
#include <cstring>

using namespace std;

//#define int long long
#define rep(i, n) for (int i=0;i<(int)(n);++i)
#define rep1(i, n) for (int i=1;i<=(int)(n);++i)
#define range(i, l, r) for (int i=l;i<(int)(r);++i)
#define rrange(i, l, r) for (int i=r-1;i>=(int)(l);--i)
#define unless(a) if(!(a))
#define all(a) begin(a),end(a)
#define fst first
#define scd second
#define PB emplace_back
#define PPB pop_back

using vi=vector<int>;
using pii=pair<int, int>;
using ll=long long;

bool chmin(int&a,int b){return a>b?(a=b,true):false;}
bool chmax(int&a,int b){return a<b?(a=b,true):false;}
//int read(){int a;scanf("%lld",&a);return a;}

const int inf = 1e9 + 10;
const int mod = 1e9 + 7;

int N, D;
int xy[8000800];
map<int, int> zw;

signed main()
{
	cin >> N >> D;

	int mx = 0;

	range(x, 1, N + 1) {
		range(y, 1, N + 1) {
			xy[x * x + y * y]++;
		}
	}

	range(z, 1, N + 1) {
		range(w, 1, N + 1) {
			zw[z * z - w * w]++;
		}
	}

	ll ans = 0;

	range(i, 1, 4000040) {
		if (zw.find(D - i) != zw.end())
			ans += xy[i] * zw[D - i];
	}

	printf("%lld\n", ans);
}

0