結果

問題 No.800 四平方定理
ユーザー 👑 emthrmemthrm
提出日時 2019-03-17 21:25:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,164 ms / 2,000 ms
コード長 1,125 bytes
コンパイル時間 1,119 ms
コンパイル使用メモリ 128,552 KB
実行使用メモリ 21,436 KB
最終ジャッジ日時 2024-07-07 20:17:42
合計ジャッジ時間 17,801 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 16 ms
6,944 KB
testcase_02 AC 12 ms
6,944 KB
testcase_03 AC 13 ms
6,940 KB
testcase_04 AC 12 ms
6,944 KB
testcase_05 AC 13 ms
6,944 KB
testcase_06 AC 19 ms
6,940 KB
testcase_07 AC 14 ms
6,940 KB
testcase_08 AC 9 ms
6,944 KB
testcase_09 AC 17 ms
6,940 KB
testcase_10 AC 548 ms
12,244 KB
testcase_11 AC 578 ms
20,832 KB
testcase_12 AC 605 ms
19,820 KB
testcase_13 AC 500 ms
13,044 KB
testcase_14 AC 535 ms
19,724 KB
testcase_15 AC 618 ms
21,436 KB
testcase_16 AC 555 ms
20,644 KB
testcase_17 AC 544 ms
20,528 KB
testcase_18 AC 666 ms
21,100 KB
testcase_19 AC 658 ms
21,260 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 657 ms
20,672 KB
testcase_23 AC 1,162 ms
21,228 KB
testcase_24 AC 1,056 ms
20,220 KB
testcase_25 AC 1,164 ms
20,080 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1,016 ms
20,768 KB
testcase_29 AC 1,113 ms
19,848 KB
testcase_30 AC 1,027 ms
20,920 KB
testcase_31 AC 944 ms
20,492 KB
testcase_32 AC 1,042 ms
20,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cctype>
#include <chrono>
#define _USE_MATH_DEFINES
#include <cmath>
#include <cstdio>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iostream>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <tuple>
#include <vector>
using namespace std;

#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()

const int INF = 0x3f3f3f3f, MOD = 1000000007;
const long long LINF = 0x3f3f3f3f3f3f3f3fLL;
/*-----------------------------------------*/
int main() {
  cin.tie(0); ios::sync_with_stdio(false);
  // freopen("input.txt", "r", stdin);

  int n, d; cin >> n >> d;
  vector<int> rhs;
  FOR(w, 1, n + 1) FOR(z, 1, n + 1) {
    rhs.emplace_back(d + w * w - z * z);
  }
  sort(ALL(rhs));
  long long ans = 0;
  FOR(x, 1, n + 1) FOR(y, 1, n + 1) {
    int lhs = x * x + y * y;
    ans += upper_bound(ALL(rhs), lhs) - lower_bound(ALL(rhs), lhs);
  }
  cout << ans << '\n';
  return 0;
}
0