結果

問題 No.800 四平方定理
ユーザー karinohitokarinohito
提出日時 2021-08-19 23:25:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 794 bytes
コンパイル時間 1,463 ms
コンパイル使用メモリ 167,812 KB
実行使用メモリ 65,872 KB
最終ジャッジ日時 2024-10-13 01:19:15
合計ジャッジ時間 4,630 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
65,744 KB
testcase_01 AC 24 ms
65,612 KB
testcase_02 AC 25 ms
65,668 KB
testcase_03 AC 25 ms
65,680 KB
testcase_04 AC 24 ms
65,744 KB
testcase_05 AC 24 ms
65,720 KB
testcase_06 AC 24 ms
65,544 KB
testcase_07 AC 25 ms
65,608 KB
testcase_08 AC 26 ms
65,608 KB
testcase_09 AC 25 ms
65,664 KB
testcase_10 AC 52 ms
65,552 KB
testcase_11 AC 46 ms
65,680 KB
testcase_12 AC 56 ms
65,700 KB
testcase_13 AC 43 ms
65,548 KB
testcase_14 AC 45 ms
65,700 KB
testcase_15 AC 48 ms
65,748 KB
testcase_16 AC 47 ms
65,768 KB
testcase_17 AC 42 ms
65,724 KB
testcase_18 AC 59 ms
65,780 KB
testcase_19 AC 55 ms
65,672 KB
testcase_20 AC 25 ms
65,708 KB
testcase_21 AC 25 ms
65,744 KB
testcase_22 AC 57 ms
65,728 KB
testcase_23 RE -
testcase_24 AC 76 ms
65,656 KB
testcase_25 RE -
testcase_26 AC 24 ms
65,712 KB
testcase_27 AC 26 ms
65,696 KB
testcase_28 AC 73 ms
65,652 KB
testcase_29 RE -
testcase_30 AC 69 ms
65,692 KB
testcase_31 AC 70 ms
65,608 KB
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

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+5,0);
    vll ZW(2000*2000+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+2){
        an+=XY[i]*ZW[i];
    }
    cout<<an<<endl;

}
0