結果

問題 No.800 四平方定理
ユーザー xuzijian629xuzijian629
提出日時 2019-03-17 21:45:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,146 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 1,777 ms
コンパイル使用メモリ 205,336 KB
実行使用メモリ 50,420 KB
最終ジャッジ日時 2024-07-07 21:34:58
合計ジャッジ時間 16,564 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,812 KB
testcase_01 AC 8 ms
6,940 KB
testcase_02 AC 6 ms
6,940 KB
testcase_03 AC 7 ms
6,944 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 7 ms
6,944 KB
testcase_06 AC 9 ms
6,940 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 10 ms
6,944 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 414 ms
26,856 KB
testcase_11 AC 463 ms
29,032 KB
testcase_12 AC 466 ms
28,648 KB
testcase_13 AC 414 ms
27,756 KB
testcase_14 AC 476 ms
29,160 KB
testcase_15 AC 486 ms
28,904 KB
testcase_16 AC 481 ms
29,288 KB
testcase_17 AC 477 ms
29,416 KB
testcase_18 AC 450 ms
29,288 KB
testcase_19 AC 452 ms
29,160 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 467 ms
29,232 KB
testcase_23 AC 1,146 ms
50,420 KB
testcase_24 AC 1,097 ms
50,324 KB
testcase_25 AC 1,128 ms
50,296 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1,121 ms
50,036 KB
testcase_29 AC 1,079 ms
50,168 KB
testcase_30 AC 1,141 ms
50,056 KB
testcase_31 AC 994 ms
47,740 KB
testcase_32 AC 1,088 ms
50,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n, d;
    cin >> n >> d;
    unordered_map<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.count(r - z * z))
            ans += cnt[r - z * z];
        }
    }
    cout << ans << endl;
}
0