結果

問題 No.800 四平方定理
ユーザー xuzijian629xuzijian629
提出日時 2019-03-18 11:43:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 3,544 ms
コンパイル使用メモリ 230,648 KB
実行使用メモリ 150,992 KB
最終ジャッジ日時 2024-07-18 03:44:35
合計ジャッジ時間 11,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,584 KB
testcase_01 AC 8 ms
5,844 KB
testcase_02 AC 7 ms
5,712 KB
testcase_03 AC 7 ms
5,836 KB
testcase_04 AC 7 ms
5,804 KB
testcase_05 AC 8 ms
5,840 KB
testcase_06 AC 13 ms
8,020 KB
testcase_07 AC 8 ms
5,840 KB
testcase_08 AC 12 ms
7,948 KB
testcase_09 AC 8 ms
5,584 KB
testcase_10 AC 246 ms
77,140 KB
testcase_11 AC 268 ms
77,260 KB
testcase_12 AC 273 ms
77,140 KB
testcase_13 AC 260 ms
77,136 KB
testcase_14 AC 272 ms
77,104 KB
testcase_15 AC 277 ms
77,136 KB
testcase_16 AC 275 ms
77,140 KB
testcase_17 AC 283 ms
77,136 KB
testcase_18 AC 266 ms
77,140 KB
testcase_19 AC 269 ms
77,264 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 272 ms
77,264 KB
testcase_23 AC 546 ms
150,868 KB
testcase_24 AC 544 ms
150,992 KB
testcase_25 AC 553 ms
150,988 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 536 ms
150,864 KB
testcase_29 AC 537 ms
150,864 KB
testcase_30 AC 544 ms
150,860 KB
testcase_31 AC 516 ms
150,860 KB
testcase_32 AC 552 ms
150,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;

int main() {
    int n, d;
    cin >> n >> d;
    gp_hash_table<int, int> cnt;
    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= n; j++) {
            cnt[i * i + j * j]++;
        }
    }

    int ans = 0;
    for (int w = 1; w <= n; w++) {
        int r = w * w + d;
        for (int z = 1; z <= n; z++) {
            if (cnt[r - z * z])
            ans += cnt[r - z * z];
        }
    }
    cout << ans << endl;
}
0