結果

問題 No.800 四平方定理
ユーザー kk
提出日時 2020-09-05 01:31:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,227 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 1,913 ms
コンパイル使用メモリ 205,552 KB
実行使用メモリ 43,488 KB
最終ジャッジ日時 2024-05-05 04:02:05
合計ジャッジ時間 18,921 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
5,248 KB
testcase_01 AC 17 ms
5,376 KB
testcase_02 AC 12 ms
5,376 KB
testcase_03 AC 12 ms
5,376 KB
testcase_04 AC 11 ms
5,376 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 19 ms
5,376 KB
testcase_07 AC 13 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 551 ms
23,136 KB
testcase_11 AC 616 ms
36,320 KB
testcase_12 AC 634 ms
36,192 KB
testcase_13 AC 510 ms
23,524 KB
testcase_14 AC 564 ms
36,320 KB
testcase_15 AC 627 ms
36,448 KB
testcase_16 AC 562 ms
36,576 KB
testcase_17 AC 569 ms
36,572 KB
testcase_18 AC 699 ms
36,448 KB
testcase_19 AC 700 ms
36,572 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 700 ms
36,448 KB
testcase_23 AC 1,218 ms
43,364 KB
testcase_24 AC 1,055 ms
43,360 KB
testcase_25 AC 1,227 ms
43,228 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,046 ms
43,228 KB
testcase_29 AC 1,151 ms
43,232 KB
testcase_30 AC 1,055 ms
43,228 KB
testcase_31 AC 962 ms
42,336 KB
testcase_32 AC 1,072 ms
43,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

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

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n, d;
  cin >> n >> d;
  vector<int> p, q;

  for (int x = 1; x <= n; x++) {
    for (int y = 1; y <= n; y++) {
      p.push_back(x*x + y*y);
    }
  }

  for (int z = 1; z <= n; z++) {
    for (int w = 1; w <= n; w++) {
      q.push_back(z*z - w*w);
    }
  }

  sort(q.begin(), q.end());

  long long ret = 0;
  for (int x: p) {
    int target = d - x;
    ret += upper_bound(q.begin(), q.end(), target)
      - lower_bound(q.begin(), q.end(), target);
  }
  cout << ret << endl;

  return 0;
}
0