結果

問題 No.800 四平方定理
ユーザー hiro71687khiro71687k
提出日時 2023-03-15 14:53:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 4,464 ms
コンパイル使用メモリ 261,452 KB
実行使用メモリ 69,660 KB
最終ジャッジ日時 2024-09-18 08:44:58
合計ジャッジ時間 5,703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,760 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 33 ms
35,968 KB
testcase_11 AC 37 ms
38,912 KB
testcase_12 AC 36 ms
39,552 KB
testcase_13 AC 30 ms
35,684 KB
testcase_14 AC 34 ms
37,948 KB
testcase_15 AC 36 ms
39,936 KB
testcase_16 AC 34 ms
38,336 KB
testcase_17 AC 36 ms
38,400 KB
testcase_18 AC 43 ms
42,224 KB
testcase_19 AC 41 ms
42,328 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 42 ms
42,332 KB
testcase_23 AC 93 ms
69,660 KB
testcase_24 AC 85 ms
65,664 KB
testcase_25 AC 95 ms
69,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 5 ms
7,168 KB
testcase_28 AC 86 ms
65,408 KB
testcase_29 AC 92 ms
67,584 KB
testcase_30 AC 87 ms
65,408 KB
testcase_31 AC 75 ms
61,056 KB
testcase_32 AC 85 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=int;
using ld=long double;
ld pie=3.141592653589793;
ll inf=444444444;
ll mod=1000000007;
int main(){
    ll n,d;
    cin >> n >> d;
    vector<ll>memo(n*n+n*n+2,0);
    for (ll i = 1; i <=n; i++)
    {
        for (ll j = 1; j <=n; j++)
        {
            memo[i*i+j*j]+=1;
        }
    }
    vector<ll>memo2(n*n+n*n+2+d,0);
    for (ll i = 1; i <=n; i++)
    {
        for (ll j = 1; j <=n; j++)
        {
            if (i*i-j*j+d<=0)
            {
                continue;
            }
            memo2[i*i-j*j+d]+=1;
        }
    }
    ll ans=0;
    for (ll i = 1; i < memo.size(); i++)
    {
        ans+=memo[i]*memo2[i];
    }
    cout << ans << endl;
}
0