結果

問題 No.800 四平方定理
ユーザー noisy_noiminnoisy_noimin
提出日時 2019-03-18 00:04:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 1,172 bytes
コンパイル時間 810 ms
コンパイル使用メモリ 96,140 KB
実行使用メモリ 128,256 KB
最終ジャッジ日時 2024-07-08 07:41:58
合計ジャッジ時間 4,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 4 ms
5,504 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 5 ms
5,888 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,888 KB
testcase_09 AC 4 ms
5,632 KB
testcase_10 AC 102 ms
65,024 KB
testcase_11 AC 115 ms
72,704 KB
testcase_12 AC 115 ms
71,424 KB
testcase_13 AC 105 ms
67,968 KB
testcase_14 AC 114 ms
72,832 KB
testcase_15 AC 126 ms
72,320 KB
testcase_16 AC 117 ms
73,472 KB
testcase_17 AC 118 ms
73,344 KB
testcase_18 AC 117 ms
73,216 KB
testcase_19 AC 121 ms
73,344 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 121 ms
73,344 KB
testcase_23 AC 218 ms
128,256 KB
testcase_24 AC 217 ms
128,128 KB
testcase_25 AC 213 ms
127,872 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 216 ms
127,616 KB
testcase_29 AC 216 ms
128,000 KB
testcase_30 AC 211 ms
127,744 KB
testcase_31 AC 200 ms
119,040 KB
testcase_32 AC 220 ms
128,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <cassert>
#include <iostream>
#include <iomanip>
#include <string>
#include <stack>
#include <queue>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
#include <numeric>
#include <bitset>

#define all(c) c.begin(), c.end()
#define rall(c) c.rbegin(), c.rend()
#define debug(x) cerr << #x << ": " << x << endl

using namespace std;

typedef long long ll;
typedef pair<ll, ll> Pll;
typedef pair<int, int> Pii;

const ll MOD = 1000000007;
const long double EPS = 1e-10;
const int dyx[4][2] = {
    { 0, 1}, {-1, 0}, {0,-1}, {1, 0}
};



int main() {
    ll n, d;
    cin >> n >> d;
    
    vector<ll> cnt1(2*n*n+1, 0), cnt2(2*n*n+1, 0);

    for(int i=1;i<=n;++i) {
        for(int j=1;j<=n;++j) {
            ++cnt1[i*i+j*j];
            ++cnt2[i*i-j*j + n*n];
        }
    }

    ll ans = 0LL;
    for(int i=1;i<=2*n*n;++i) {
        if(d-i+n*n < 0 || 2*n*n < d-i+n*n) continue;
        ans += (cnt1[i] * cnt2[d-i+n*n]) % MOD;
        ans %= MOD;
        // cerr << i << ": " << cnt1[i] << " " << d-i << ": " << cnt2[d-i+n*n] << endl;
    }

    cout << ans << endl;

}
0