結果

問題 No.800 四平方定理
ユーザー Yoshinari TakaokaYoshinari Takaoka
提出日時 2019-03-18 00:38:22
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 1,263 ms
コンパイル使用メモリ 159,600 KB
実行使用メモリ 65,664 KB
最終ジャッジ日時 2024-07-08 07:48:40
合計ジャッジ時間 4,235 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 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 52 ms
34,176 KB
testcase_11 AC 57 ms
37,888 KB
testcase_12 AC 64 ms
37,376 KB
testcase_13 AC 52 ms
35,456 KB
testcase_14 AC 57 ms
38,016 KB
testcase_15 AC 59 ms
37,760 KB
testcase_16 AC 59 ms
38,272 KB
testcase_17 AC 58 ms
38,400 KB
testcase_18 AC 64 ms
38,272 KB
testcase_19 AC 66 ms
38,144 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 65 ms
38,272 KB
testcase_23 AC 127 ms
65,536 KB
testcase_24 AC 117 ms
65,664 KB
testcase_25 AC 125 ms
65,536 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 RE -
testcase_28 AC 120 ms
65,280 KB
testcase_29 AC 123 ms
65,536 KB
testcase_30 AC 116 ms
65,408 KB
testcase_31 AC 106 ms
60,928 KB
testcase_32 AC 114 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main(int argc, char *argv[]) {
    int N, D;
    cin >> N >> D;

    
    vector<int64_t> arr(N * N + N * N, 0);
    for (int x = 1; x <= N; x++) {
        for (int y = 1; y <= N; y++) {
            arr[x * x + y * y]++;
        }
    }

    int64_t ans = 0;
    for (int w = 1; w <= N; w++) {
        for (int z = 1; z <= N; z++) {
            int one = w * w - z * z + D;
            if (one >= 0) {
                ans += arr[one];
            }
        }
    }

    cout << ans << endl;
	return 0;
}
0