結果

問題 No.800 四平方定理
ユーザー nominomi
提出日時 2019-03-18 00:32:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 1,569 ms
コンパイル使用メモリ 165,800 KB
実行使用メモリ 64,384 KB
最終ジャッジ日時 2024-07-08 07:48:05
合計ジャッジ時間 3,702 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 44 ms
33,536 KB
testcase_11 AC 52 ms
37,376 KB
testcase_12 AC 52 ms
36,624 KB
testcase_13 AC 46 ms
34,884 KB
testcase_14 AC 49 ms
37,324 KB
testcase_15 AC 52 ms
37,148 KB
testcase_16 AC 50 ms
37,704 KB
testcase_17 AC 50 ms
37,752 KB
testcase_18 AC 57 ms
37,632 KB
testcase_19 AC 57 ms
37,476 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 56 ms
37,576 KB
testcase_23 AC 114 ms
64,312 KB
testcase_24 AC 107 ms
64,384 KB
testcase_25 AC 116 ms
64,256 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 107 ms
64,128 KB
testcase_29 AC 114 ms
64,256 KB
testcase_30 AC 107 ms
64,256 KB
testcase_31 AC 100 ms
59,904 KB
testcase_32 AC 114 ms
64,384 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になる組み合わせの数

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]++;
    }
  }

  int ans = 0;
  // 右辺 (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;
      // 左辺の値の範囲は 2 <= (x^2 + y^2) <= 2*N^2
      if (2 <= right and right <= 2*N*N) {
        ans += XY[right];
      }
    }
  }

  cout << ans << endl;

  return 0;
}
0