結果

問題 No.800 四平方定理
ユーザー pockynypockyny
提出日時 2019-03-18 03:43:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 65,800 KB
実行使用メモリ 64,560 KB
最終ジャッジ日時 2024-07-08 10:10:22
合計ジャッジ時間 1,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 20 ms
35,076 KB
testcase_11 AC 21 ms
39,872 KB
testcase_12 AC 22 ms
38,016 KB
testcase_13 AC 19 ms
36,912 KB
testcase_14 AC 21 ms
39,836 KB
testcase_15 AC 20 ms
38,380 KB
testcase_16 AC 22 ms
38,772 KB
testcase_17 AC 19 ms
38,932 KB
testcase_18 AC 23 ms
38,992 KB
testcase_19 AC 22 ms
39,080 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 27 ms
40,228 KB
testcase_23 AC 58 ms
64,464 KB
testcase_24 AC 56 ms
64,560 KB
testcase_25 AC 58 ms
64,364 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 55 ms
64,188 KB
testcase_29 AC 59 ms
64,356 KB
testcase_30 AC 55 ms
64,188 KB
testcase_31 AC 45 ms
60,008 KB
testcase_32 AC 56 ms
64,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
long long cnt[10000000] = {},n,d,ans = 0;
int main(){
	int i,j;
	cin >> n >> d;
	for(i=1;i<=n;i++){
		for(j=1;j<=n;j++){
			cnt[i*i+j*j]++;
		}
	}
	for(i=1;i<=n;i++){
		for(j=1;j<=n;j++){
			if(d - i*i + j*j<=0) continue;
			ans += cnt[d-i*i+j*j];
		}
	}
	cout << ans << endl;
}
0