結果

問題 No.800 四平方定理
ユーザー けーむけーむ
提出日時 2020-03-27 11:16:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 1,024 bytes
コンパイル時間 1,634 ms
コンパイル使用メモリ 168,128 KB
実行使用メモリ 65,712 KB
最終ジャッジ日時 2024-06-10 16:11:39
合計ジャッジ時間 3,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 35 ms
34,156 KB
testcase_11 AC 37 ms
37,980 KB
testcase_12 AC 40 ms
37,348 KB
testcase_13 AC 35 ms
35,512 KB
testcase_14 AC 39 ms
37,996 KB
testcase_15 AC 40 ms
37,820 KB
testcase_16 AC 38 ms
38,432 KB
testcase_17 AC 39 ms
38,368 KB
testcase_18 AC 41 ms
38,204 KB
testcase_19 AC 41 ms
38,200 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 42 ms
38,356 KB
testcase_23 AC 86 ms
65,672 KB
testcase_24 AC 79 ms
65,712 KB
testcase_25 AC 84 ms
65,496 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 78 ms
65,404 KB
testcase_29 AC 82 ms
65,656 KB
testcase_30 AC 79 ms
65,428 KB
testcase_31 AC 74 ms
61,084 KB
testcase_32 AC 81 ms
65,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i, n) for(ll i = 0, i##_len = (n); i < i##_len; i++)
#define reps(i, s, n) for(ll i = (s), i##_len = (n); i < i##_len; i++)
#define rrep(i, n) for(ll i = (n) - 1; i >= 0; i--)
#define rreps(i, e, n) for(ll i = (n) - 1; i >= (e); i--)
#define all(x) (x).begin(), (x).end()
#define sz(x) ((ll)(x).size())
#define len(x) ((ll)(x).length())

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    // ifstream in("input.txt");
    // cin.rdbuf(in.rdbuf());
    ll n, d;
    cin >> n >> d;
    const ll MAX_V = 2 * n * n;
    vector<ll> dp(MAX_V + 1, 0);
    reps(i, 1, n + 1) {
        reps(j, 1, n + 1) {
            ll v = i * i + j * j;
            dp[v]++;
        }
    }
    ll ans = 0;
    reps(i, 1, n + 1) {
        reps(j, 1, n + 1) {
            ll v = i * i - j * j;
            ll a = d - v;
            if ((a < 0) || (a > MAX_V)) continue;
            ans += dp[a];
        }
    }
    cout << ans << endl;
    return 0;
}
0