結果

問題 No.800 四平方定理
ユーザー leaf_1415leaf_1415
提出日時 2019-03-17 21:28:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,397 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 65,684 KB
実行使用メモリ 37,432 KB
最終ジャッジ日時 2024-07-07 20:32:33
合計ジャッジ時間 19,298 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,812 KB
testcase_01 AC 18 ms
6,940 KB
testcase_02 AC 13 ms
6,940 KB
testcase_03 AC 15 ms
6,940 KB
testcase_04 AC 13 ms
6,944 KB
testcase_05 AC 15 ms
6,944 KB
testcase_06 AC 22 ms
6,944 KB
testcase_07 AC 16 ms
6,944 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 19 ms
6,944 KB
testcase_10 AC 635 ms
20,652 KB
testcase_11 AC 678 ms
37,432 KB
testcase_12 AC 704 ms
36,200 KB
testcase_13 AC 578 ms
19,768 KB
testcase_14 AC 635 ms
36,584 KB
testcase_15 AC 714 ms
37,036 KB
testcase_16 AC 630 ms
36,204 KB
testcase_17 AC 626 ms
36,764 KB
testcase_18 AC 768 ms
36,336 KB
testcase_19 AC 783 ms
36,244 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 776 ms
36,964 KB
testcase_23 AC 1,397 ms
36,788 KB
testcase_24 AC 1,201 ms
36,464 KB
testcase_25 AC 1,394 ms
36,100 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1,154 ms
37,012 KB
testcase_29 AC 1,295 ms
36,696 KB
testcase_30 AC 1,176 ms
36,812 KB
testcase_31 AC 1,137 ms
36,296 KB
testcase_32 AC 1,277 ms
36,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#define llint long long

using namespace std;

llint n, d;
vector<llint> vec;

int main(void)
{
	cin >> n >> d;
	
	for(int i = 1; i <= n; i++){
		for(int j = 1; j <= n; j++){
			vec.push_back(i*i-j*j);
		}
	}
	sort(vec.begin(), vec.end());
	
	llint ans = 0;
	for(int i = 1; i <= n; i++){
		for(int j = 1; j <= n; j++){
			ans += upper_bound(vec.begin(), vec.end(), d-(i*i+j*j)) - lower_bound(vec.begin(), vec.end(), d-(i*i+j*j));
		}
	}
	cout << ans << endl;
	
	return 0;
}
0