結果

問題 No.800 四平方定理
ユーザー simansiman
提出日時 2022-04-05 09:00:09
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 887 bytes
コンパイル時間 2,718 ms
コンパイル使用メモリ 138,984 KB
実行使用メモリ 105,036 KB
最終ジャッジ日時 2024-11-26 08:50:01
合計ジャッジ時間 10,066 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
104,876 KB
testcase_01 AC 29 ms
104,892 KB
testcase_02 AC 28 ms
104,876 KB
testcase_03 AC 28 ms
104,924 KB
testcase_04 AC 26 ms
104,976 KB
testcase_05 AC 26 ms
105,036 KB
testcase_06 AC 28 ms
105,016 KB
testcase_07 AC 29 ms
104,856 KB
testcase_08 AC 30 ms
104,928 KB
testcase_09 AC 29 ms
104,944 KB
testcase_10 AC 57 ms
104,860 KB
testcase_11 AC 89 ms
104,892 KB
testcase_12 AC 63 ms
104,808 KB
testcase_13 AC 56 ms
104,932 KB
testcase_14 AC 61 ms
105,020 KB
testcase_15 AC 61 ms
104,920 KB
testcase_16 AC 61 ms
104,924 KB
testcase_17 AC 57 ms
104,868 KB
testcase_18 AC 68 ms
104,868 KB
testcase_19 AC 65 ms
104,892 KB
testcase_20 AC 27 ms
104,744 KB
testcase_21 AC 27 ms
104,880 KB
testcase_22 AC 68 ms
104,844 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 27 ms
104,856 KB
testcase_27 AC 27 ms
104,936 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

const int MAX_N = 2000;
const int MAX_D = 1000000;

ll cnt1[2 * MAX_N * MAX_N + 10];
ll cnt2[MAX_N * MAX_N + MAX_D + 10];

int main() {
  int N, D;
  cin >> N >> D;
  memset(cnt1, 0, sizeof(cnt1));
  memset(cnt2, 0, sizeof(cnt2));

  for (int x = 1; x <= N; ++x) {
    for (int y = 1; y <= N; ++y) {
      int v = x * x + y * y;
      cnt1[v]++;
    }
  }

  for (int w = 1; w <= N; ++w) {
    for (int z = 1; z <= N; ++z) {
      int v = w * w - z * z + D;
      if (v <= 0) continue;
      cnt2[v]++;
    }
  }

  ll ans = 0;

  for (int v = 1; v <= 2 * N * N; ++v) {
    ans += cnt1[v] * cnt2[v];
  }

  cout << ans << endl;

  return 0;
}
0