結果

問題 No.800 四平方定理
ユーザー 0w10w1
提出日時 2020-11-16 16:10:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 693 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 207,356 KB
実行使用メモリ 50,732 KB
最終ジャッジ日時 2024-07-23 01:33:40
合計ジャッジ時間 8,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
34,864 KB
testcase_01 AC 21 ms
34,844 KB
testcase_02 AC 20 ms
34,840 KB
testcase_03 AC 19 ms
34,804 KB
testcase_04 AC 19 ms
34,816 KB
testcase_05 AC 19 ms
34,836 KB
testcase_06 AC 21 ms
34,940 KB
testcase_07 AC 20 ms
34,864 KB
testcase_08 AC 21 ms
34,816 KB
testcase_09 AC 21 ms
34,864 KB
testcase_10 AC 157 ms
42,288 KB
testcase_11 AC 180 ms
43,440 KB
testcase_12 AC 179 ms
44,780 KB
testcase_13 AC 164 ms
42,652 KB
testcase_14 AC 178 ms
43,880 KB
testcase_15 AC 175 ms
43,472 KB
testcase_16 AC 177 ms
44,436 KB
testcase_17 AC 179 ms
44,332 KB
testcase_18 AC 179 ms
45,140 KB
testcase_19 AC 178 ms
43,584 KB
testcase_20 AC 16 ms
34,448 KB
testcase_21 AC 16 ms
34,532 KB
testcase_22 AC 185 ms
43,764 KB
testcase_23 AC 319 ms
50,200 KB
testcase_24 AC 311 ms
50,204 KB
testcase_25 AC 309 ms
50,068 KB
testcase_26 AC 16 ms
34,296 KB
testcase_27 AC 16 ms
34,464 KB
testcase_28 AC 305 ms
49,964 KB
testcase_29 AC 309 ms
50,732 KB
testcase_30 AC 309 ms
50,236 KB
testcase_31 AC 282 ms
49,340 KB
testcase_32 AC 309 ms
50,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  ios::sync_with_stdio(false);

  int N, D; { cin >> N >> D; }

  vector<int> s; {
    for (int x = 1; x <= N; ++x) {
      for (int y = 1; y <= N; ++y) {
        s.push_back(x * x + y * y);
      }
    }
    sort(s.begin(), s.end());
  }

  vector<int> pc(2000 * 2000 * 2 + 1); {
    for (int v : s) pc[v] += 1;
    for (int i = 1; i < pc.size(); ++i) pc[i] += pc[i - 1];
  }

  int64_t res = 0; {
    for (int w = 1; w <= N; ++w) {
      for (int z = 1; z <= N; ++z) {
        int t = w * w - z * z + D;
        if (t <= 0 || pc.size() <= t) continue;
        res += pc[t] - pc[t - 1];
      }
    }
  }

  cout << res << endl;
}

0