結果

問題 No.800 四平方定理
ユーザー rogi52rogi52
提出日時 2022-08-13 13:58:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 1,988 ms
コンパイル使用メモリ 201,320 KB
実行使用メモリ 65,728 KB
最終ジャッジ日時 2024-09-24 17:26:49
合計ジャッジ時間 4,665 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 54 ms
34,048 KB
testcase_11 AC 61 ms
38,016 KB
testcase_12 AC 56 ms
37,376 KB
testcase_13 AC 55 ms
35,584 KB
testcase_14 AC 61 ms
38,016 KB
testcase_15 AC 62 ms
37,760 KB
testcase_16 AC 63 ms
38,400 KB
testcase_17 AC 61 ms
38,352 KB
testcase_18 AC 64 ms
38,272 KB
testcase_19 AC 61 ms
38,276 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 64 ms
38,276 KB
testcase_23 AC 125 ms
65,700 KB
testcase_24 AC 132 ms
65,660 KB
testcase_25 AC 120 ms
65,508 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 124 ms
65,372 KB
testcase_29 AC 124 ms
65,728 KB
testcase_30 AC 122 ms
65,432 KB
testcase_31 AC 110 ms
61,084 KB
testcase_32 AC 121 ms
65,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N,D; cin >> N >> D;
    int M = 2 * N * N;
    vector<int> a(M + 1, 0), b(M + 1, 0);
    for(int i = 1; i <= N; i++)
        for(int j = 1; j <= N; j++)
            a[i * i + j * j]++, b[i * i - j * j + N * N]++;
    
    int ans = 0;
    for(int i = 1; i <= M; i++) {
        int x = i - D + N * N;
        if(0 <= x && x <= M) ans += a[i] * b[x];
    }
    cout << ans << endl;
}
0