結果

問題 No.781 円周上の格子点の数え上げ
ユーザー m-44m-44
提出日時 2019-09-15 19:36:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 1,372 ms
コンパイル使用メモリ 166,556 KB
実行使用メモリ 42,676 KB
最終ジャッジ日時 2024-07-06 22:48:24
合計ジャッジ時間 2,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 88 ms
42,540 KB
testcase_09 AC 80 ms
42,504 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 80 ms
42,676 KB
testcase_13 AC 85 ms
42,540 KB
testcase_14 AC 4 ms
7,564 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 40 ms
27,000 KB
testcase_18 AC 35 ms
26,860 KB
testcase_19 AC 41 ms
27,640 KB
testcase_20 AC 37 ms
28,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int cnt[(int)1e7+1];
int main() {
  int x, y;
  cin>>x>>y;

  for (int i=0; i<=y; i++) cnt[i] = 0;
  for (int i=0; i<=sqrt(y); i++) {
    for (int j=1; j<=sqrt(y); j++) {
      if (i*i + j*j > y) break;
      ++cnt[i*i + j*j];
    }
  }
  int ans = 0;
  for (int i=x; i<=y; i++) {
    ans = max(cnt[i], ans);
  }
  cout<<4*ans<<endl;
}
0