結果

問題 No.800 四平方定理
ユーザー karinohitokarinohito
提出日時 2021-08-19 23:23:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 746 bytes
コンパイル時間 3,976 ms
コンパイル使用メモリ 174,704 KB
実行使用メモリ 150,948 KB
最終ジャッジ日時 2024-10-13 01:18:19
合計ジャッジ時間 25,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
13,636 KB
testcase_01 AC 26 ms
7,296 KB
testcase_02 AC 17 ms
6,816 KB
testcase_03 AC 19 ms
6,820 KB
testcase_04 AC 19 ms
6,820 KB
testcase_05 AC 21 ms
6,820 KB
testcase_06 AC 28 ms
7,552 KB
testcase_07 AC 39 ms
9,216 KB
testcase_08 AC 55 ms
11,520 KB
testcase_09 AC 24 ms
6,912 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,626 ms
85,632 KB
testcase_14 AC 1,787 ms
98,048 KB
testcase_15 TLE -
testcase_16 AC 1,813 ms
98,816 KB
testcase_17 AC 1,786 ms
95,232 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
    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;
    for(auto p:ZW){
        an+=ZW[p.first]*XY[p.first];
    }
    cout<<an<<endl;

}
0