結果

問題 No.800 四平方定理
ユーザー simansiman
提出日時 2022-04-05 09:00:09
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 887 bytes
コンパイル時間 3,459 ms
コンパイル使用メモリ 139,104 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-05-04 19:01:20
合計ジャッジ時間 9,133 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
105,000 KB
testcase_01 AC 28 ms
105,088 KB
testcase_02 AC 29 ms
104,956 KB
testcase_03 AC 29 ms
104,900 KB
testcase_04 AC 28 ms
104,960 KB
testcase_05 AC 29 ms
105,088 KB
testcase_06 AC 28 ms
104,992 KB
testcase_07 AC 29 ms
105,088 KB
testcase_08 AC 29 ms
104,880 KB
testcase_09 AC 29 ms
104,864 KB
testcase_10 AC 60 ms
104,924 KB
testcase_11 AC 64 ms
104,988 KB
testcase_12 AC 63 ms
105,056 KB
testcase_13 AC 61 ms
104,960 KB
testcase_14 AC 62 ms
105,052 KB
testcase_15 AC 65 ms
105,048 KB
testcase_16 AC 62 ms
104,960 KB
testcase_17 AC 62 ms
104,960 KB
testcase_18 AC 74 ms
104,892 KB
testcase_19 AC 72 ms
104,960 KB
testcase_20 AC 40 ms
105,036 KB
testcase_21 AC 34 ms
105,084 KB
testcase_22 AC 70 ms
105,080 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 27 ms
105,004 KB
testcase_27 AC 27 ms
104,920 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