結果

問題 No.800 四平方定理
ユーザー eto_nagisaeto_nagisa
提出日時 2019-03-18 04:25:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 1,162 bytes
コンパイル時間 1,334 ms
コンパイル使用メモリ 167,960 KB
実行使用メモリ 190,720 KB
最終ジャッジ日時 2024-07-08 11:09:03
合計ジャッジ時間 5,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 5 ms
6,784 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 3 ms
5,888 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 3 ms
5,888 KB
testcase_06 AC 5 ms
7,296 KB
testcase_07 AC 4 ms
6,912 KB
testcase_08 AC 7 ms
10,240 KB
testcase_09 AC 4 ms
6,912 KB
testcase_10 AC 120 ms
96,000 KB
testcase_11 AC 134 ms
107,520 KB
testcase_12 AC 129 ms
105,600 KB
testcase_13 AC 120 ms
100,480 KB
testcase_14 AC 129 ms
107,520 KB
testcase_15 AC 131 ms
106,752 KB
testcase_16 AC 134 ms
108,672 KB
testcase_17 AC 136 ms
108,544 KB
testcase_18 AC 133 ms
108,288 KB
testcase_19 AC 133 ms
108,416 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 135 ms
108,672 KB
testcase_23 AC 253 ms
190,720 KB
testcase_24 AC 254 ms
190,720 KB
testcase_25 AC 247 ms
190,208 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 12 ms
18,816 KB
testcase_28 AC 244 ms
189,824 KB
testcase_29 AC 248 ms
190,464 KB
testcase_30 AC 252 ms
189,952 KB
testcase_31 AC 230 ms
176,896 KB
testcase_32 AC 252 ms
190,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

#define REP(i,n) for(ll i=0;i<ll(n);++i)
#define RREP(i,n) for(ll i=ll(n)-1;i>=0;--i)
#define FOR(i,m,n) for(ll i=m;i<ll(n);++i)
#define RFOR(i,m,n) for(ll i=ll(n)-1;i>=ll(m);--i)
#define ALL(v) (v).begin(),(v).end()
#define UNIQUE(v) v.erase(unique(ALL(v)),v.end());
#define INF 1000000001ll
#define MOD 1000000007ll
#define EPS 1e-9

constexpr int dx[8] = { 1,1,0,-1,-1,-1,0,1 };
constexpr int dy[8] = { 0,1,1,1,0,-1,-1,-1 };


using namespace std;

using ll = long long;
using vi = vector<int>;
using vl = vector<ll>;
using vvi = vector<vi>;
using vvl = vector<vl>;
using pii = pair<int, int>;
using pll = pair<ll, ll>;

template <class T> bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; }
template <class T> bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; }

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	ll n, d; cin >> n >> d;
	int sz = max(n*n, d) + 2 * n * n + 1;
	vl a(sz, 0), b(sz, 0);
	REP(i, n)REP(j, n) {
		ll x = i + 1, y = j + 1;
		a[x*x + y * y + n * n]++;
		b[x*x - y * y + d + n * n]++;
	}
	ll ans = 0;
	REP(i, sz)ans += a[i] * b[i];
	cout << ans << endl;
}
0