結果

問題 No.800 四平方定理
ユーザー nominomi
提出日時 2019-03-18 00:39:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 970 bytes
コンパイル時間 1,584 ms
コンパイル使用メモリ 165,908 KB
実行使用メモリ 103,424 KB
最終ジャッジ日時 2024-07-08 07:49:35
合計ジャッジ時間 4,164 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 61 ms
52,608 KB
testcase_11 AC 67 ms
56,576 KB
testcase_12 AC 69 ms
58,240 KB
testcase_13 AC 59 ms
51,072 KB
testcase_14 AC 65 ms
54,656 KB
testcase_15 AC 72 ms
58,496 KB
testcase_16 AC 66 ms
55,168 KB
testcase_17 AC 68 ms
55,168 KB
testcase_18 AC 79 ms
62,976 KB
testcase_19 AC 79 ms
62,848 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 86 ms
63,104 KB
testcase_23 AC 163 ms
103,424 KB
testcase_24 AC 136 ms
95,616 KB
testcase_25 AC 150 ms
103,168 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 136 ms
95,104 KB
testcase_29 AC 146 ms
99,328 KB
testcase_30 AC 134 ms
95,232 KB
testcase_31 AC 123 ms
88,832 KB
testcase_32 AC 139 ms
96,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long

int N, D;
int XY[2*2000*2000+100]; // XY[i]: 左辺がiになる組み合わせの数
int WZ[2*2000*2000+100]; // WZ[i]: 右辺がiになる組み合わせの数

signed main() {
  cin >> N >> D;
  // 左辺 (x^2 + y^2) の組み合わせを数える
  for (int x = 1; x <= N; x++) {
    for (int y = 1; y <= N; y++) {
      int left = x*x + y*y;
      XY[left]++;
    }
  }

  // 右辺 (w^2 - z^2 + D) の組み合わせを数える
  for (int w = 1; w <= N; w++) {
    for (int z = 1; z <= N; z++) {
      int right = w*w - z*z + D;
      // 式が複雑なので判定を入れておく
      if (right >= 2 and right <= 2*N*N) {
        WZ[right]++;
      }
    }
  }

  int ans = 0;
  // (値がiとなる左辺の場合の数 * 値がiとなる右辺の場合の数)を足し合わせる
  for (int i = 2; i <= 2*N*N; i++) {
    ans += XY[i] * WZ[i];
  }

  cout << ans << endl;

  return 0;
}
0