結果

問題 No.781 円周上の格子点の数え上げ
ユーザー kk
提出日時 2020-07-19 04:16:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 202,352 KB
実行使用メモリ 42,560 KB
最終ジャッジ日時 2024-05-08 23:26:28
合計ジャッジ時間 6,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,388 KB
testcase_01 AC 157 ms
42,460 KB
testcase_02 AC 162 ms
42,512 KB
testcase_03 AC 159 ms
42,416 KB
testcase_04 AC 157 ms
42,496 KB
testcase_05 AC 159 ms
42,500 KB
testcase_06 AC 154 ms
42,508 KB
testcase_07 AC 162 ms
42,440 KB
testcase_08 AC 177 ms
42,496 KB
testcase_09 AC 164 ms
42,472 KB
testcase_10 AC 163 ms
42,548 KB
testcase_11 AC 166 ms
42,408 KB
testcase_12 AC 174 ms
42,444 KB
testcase_13 AC 177 ms
42,560 KB
testcase_14 AC 163 ms
42,440 KB
testcase_15 AC 167 ms
42,488 KB
testcase_16 AC 167 ms
42,396 KB
testcase_17 AC 172 ms
42,412 KB
testcase_18 AC 162 ms
42,452 KB
testcase_19 AC 162 ms
42,488 KB
testcase_20 AC 162 ms
42,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

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

const int MAXN = 1e7;
int f[MAXN+1];

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

  vector<int> sq;
  for (int i = 0; i * i <= MAXN; i++)
    sq.push_back(i * i);

  int n = sq.size();
  REP (i, n) REP (j, n) {
    if (sq[i] + sq[j] <= MAXN)
      f[sq[i] + sq[j]] += 1 << (sq[i] > 0) + (sq[j] > 0);
  }
  int x, y;
  cin >> x >> y;

  int ret = 0;
  for (int i = x; i <= y; i++)
    ret = max(ret, f[i]);

  cout << ret << endl;
  
  return 0;
}
0