結果

問題 No.800 四平方定理
ユーザー cotton_fn_cotton_fn_
提出日時 2019-06-30 19:05:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 1,257 bytes
コンパイル時間 869 ms
コンパイル使用メモリ 113,156 KB
実行使用メモリ 128,256 KB
最終ジャッジ日時 2024-07-06 12:31:03
合計ジャッジ時間 3,254 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,504 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 4 ms
6,016 KB
testcase_07 AC 3 ms
5,504 KB
testcase_08 AC 4 ms
6,016 KB
testcase_09 AC 3 ms
5,632 KB
testcase_10 AC 47 ms
65,080 KB
testcase_11 AC 53 ms
72,808 KB
testcase_12 AC 52 ms
71,552 KB
testcase_13 AC 45 ms
67,896 KB
testcase_14 AC 53 ms
72,724 KB
testcase_15 AC 53 ms
72,396 KB
testcase_16 AC 57 ms
73,472 KB
testcase_17 AC 52 ms
73,376 KB
testcase_18 AC 60 ms
73,132 KB
testcase_19 AC 60 ms
73,292 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 60 ms
73,472 KB
testcase_23 AC 121 ms
128,076 KB
testcase_24 AC 128 ms
128,192 KB
testcase_25 AC 120 ms
127,884 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 107 ms
127,532 KB
testcase_29 AC 108 ms
127,856 KB
testcase_30 AC 103 ms
127,684 KB
testcase_31 AC 91 ms
118,992 KB
testcase_32 AC 113 ms
128,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
#include <deque>
#include <queue>
#include <array>
#include <set>
#include <map>
#include <cmath>
#include <algorithm>
#include <numeric>
#include <cassert>
#include <utility>
#include <tuple>
#include <functional>
#include <bitset>
#include <cstdint>

using namespace std;
using i64 = int64_t;
using i32 = int32_t;
template<class T, class U> void init_n(vector<T>& v, size_t n, U x) 
{ v = vector<T>(n, x); }
template<class T> void init_n(vector<T>& v, size_t n) { init_n(v, n, T()); }
template<class T> void read_n(vector<T>& v, size_t n, size_t o = 0) 
{ v = vector<T>(n+o); for (size_t i=o; i<n+o; ++i) cin >> v[i]; }
template<class T> void read_n(T a[], size_t n, size_t o = 0)
{ for (size_t i=o; i<n+o; ++i) cin >> a[i]; }
template<class T> T gabs(const T& x) { return max(x, -x); }
#define abs gabs

i64 n, d;
int main() {
  cin >> n >> d;
  i64 m = 2 * n * n + 1;
  vector<i64> a(m), b(m);
  for (i64 x = 1; x <= n; ++x) {
    for (i64 y = 1; y <= n; ++y) {
      a[x * x + y * y]++;
      i64 z = x * x - y * y + d;
      if (0 < z && z <= m) b[z]++;
    }
  }
  i64 ans = 0;
  for (i64 i = 1; i < m; ++i) {
    ans += a[i] * b[i];
  }
  cout << ans << '\n';
  return 0;
}
0