結果

問題 No.800 四平方定理
ユーザー ScottShelbyScottShelby
提出日時 2020-08-24 23:55:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 1,569 ms
コンパイル使用メモリ 168,960 KB
実行使用メモリ 65,844 KB
最終ジャッジ日時 2024-11-06 10:54:40
合計ジャッジ時間 4,389 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
65,672 KB
testcase_01 AC 29 ms
65,672 KB
testcase_02 AC 29 ms
65,664 KB
testcase_03 AC 28 ms
65,820 KB
testcase_04 AC 54 ms
65,712 KB
testcase_05 AC 57 ms
65,676 KB
testcase_06 AC 57 ms
65,792 KB
testcase_07 AC 57 ms
65,732 KB
testcase_08 AC 30 ms
65,792 KB
testcase_09 AC 29 ms
65,792 KB
testcase_10 AC 46 ms
65,732 KB
testcase_11 AC 49 ms
65,824 KB
testcase_12 AC 51 ms
65,736 KB
testcase_13 AC 47 ms
65,700 KB
testcase_14 AC 48 ms
65,740 KB
testcase_15 AC 49 ms
65,740 KB
testcase_16 AC 48 ms
65,724 KB
testcase_17 AC 49 ms
65,840 KB
testcase_18 AC 52 ms
65,768 KB
testcase_19 AC 53 ms
65,732 KB
testcase_20 AC 29 ms
65,720 KB
testcase_21 AC 29 ms
65,740 KB
testcase_22 AC 53 ms
65,704 KB
testcase_23 AC 90 ms
65,820 KB
testcase_24 AC 83 ms
65,824 KB
testcase_25 AC 86 ms
65,712 KB
testcase_26 AC 28 ms
65,824 KB
testcase_27 AC 28 ms
65,668 KB
testcase_28 AC 83 ms
65,820 KB
testcase_29 AC 81 ms
65,764 KB
testcase_30 AC 82 ms
65,844 KB
testcase_31 AC 74 ms
65,764 KB
testcase_32 AC 82 ms
65,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,N) for(ll (i)=0;(i)<(N);(i)++)
#define chmax(x,y) x=max(x,y)
#define chmin(x,y) x=min(x,y)
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
const int mod = 1000000007;
const int INF = 1001001001;
const int MAXV = 2000 * 2000 + 2000 * 2000 + 1;
int main() {
  int n, d;
  cin >> n >> d;

  vector<int> a(MAXV), b(MAXV);

  for (int i = 1; i <= n; ++i) for (int j = 1; j <= n; ++j) {
    int v = i * i + j * j;
    a[v]++;
  }

  for (int i = 1; i <= n; ++i) for (int j = 1; j <= n; ++j) {
    int v = i * i - j * j + d;
    if (v >= MAXV || v < 0) continue;
    b[v]++;
  }

  ll ans = 0;
  rep(i, MAXV) {
    ans += a[i] * b[i];
  }

  cout << ans << endl;

}
0