結果

問題 No.800 四平方定理
ユーザー ninoinuininoinui
提出日時 2020-07-18 10:15:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 403 bytes
コンパイル時間 1,848 ms
コンパイル使用メモリ 202,488 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-05-07 23:32:53
合計ジャッジ時間 4,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 17 ms
18,648 KB
testcase_11 AC 16 ms
20,736 KB
testcase_12 AC 16 ms
20,288 KB
testcase_13 AC 15 ms
19,584 KB
testcase_14 AC 15 ms
20,608 KB
testcase_15 AC 18 ms
20,580 KB
testcase_16 AC 19 ms
20,864 KB
testcase_17 AC 15 ms
20,756 KB
testcase_18 AC 17 ms
20,664 KB
testcase_19 AC 19 ms
20,864 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 RE -
testcase_22 AC 21 ms
20,864 KB
testcase_23 AC 35 ms
34,468 KB
testcase_24 AC 35 ms
34,532 KB
testcase_25 AC 36 ms
34,432 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 RE -
testcase_28 AC 37 ms
34,460 KB
testcase_29 AC 35 ms
34,560 KB
testcase_30 AC 35 ms
34,432 KB
testcase_31 AC 29 ms
32,128 KB
testcase_32 AC 33 ms
34,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int N, D;
  cin >> N >> D;
  vector<int> V(N * N * 2 + 1);
  for (int x = 1; x <= N; x++) {
    for (int y = 1; y <= N; y++) V.at(x * x + y * y)++;
  }
  int ans = 0;
  for (int w = 1; w <= N; w++) {
    for (int z = 1; z <= N; z++) {
      int tmp = w * w - z * z + D;
      if (tmp > 0) ans += V.at(tmp);
    }
  }
  cout << ans << "\n";
}
0