結果

問題 No.800 四平方定理
ユーザー simansiman
提出日時 2022-04-05 09:02:25
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 1,149 ms
コンパイル使用メモリ 139,628 KB
実行使用メモリ 128,528 KB
最終ジャッジ日時 2024-05-04 19:02:46
合計ジャッジ時間 4,657 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
128,408 KB
testcase_01 AC 48 ms
128,292 KB
testcase_02 AC 47 ms
128,512 KB
testcase_03 AC 47 ms
128,492 KB
testcase_04 AC 47 ms
128,416 KB
testcase_05 AC 55 ms
128,308 KB
testcase_06 AC 48 ms
128,512 KB
testcase_07 AC 47 ms
128,384 KB
testcase_08 AC 48 ms
128,488 KB
testcase_09 AC 47 ms
128,464 KB
testcase_10 AC 76 ms
128,376 KB
testcase_11 AC 83 ms
128,528 KB
testcase_12 AC 85 ms
128,288 KB
testcase_13 AC 77 ms
128,404 KB
testcase_14 AC 79 ms
128,420 KB
testcase_15 AC 106 ms
128,384 KB
testcase_16 AC 80 ms
128,512 KB
testcase_17 AC 79 ms
128,296 KB
testcase_18 AC 82 ms
128,368 KB
testcase_19 AC 85 ms
128,376 KB
testcase_20 AC 48 ms
128,304 KB
testcase_21 AC 48 ms
128,384 KB
testcase_22 AC 85 ms
128,504 KB
testcase_23 AC 128 ms
128,492 KB
testcase_24 AC 117 ms
128,444 KB
testcase_25 AC 129 ms
128,456 KB
testcase_26 AC 48 ms
128,512 KB
testcase_27 AC 46 ms
128,512 KB
testcase_28 AC 116 ms
128,512 KB
testcase_29 AC 119 ms
128,512 KB
testcase_30 AC 115 ms
128,488 KB
testcase_31 AC 110 ms
128,424 KB
testcase_32 AC 118 ms
128,488 KB
権限があれば一括ダウンロードができます

ソースコード

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[2 * MAX_N * MAX_N + 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