結果

問題 No.800 四平方定理
ユーザー TiramisterTiramister
提出日時 2019-03-17 23:01:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 68,352 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-07-08 01:42:58
合計ジャッジ時間 3,596 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 33 ms
34,132 KB
testcase_11 AC 32 ms
37,996 KB
testcase_12 AC 35 ms
37,504 KB
testcase_13 AC 29 ms
35,584 KB
testcase_14 AC 33 ms
37,988 KB
testcase_15 AC 33 ms
37,800 KB
testcase_16 AC 35 ms
38,364 KB
testcase_17 AC 33 ms
38,400 KB
testcase_18 AC 37 ms
38,316 KB
testcase_19 AC 37 ms
38,248 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 39 ms
38,416 KB
testcase_23 AC 78 ms
65,664 KB
testcase_24 AC 70 ms
65,700 KB
testcase_25 AC 77 ms
65,496 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 RE -
testcase_28 AC 73 ms
65,384 KB
testcase_29 AC 72 ms
65,664 KB
testcase_30 AC 72 ms
65,448 KB
testcase_31 AC 62 ms
61,096 KB
testcase_32 AC 73 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;
using ll = long long;

template <class T>
inline T sq(T a) { return a * a; }

int main() {
    int N, D;
    cin >> N >> D;
    vector<ll> cnt(sq(N) * 2 + 1, 0);
    for (int x = 1; x <= N; ++x) {
        for (int y = 1; y <= N; ++y) {
            ++cnt[sq(x) + sq(y)];
        }
    }

    ll ans = 0;
    for (int z = 1; z <= N; ++z) {
        for (int w = 1; w <= N; ++w) {
            int val = sq(w) - sq(z) + D;
            if (val >= 0) ans += cnt[val];
        }
    }
    cout << ans << endl;
    return 0;
}
0