結果

問題 No.800 四平方定理
ユーザー simansiman
提出日時 2022-04-05 09:02:25
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 3,568 ms
コンパイル使用メモリ 140,128 KB
実行使用メモリ 128,512 KB
最終ジャッジ日時 2024-11-26 08:51:58
合計ジャッジ時間 4,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
128,404 KB
testcase_01 AC 38 ms
128,300 KB
testcase_02 AC 38 ms
128,384 KB
testcase_03 AC 38 ms
128,372 KB
testcase_04 AC 39 ms
128,440 KB
testcase_05 AC 39 ms
128,336 KB
testcase_06 AC 38 ms
128,476 KB
testcase_07 AC 37 ms
128,288 KB
testcase_08 AC 39 ms
128,384 KB
testcase_09 AC 37 ms
128,168 KB
testcase_10 AC 70 ms
128,444 KB
testcase_11 AC 75 ms
128,344 KB
testcase_12 AC 100 ms
128,196 KB
testcase_13 AC 67 ms
128,512 KB
testcase_14 AC 73 ms
128,232 KB
testcase_15 AC 75 ms
128,380 KB
testcase_16 AC 74 ms
128,352 KB
testcase_17 AC 76 ms
128,384 KB
testcase_18 AC 79 ms
128,372 KB
testcase_19 AC 80 ms
128,316 KB
testcase_20 AC 36 ms
128,328 KB
testcase_21 AC 35 ms
128,380 KB
testcase_22 AC 79 ms
128,364 KB
testcase_23 AC 126 ms
128,500 KB
testcase_24 AC 117 ms
128,196 KB
testcase_25 AC 123 ms
128,324 KB
testcase_26 AC 37 ms
128,412 KB
testcase_27 AC 38 ms
128,320 KB
testcase_28 AC 117 ms
128,188 KB
testcase_29 AC 117 ms
128,380 KB
testcase_30 AC 113 ms
128,344 KB
testcase_31 AC 106 ms
128,384 KB
testcase_32 AC 117 ms
128,384 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