結果

問題 No.800 四平方定理
ユーザー SuikabaSuikaba
提出日時 2019-03-17 21:32:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 200,160 KB
実行使用メモリ 103,764 KB
最終ジャッジ日時 2024-07-07 20:49:14
合計ジャッジ時間 4,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 9 ms
6,944 KB
testcase_02 AC 9 ms
6,944 KB
testcase_03 AC 9 ms
6,948 KB
testcase_04 AC 9 ms
6,944 KB
testcase_05 AC 9 ms
6,940 KB
testcase_06 AC 9 ms
6,940 KB
testcase_07 AC 9 ms
6,944 KB
testcase_08 AC 9 ms
9,800 KB
testcase_09 AC 10 ms
6,944 KB
testcase_10 AC 59 ms
56,144 KB
testcase_11 AC 63 ms
59,616 KB
testcase_12 AC 66 ms
63,484 KB
testcase_13 AC 55 ms
55,900 KB
testcase_14 AC 60 ms
56,776 KB
testcase_15 AC 66 ms
61,916 KB
testcase_16 AC 63 ms
58,336 KB
testcase_17 AC 62 ms
58,060 KB
testcase_18 AC 76 ms
66,372 KB
testcase_19 AC 75 ms
66,128 KB
testcase_20 AC 8 ms
6,940 KB
testcase_21 AC 8 ms
6,940 KB
testcase_22 AC 76 ms
66,280 KB
testcase_23 AC 132 ms
103,764 KB
testcase_24 AC 115 ms
97,172 KB
testcase_25 AC 133 ms
103,532 KB
testcase_26 AC 9 ms
6,940 KB
testcase_27 AC 9 ms
7,496 KB
testcase_28 AC 117 ms
95,248 KB
testcase_29 AC 125 ms
100,040 KB
testcase_30 AC 118 ms
96,872 KB
testcase_31 AC 104 ms
90,176 KB
testcase_32 AC 118 ms
97,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;

ll l[1 << 23], r[1 << 23];

int main() {
    int n, d; cin >> n >> d;
    for(int a = 1; a <= n; ++a) {
        for(int b = 1; b <= n; ++b) {
            l[a * a + b * b] += 1;
            if(a * a - b * b + d >= 0) {
                r[a * a - b * b + d] += 1;
            }
        }
    }

    ll ans = 0;
    for(int i = 0; i < 1 << 23; ++i) {
        ans += l[i] * r[i];
    }
    
    cout << ans << endl;
}
0