結果

問題 No.800 四平方定理
ユーザー cherrypi59cherrypi59
提出日時 2019-04-20 13:48:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 1,556 ms
コンパイル使用メモリ 167,268 KB
実行使用メモリ 55,000 KB
最終ジャッジ日時 2024-10-01 06:55:15
合計ジャッジ時間 3,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 4 ms
9,792 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 37 ms
30,532 KB
testcase_11 AC 40 ms
33,640 KB
testcase_12 AC 44 ms
34,348 KB
testcase_13 AC 34 ms
30,152 KB
testcase_14 AC 32 ms
31,940 KB
testcase_15 AC 40 ms
34,964 KB
testcase_16 AC 33 ms
32,164 KB
testcase_17 AC 34 ms
32,740 KB
testcase_18 AC 49 ms
34,624 KB
testcase_19 AC 49 ms
35,920 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 52 ms
34,684 KB
testcase_23 AC 99 ms
55,000 KB
testcase_24 AC 80 ms
50,216 KB
testcase_25 AC 101 ms
53,632 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
7,500 KB
testcase_28 AC 89 ms
50,364 KB
testcase_29 AC 96 ms
52,988 KB
testcase_30 AC 92 ms
49,724 KB
testcase_31 AC 81 ms
48,672 KB
testcase_32 AC 92 ms
50,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int MAX_D = (int)8e6 + 5;
int A[MAX_D], B[MAX_D];

int main(){
    int N, D; cin >> N >> D;

    for(int i=1;i<=N;i++){
        for(int j=1;j<=N;j++){
            A[i*i+j*j]++;
            if(0<i*i-j*j+D) B[i*i-j*j+D]++;
        }
    }

    int ans = 0;
    for(int i=1;i<=2*N*N;i++) ans += A[i] * B[i];

    cout << ans << endl;
    return 0;
}
0