結果

問題 No.800 四平方定理
ユーザー Yoshinari TakaokaYoshinari Takaoka
提出日時 2019-03-18 00:46:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 1,206 ms
コンパイル使用メモリ 159,444 KB
実行使用メモリ 73,472 KB
最終ジャッジ日時 2024-07-08 07:49:55
合計ジャッジ時間 3,637 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 2 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 5 ms
6,784 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 51 ms
37,888 KB
testcase_11 AC 55 ms
39,808 KB
testcase_12 AC 59 ms
41,600 KB
testcase_13 AC 45 ms
35,712 KB
testcase_14 AC 51 ms
38,016 KB
testcase_15 AC 57 ms
41,856 KB
testcase_16 AC 52 ms
38,400 KB
testcase_17 AC 54 ms
38,272 KB
testcase_18 AC 66 ms
46,080 KB
testcase_19 AC 63 ms
46,208 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 67 ms
46,208 KB
testcase_23 AC 124 ms
73,472 KB
testcase_24 AC 111 ms
65,536 KB
testcase_25 AC 131 ms
73,344 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 6 ms
11,008 KB
testcase_28 AC 110 ms
65,280 KB
testcase_29 AC 120 ms
69,376 KB
testcase_30 AC 112 ms
65,408 KB
testcase_31 AC 102 ms
60,928 KB
testcase_32 AC 113 ms
66,432 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 + D, 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