結果

問題 No.800 四平方定理
ユーザー karinohitokarinohito
提出日時 2021-08-19 23:25:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 1,384 ms
コンパイル使用メモリ 169,648 KB
実行使用メモリ 81,396 KB
最終ジャッジ日時 2024-10-13 01:19:57
合計ジャッジ時間 4,075 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
65,704 KB
testcase_01 AC 25 ms
65,808 KB
testcase_02 AC 24 ms
65,676 KB
testcase_03 AC 25 ms
65,728 KB
testcase_04 AC 24 ms
65,832 KB
testcase_05 AC 25 ms
65,840 KB
testcase_06 AC 25 ms
65,704 KB
testcase_07 AC 26 ms
67,268 KB
testcase_08 AC 28 ms
69,880 KB
testcase_09 AC 26 ms
65,700 KB
testcase_10 AC 55 ms
73,140 KB
testcase_11 AC 57 ms
69,528 KB
testcase_12 AC 60 ms
74,288 KB
testcase_13 AC 49 ms
65,700 KB
testcase_14 AC 50 ms
65,780 KB
testcase_15 AC 62 ms
73,900 KB
testcase_16 AC 48 ms
65,684 KB
testcase_17 AC 49 ms
65,708 KB
testcase_18 AC 68 ms
81,216 KB
testcase_19 AC 71 ms
81,316 KB
testcase_20 AC 25 ms
65,724 KB
testcase_21 AC 25 ms
65,676 KB
testcase_22 AC 65 ms
81,324 KB
testcase_23 AC 102 ms
81,396 KB
testcase_24 AC 81 ms
65,620 KB
testcase_25 AC 106 ms
81,296 KB
testcase_26 AC 25 ms
65,736 KB
testcase_27 AC 31 ms
81,348 KB
testcase_28 AC 78 ms
65,688 KB
testcase_29 AC 92 ms
73,432 KB
testcase_30 AC 78 ms
65,616 KB
testcase_31 AC 74 ms
65,768 KB
testcase_32 AC 82 ms
67,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<ll>>;

ll gcd(ll(a), ll(b)) {
    ll c = a;
    while (a % b != 0) {
        c = a % b;
        a = b;
        b = c;
    }
    return b;
}

int main() {
    ll N,D;
    cin>>N>>D;
    //map<ll,ll> XY,ZW;
    vll XY(2000*2000+D+5,0);
    vll ZW(2000*2000+D+5,0);
    for(ll X=1;X<=N;X++){
        for(ll Y=1;Y<=N;Y++){
            if(X*X+Y*Y<=N*N+D){
                XY[X*X+Y*Y]++;
            }
            if(X*X+D-Y*Y>=2){
                ZW[X*X+D-Y*Y]++;
            }
        }
    }
    ll an=0;
    rep(i,2000*2000+D+2){
        an+=XY[i]*ZW[i];
    }
    cout<<an<<endl;

}
0