結果

問題 No.800 四平方定理
ユーザー kaagekaage
提出日時 2019-03-17 22:16:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,446 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 1,442 ms
コンパイル使用メモリ 163,592 KB
実行使用メモリ 36,172 KB
最終ジャッジ日時 2024-07-07 23:51:16
合計ジャッジ時間 19,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
5,248 KB
testcase_01 AC 16 ms
5,376 KB
testcase_02 AC 12 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 18 ms
5,376 KB
testcase_07 AC 17 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 618 ms
19,788 KB
testcase_11 AC 644 ms
36,072 KB
testcase_12 AC 723 ms
36,044 KB
testcase_13 AC 507 ms
19,784 KB
testcase_14 AC 567 ms
35,988 KB
testcase_15 AC 716 ms
36,172 KB
testcase_16 AC 567 ms
36,048 KB
testcase_17 AC 574 ms
36,160 KB
testcase_18 AC 833 ms
36,044 KB
testcase_19 AC 834 ms
36,116 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 835 ms
36,044 KB
testcase_23 AC 1,446 ms
36,048 KB
testcase_24 AC 1,092 ms
36,172 KB
testcase_25 AC 1,422 ms
36,048 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,067 ms
36,064 KB
testcase_29 AC 1,264 ms
36,172 KB
testcase_30 AC 1,079 ms
36,044 KB
testcase_31 AC 991 ms
36,048 KB
testcase_32 AC 1,133 ms
36,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define int long long
#define ll long long
#define rep(i,n) for(int i=0;i<n;i++)
#define INF LLONG_MAX/3
#define eps LDBL_EPSILON
#define moder (1000000007)
#define pie acos(-1)
#define P std::pair<int,int>
#define prique priority_queue
#define ggr getchar();getchar();return 0;
using namespace std;
int n,d;
vector<int> vec;
signed main(){
	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());
	int ans=0;
	for(int i=1;i<=n;i++){
		for(int j=1;j<=n;j++){
			ans+=upper_bound(vec.begin(),vec.end(),i*i-j*j+d)-lower_bound(vec.begin(),vec.end(),i*i-j*j+d);
		}
	}
	cout<<ans<<endl;
	return 0;
}
0