結果

問題 No.800 四平方定理
ユーザー SuikabaSuikaba
提出日時 2019-03-17 21:30:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 199,424 KB
実行使用メモリ 105,460 KB
最終ジャッジ日時 2024-07-07 20:42:59
合計ジャッジ時間 3,638 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 5 ms
6,944 KB
testcase_02 AC 5 ms
6,944 KB
testcase_03 AC 5 ms
7,852 KB
testcase_04 AC 5 ms
6,940 KB
testcase_05 AC 5 ms
6,944 KB
testcase_06 AC 5 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 5 ms
9,676 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 39 ms
54,184 KB
testcase_11 AC 40 ms
58,348 KB
testcase_12 AC 44 ms
58,240 KB
testcase_13 AC 35 ms
51,200 KB
testcase_14 AC 35 ms
54,784 KB
testcase_15 AC 42 ms
58,624 KB
testcase_16 AC 36 ms
55,296 KB
testcase_17 AC 35 ms
55,296 KB
testcase_18 AC 47 ms
62,976 KB
testcase_19 AC 50 ms
62,976 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 50 ms
63,104 KB
testcase_23 WA -
testcase_24 AC 83 ms
95,616 KB
testcase_25 WA -
testcase_26 AC 5 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 AC 81 ms
95,488 KB
testcase_29 WA -
testcase_30 AC 84 ms
95,360 KB
testcase_31 AC 72 ms
88,960 KB
testcase_32 AC 85 ms
96,768 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 << 22; ++i) {
        ans += l[i] * r[i];
    }
    
    cout << ans << endl;
}
0