結果

問題 No.800 四平方定理
ユーザー kyo1kyo1
提出日時 2020-06-18 21:52:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 2,166 ms
コンパイル使用メモリ 203,548 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-07-03 13:00:47
合計ジャッジ時間 4,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
42,240 KB
testcase_01 AC 11 ms
42,112 KB
testcase_02 AC 12 ms
42,112 KB
testcase_03 AC 11 ms
42,240 KB
testcase_04 AC 11 ms
42,240 KB
testcase_05 AC 12 ms
42,304 KB
testcase_06 AC 12 ms
42,268 KB
testcase_07 AC 12 ms
42,240 KB
testcase_08 AC 12 ms
42,228 KB
testcase_09 AC 11 ms
42,240 KB
testcase_10 AC 22 ms
42,240 KB
testcase_11 AC 24 ms
42,352 KB
testcase_12 AC 23 ms
42,112 KB
testcase_13 AC 22 ms
42,240 KB
testcase_14 AC 23 ms
42,240 KB
testcase_15 AC 24 ms
42,276 KB
testcase_16 AC 23 ms
42,240 KB
testcase_17 AC 24 ms
42,112 KB
testcase_18 AC 26 ms
42,368 KB
testcase_19 AC 24 ms
42,308 KB
testcase_20 AC 11 ms
42,240 KB
testcase_21 AC 10 ms
42,240 KB
testcase_22 AC 23 ms
42,288 KB
testcase_23 AC 38 ms
42,240 KB
testcase_24 AC 35 ms
42,164 KB
testcase_25 AC 37 ms
42,240 KB
testcase_26 AC 11 ms
42,240 KB
testcase_27 AC 11 ms
42,112 KB
testcase_28 AC 36 ms
42,308 KB
testcase_29 AC 38 ms
42,172 KB
testcase_30 AC 38 ms
42,112 KB
testcase_31 AC 36 ms
42,240 KB
testcase_32 AC 38 ms
42,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int N, D;
  cin >> N >> D;
  vector<int> A(10000000, 0);
  unordered_map<int, int> mp;
  for (int x = 1; x < N + 1; x++) {
    for (int y = 1; y < N + 1; y++) {
      A[x * x + y * y]++;
    }
  }
  int res = 0;
  for (int z = 1; z < N + 1; z++) {
    for (int w = 1; w < N + 1; w++) {
      if (D + w * w - z * z > 0) res += A[D + w * w - z * z];
    }
  }
  cout << res << '\n';
  return 0;
}
0