結果

問題 No.800 四平方定理
ユーザー potoooooooopotoooooooo
提出日時 2019-03-21 20:39:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 1,719 ms
コンパイル使用メモリ 166,064 KB
実行使用メモリ 103,424 KB
最終ジャッジ日時 2024-09-19 02:00:34
合計ジャッジ時間 5,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 4 ms
5,504 KB
testcase_07 AC 4 ms
5,504 KB
testcase_08 AC 5 ms
6,272 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 89 ms
52,736 KB
testcase_11 AC 94 ms
56,576 KB
testcase_12 AC 100 ms
58,240 KB
testcase_13 AC 84 ms
51,200 KB
testcase_14 AC 89 ms
54,656 KB
testcase_15 AC 100 ms
58,496 KB
testcase_16 AC 93 ms
55,296 KB
testcase_17 AC 93 ms
55,296 KB
testcase_18 AC 110 ms
62,848 KB
testcase_19 AC 112 ms
62,976 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 112 ms
62,976 KB
testcase_23 AC 189 ms
103,424 KB
testcase_24 AC 173 ms
95,744 KB
testcase_25 AC 190 ms
103,168 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 170 ms
95,360 KB
testcase_29 AC 180 ms
99,456 KB
testcase_30 AC 167 ms
95,232 KB
testcase_31 AC 159 ms
88,832 KB
testcase_32 AC 174 ms
96,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long v[8000010], w[8000010];

int main() {
    long long n, d; cin >> n >> d;
    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= n; j++) {
            v[i*i+j*j]++;
            if (i*i-j*j+d >= 0) w[i*i-j*j+d]++;
        }
    }
    long long ans = 0;
    for (int i = 0; i <= n*n*2; i++) {
        ans += v[i] * w[i];
    }
    cout << ans << endl;
    return 0;
}
0