結果

問題 No.800 四平方定理
ユーザー olpheolphe
提出日時 2019-03-17 21:24:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 899 bytes
コンパイル時間 1,005 ms
コンパイル使用メモリ 112,396 KB
実行使用メモリ 43,440 KB
最終ジャッジ日時 2024-07-07 20:08:47
合計ジャッジ時間 5,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
42,140 KB
testcase_01 AC 10 ms
42,240 KB
testcase_02 AC 12 ms
42,240 KB
testcase_03 AC 11 ms
42,240 KB
testcase_04 AC 12 ms
42,112 KB
testcase_05 AC 11 ms
42,240 KB
testcase_06 AC 11 ms
42,240 KB
testcase_07 AC 11 ms
42,240 KB
testcase_08 AC 11 ms
42,240 KB
testcase_09 AC 10 ms
42,240 KB
testcase_10 AC 25 ms
42,240 KB
testcase_11 AC 28 ms
42,204 KB
testcase_12 AC 29 ms
42,240 KB
testcase_13 AC 25 ms
42,240 KB
testcase_14 AC 29 ms
42,240 KB
testcase_15 AC 27 ms
42,112 KB
testcase_16 AC 29 ms
42,240 KB
testcase_17 AC 28 ms
42,108 KB
testcase_18 AC 29 ms
42,112 KB
testcase_19 AC 28 ms
42,112 KB
testcase_20 AC 11 ms
42,240 KB
testcase_21 AC 11 ms
42,108 KB
testcase_22 AC 30 ms
42,240 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 13 ms
42,344 KB
testcase_27 AC 11 ms
42,344 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "stack"
#include "set"
#include "functional"
#include "algorithm"
#include "string"
#include "map"
#include "unordered_map"
#include "unordered_set"
#include "iomanip"
#include "cmath"
#include "random"
#include "bitset"
#include "cstdio"
#include "numeric"
#include "cassert"

using namespace std;

const long long int MOD = 1000000007;
//const int MOD = 998244353;

long long int N, M, K, H, W, L, R;
//int N, M, K, H, W, L, R;

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

	cin >> N >> K;
	vector<int>m(10000000);
	for (int i = 1; i <= N; i++) {
		for (int j = 1; j <= N; j++) {
			m[i*i - j * j+5000000]++;
		}
	}
	long long int ans = 0;
	for (int i = 1; i <= N; i++) {
		for (int j = 1; j <= N; j++) {
			int box = i * i + j * j - K;
			ans += m[box+5000000];
		}
	}
	cout << ans << endl;
	return 0;
}
0