結果

問題 No.800 四平方定理
ユーザー nominomi
提出日時 2019-03-18 05:06:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,295 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 1,463 ms
コンパイル使用メモリ 170,132 KB
実行使用メモリ 34,688 KB
最終ジャッジ日時 2024-07-08 12:39:06
合計ジャッジ時間 18,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,248 KB
testcase_01 AC 16 ms
5,376 KB
testcase_02 AC 12 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 14 ms
5,376 KB
testcase_06 AC 18 ms
5,376 KB
testcase_07 AC 17 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 593 ms
18,944 KB
testcase_11 AC 591 ms
20,736 KB
testcase_12 AC 666 ms
20,736 KB
testcase_13 AC 497 ms
19,712 KB
testcase_14 AC 542 ms
20,992 KB
testcase_15 AC 666 ms
20,736 KB
testcase_16 AC 541 ms
20,992 KB
testcase_17 AC 534 ms
21,120 KB
testcase_18 AC 754 ms
20,992 KB
testcase_19 AC 753 ms
20,992 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 762 ms
20,992 KB
testcase_23 AC 1,293 ms
34,688 KB
testcase_24 AC 1,005 ms
34,688 KB
testcase_25 AC 1,295 ms
34,688 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,004 ms
34,432 KB
testcase_29 AC 1,158 ms
34,688 KB
testcase_30 AC 1,017 ms
34,560 KB
testcase_31 AC 921 ms
32,512 KB
testcase_32 AC 1,208 ms
34,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long

int N, D;
int AB[2222*2222];

signed main() {
  cin >> N >> D;

  int cnt = 0;
  for (int i = 1; i <= N; i++) {
    for (int j = 1; j <= N; j++) {
      AB[cnt] = i*i + j*j;
      cnt++;
    }
  }

  sort(AB, AB+cnt);

  int ans = 0;
  for (int i = 1; i <= N; i++) {
    for (int j = 1; j <= N; j++) {
      int num = i*i - j*j + D;
      int left = lower_bound(AB, AB+cnt, num) - AB;
      int right = upper_bound(AB, AB+cnt, num) - AB;
      ans += right - left;
    }
  }

  cout << ans << endl;

  return 0;
}
0