結果

問題 No.800 四平方定理
ユーザー cherrypi59cherrypi59
提出日時 2019-04-20 13:46:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 399 bytes
コンパイル時間 1,442 ms
コンパイル使用メモリ 166,488 KB
実行使用メモリ 41,940 KB
最終ジャッジ日時 2024-10-01 06:54:48
合計ジャッジ時間 5,461 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,716 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
7,752 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 35 ms
30,212 KB
testcase_11 AC 33 ms
32,768 KB
testcase_12 AC 37 ms
33,860 KB
testcase_13 AC 27 ms
31,452 KB
testcase_14 AC 31 ms
32,152 KB
testcase_15 AC 34 ms
34,284 KB
testcase_16 AC 29 ms
30,912 KB
testcase_17 AC 30 ms
33,920 KB
testcase_18 AC 41 ms
34,920 KB
testcase_19 AC 42 ms
36,420 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 43 ms
37,820 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 3 ms
7,628 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int MAX_D = (int)6e6 + 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