結果

問題 No.800 四平方定理
ユーザー PocalaPocala
提出日時 2019-03-17 22:34:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 757 bytes
コンパイル時間 1,490 ms
コンパイル使用メモリ 173,712 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-07-08 00:41:22
合計ジャッジ時間 13,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,812 KB
testcase_01 AC 13 ms
5,376 KB
testcase_02 AC 9 ms
5,376 KB
testcase_03 AC 9 ms
5,376 KB
testcase_04 AC 10 ms
5,376 KB
testcase_05 AC 11 ms
5,376 KB
testcase_06 AC 14 ms
5,376 KB
testcase_07 AC 17 ms
6,016 KB
testcase_08 AC 19 ms
6,528 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 1,066 ms
45,824 KB
testcase_11 AC 1,047 ms
44,800 KB
testcase_12 AC 1,212 ms
50,688 KB
testcase_13 AC 767 ms
36,096 KB
testcase_14 AC 848 ms
38,272 KB
testcase_15 AC 1,172 ms
50,560 KB
testcase_16 AC 852 ms
38,784 KB
testcase_17 AC 852 ms
38,912 KB
testcase_18 AC 1,458 ms
59,648 KB
testcase_19 AC 1,476 ms
59,392 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1,545 ms
59,520 KB
testcase_23 TLE -
testcase_24 AC 1,839 ms
65,408 KB
testcase_25 TLE -
testcase_26 AC 2 ms
6,948 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1,847 ms
65,280 KB
testcase_29 TLE -
testcase_30 AC 1,928 ms
65,152 KB
testcase_31 AC 1,716 ms
60,928 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long int ll;
ll MOD = 1000000007;
ll INFL = 1ll << 60;
ll INF = 1 << 30;

#define CONTAINS(v, x) (v.find(x) != v.end())

// ===============================================================================

int main() {
  ll n, d;
  cin >> n >> d;
  map<ll, int> right;  //(w+z)(w-z)+D
  for (int w = 1; w <= n; w++) {
    for (int z = 1; z <= n; z++) {
      int r = w * w - z * z + d;
      right[r]++;
      if (r <= 0) break;
    }
  }

  ll ans = 0;

  // x^2+y^2
  for (int x = 1; x <= n; x++) {
    for (int y = x; y <= n; y++) {
      ll l = x * x + y * y;
      if (CONTAINS(right, l)) {
        ans += right.find(l)->second * ((x == y) ? 1 : 2);
      }
    }
  }
  cout << ans << endl;
}
0