結果

問題 No.800 四平方定理
ユーザー 沙耶花沙耶花
提出日時 2020-11-28 16:40:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 2,465 ms
コンパイル使用メモリ 201,976 KB
実行使用メモリ 81,484 KB
最終ジャッジ日時 2024-09-12 23:13:45
合計ジャッジ時間 5,040 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
81,320 KB
testcase_01 AC 23 ms
81,304 KB
testcase_02 AC 23 ms
81,280 KB
testcase_03 AC 23 ms
81,324 KB
testcase_04 AC 22 ms
81,344 KB
testcase_05 AC 23 ms
81,308 KB
testcase_06 AC 23 ms
81,340 KB
testcase_07 AC 23 ms
81,316 KB
testcase_08 AC 24 ms
81,484 KB
testcase_09 AC 23 ms
81,380 KB
testcase_10 AC 46 ms
81,404 KB
testcase_11 AC 51 ms
81,284 KB
testcase_12 AC 51 ms
81,460 KB
testcase_13 AC 49 ms
81,288 KB
testcase_14 AC 52 ms
81,376 KB
testcase_15 AC 53 ms
81,408 KB
testcase_16 AC 51 ms
81,340 KB
testcase_17 AC 51 ms
81,384 KB
testcase_18 AC 56 ms
81,320 KB
testcase_19 AC 57 ms
81,280 KB
testcase_20 AC 22 ms
81,312 KB
testcase_21 AC 22 ms
81,380 KB
testcase_22 AC 55 ms
81,316 KB
testcase_23 AC 95 ms
81,308 KB
testcase_24 AC 87 ms
81,320 KB
testcase_25 AC 94 ms
81,300 KB
testcase_26 AC 22 ms
81,284 KB
testcase_27 AC 22 ms
81,372 KB
testcase_28 AC 86 ms
81,336 KB
testcase_29 AC 91 ms
81,316 KB
testcase_30 AC 85 ms
81,460 KB
testcase_31 AC 80 ms
81,280 KB
testcase_32 AC 86 ms
81,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000000000000



int main(){
	
	int N,D;
	cin>>N>>D;
	
	vector<long long> cnt(10000000,0LL);

	
	for(int i=1;i<=N;i++){
		for(int j=1;j<=N;j++){
			cnt[i*i+j*j]++;
		}
	}
	
	long long ans = 0LL;
	
	for(int i=1;i<=N;i++){
		for(int j=1;j<=N;j++){
			int t = i*i-j*j+D;
			if(t<0)continue;
			ans += cnt[t];
		}
	}
	
	cout<<ans<<endl;
		
	
    return 0;
}
0