結果

問題 No.800 四平方定理
ユーザー akun0716akun0716
提出日時 2020-06-28 20:13:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,334 bytes
コンパイル時間 920 ms
コンパイル使用メモリ 98,572 KB
実行使用メモリ 164,664 KB
最終ジャッジ日時 2024-07-08 02:25:52
合計ジャッジ時間 34,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,816 KB
testcase_01 AC 14 ms
6,940 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 12 ms
6,940 KB
testcase_06 AC 17 ms
6,940 KB
testcase_07 AC 13 ms
6,940 KB
testcase_08 AC 18 ms
6,940 KB
testcase_09 AC 14 ms
6,944 KB
testcase_10 AC 911 ms
58,896 KB
testcase_11 AC 1,244 ms
82,672 KB
testcase_12 AC 1,247 ms
82,676 KB
testcase_13 AC 1,181 ms
82,552 KB
testcase_14 AC 1,283 ms
82,572 KB
testcase_15 AC 1,270 ms
82,700 KB
testcase_16 AC 1,311 ms
82,704 KB
testcase_17 AC 1,323 ms
82,704 KB
testcase_18 AC 1,268 ms
82,700 KB
testcase_19 AC 1,239 ms
82,700 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1,258 ms
82,576 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<map>
#include<set>
#include<stack>
#include<queue>
#include<math.h>
#include <unordered_map>
#include <iterator>

using namespace std;
typedef long long ll;
#define int long long
typedef vector<int> VI;
#define REP(i,n) for(int i=0;i<n;i++)
#define eREP(i,n) for(int i=0;i<=n;i++)
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define eFOR(i,a,b) for(int i=(a);i<=(b);++i)
#define SORT(c) sort((c).begin(),(c).end())
#define rSORT(c) sort((c).rbegin(),(c).rend())
#define LB(x,a) lower_bound((x).begin(),(x).end(),(a))
#define UB(x,a) upper_bound((x).begin(),(x).end(),(a))
#define INF 1000000000
#define LLINF 9223372036854775807
#define mod 1000000007
//vector<vector<int> > dp;
//vector<vector<vector<int> > > vvvi;
//dp=vector<vector<int> >(N, vector<int>(M,0));
//vector<pair<int,int> > v;
//v.push_back(make_pair(x,y));



signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int N, D;
	cin >> N >> D;
	unordered_map<int, int>A, B;
	
	
	int ans = 0;
	eFOR(i, 1, N) {
		eFOR(j, i, N) {
			B[i*i + j * j] += 2;
			if (i == j) B[i*i + j * j]--;
		}
	}
	eFOR(i, 1, N) {
		eFOR(j, i, N) {
			ans += B[D + i * i - j * j];
			ans += B[D - i * i + j * j];
			if (i == j)
				ans -= B[D + i * i - j * j];
		}
	}
	cout << ans << endl;
	return 0;
}

0