結果

問題 No.800 四平方定理
ユーザー lumeffluxlumefflux
提出日時 2019-03-18 02:34:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 1,605 ms
コンパイル使用メモリ 167,952 KB
実行使用メモリ 128,512 KB
最終ジャッジ日時 2024-07-08 08:02:30
合計ジャッジ時間 7,426 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
128,384 KB
testcase_01 AC 109 ms
128,384 KB
testcase_02 AC 109 ms
128,384 KB
testcase_03 AC 109 ms
128,384 KB
testcase_04 AC 107 ms
128,384 KB
testcase_05 AC 109 ms
128,256 KB
testcase_06 AC 109 ms
128,512 KB
testcase_07 AC 110 ms
128,384 KB
testcase_08 AC 110 ms
128,384 KB
testcase_09 AC 109 ms
128,384 KB
testcase_10 AC 153 ms
128,256 KB
testcase_11 AC 160 ms
128,256 KB
testcase_12 AC 159 ms
128,256 KB
testcase_13 AC 145 ms
128,256 KB
testcase_14 AC 150 ms
128,256 KB
testcase_15 AC 157 ms
128,256 KB
testcase_16 AC 148 ms
128,384 KB
testcase_17 AC 147 ms
128,256 KB
testcase_18 AC 163 ms
128,384 KB
testcase_19 AC 165 ms
128,256 KB
testcase_20 AC 109 ms
128,256 KB
testcase_21 AC 109 ms
128,384 KB
testcase_22 AC 170 ms
128,384 KB
testcase_23 AC 216 ms
128,256 KB
testcase_24 AC 202 ms
128,384 KB
testcase_25 AC 210 ms
128,256 KB
testcase_26 AC 109 ms
128,256 KB
testcase_27 AC 107 ms
128,384 KB
testcase_28 AC 197 ms
128,256 KB
testcase_29 AC 208 ms
128,384 KB
testcase_30 AC 192 ms
128,256 KB
testcase_31 AC 190 ms
128,256 KB
testcase_32 AC 199 ms
128,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define REP(i,m,n) for(int i=(int)m ; i < (int) n ; ++i )
#define rep(i,n) REP(i,0,n)
int main(){
    long long N, D;
    cin >> N >> D;
    vector<long long> c1(8000001), c2(8000001) ;
    REP(i, 1, N + 1)REP(j, 1, N + 1){
      	c2[i*i + j*j]++;
        int s = i*i - j*j + D;
        if (s >= 1) {
            c1[s]++;
        }
    }
    long long ans = 0;
    rep(i, 8000001){
        ans += c1[i]*c2[i];
    }
    cout << ans << endl;
    return 0;
}
0