結果

問題 No.800 四平方定理
ユーザー pekempeypekempey
提出日時 2019-03-17 21:27:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 1,085 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 57,700 KB
最終ジャッジ日時 2024-07-07 20:25:25
合計ジャッジ時間 2,439 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,812 KB
testcase_01 AC 9 ms
6,944 KB
testcase_02 AC 8 ms
6,940 KB
testcase_03 AC 8 ms
6,944 KB
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 8 ms
7,680 KB
testcase_06 AC 8 ms
7,904 KB
testcase_07 AC 9 ms
6,948 KB
testcase_08 AC 9 ms
7,628 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 30 ms
29,900 KB
testcase_11 AC 34 ms
32,180 KB
testcase_12 AC 32 ms
33,988 KB
testcase_13 AC 28 ms
30,920 KB
testcase_14 AC 34 ms
31,864 KB
testcase_15 AC 34 ms
32,716 KB
testcase_16 AC 32 ms
32,052 KB
testcase_17 AC 31 ms
31,892 KB
testcase_18 AC 41 ms
34,748 KB
testcase_19 AC 39 ms
36,996 KB
testcase_20 AC 8 ms
6,940 KB
testcase_21 AC 8 ms
6,940 KB
testcase_22 AC 38 ms
36,668 KB
testcase_23 AC 73 ms
55,168 KB
testcase_24 AC 63 ms
51,048 KB
testcase_25 AC 68 ms
57,700 KB
testcase_26 AC 9 ms
6,940 KB
testcase_27 AC 9 ms
7,492 KB
testcase_28 AC 65 ms
53,536 KB
testcase_29 AC 69 ms
53,076 KB
testcase_30 AC 62 ms
51,012 KB
testcase_31 AC 60 ms
49,832 KB
testcase_32 AC 67 ms
53,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <map>

using namespace std;

#define REP(i, n) for (int i = 0; i < (n); i++)

const int MOD = 1e9 + 7;

struct mint {
    int n;
    mint(int n_ = 0) : n(n_) {}
};

mint operator+(mint a, mint b) { a.n += b.n; if (a.n >= MOD) a.n -= MOD; return a; }
mint operator-(mint a, mint b) { a.n -= b.n; if (a.n < 0) a.n += MOD; return a; }
mint operator*(mint a, mint b) { return (long long)a.n * b.n % MOD; }
mint &operator+=(mint &a, mint b) { return a = a + b; }
mint &operator-=(mint &a, mint b) { return a = a - b; }
mint &operator*=(mint &a, mint b) { return a = a * b; }

int C1[2000*2000 + 2000*2000 + 1];
int C2[2000*2000 + 2000*2000 + 1];

int main() {
  int N, D;
  cin >> N >> D;
  for (int i = 1; i <= N; i++) {
    for (int j = 1; j <= N; j++) {
      C1[i*i + j*j]++;
      int k = i*i - j*j + D;
      if (0 <= k && k <= 2000*2000 + 2000*2000) {
        C2[k]++;
      }
    }
  }
  long long ans = 0;
  for (int i = 0; i <= 2000*2000 + 2000*2000; i++) {
    ans += C1[i] * C2[i];
  }
  cout << ans << endl;
}
0