結果

問題 No.781 円周上の格子点の数え上げ
ユーザー MineMine
提出日時 2020-09-15 13:58:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 1,711 ms
コンパイル使用メモリ 169,548 KB
実行使用メモリ 42,380 KB
最終ジャッジ日時 2024-06-22 01:42:14
合計ジャッジ時間 3,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
42,244 KB
testcase_01 AC 78 ms
42,280 KB
testcase_02 AC 80 ms
42,380 KB
testcase_03 AC 79 ms
42,344 KB
testcase_04 AC 78 ms
42,288 KB
testcase_05 AC 73 ms
42,256 KB
testcase_06 AC 78 ms
42,244 KB
testcase_07 AC 77 ms
42,248 KB
testcase_08 AC 78 ms
42,264 KB
testcase_09 AC 77 ms
42,260 KB
testcase_10 AC 74 ms
42,360 KB
testcase_11 AC 74 ms
42,340 KB
testcase_12 AC 86 ms
42,252 KB
testcase_13 AC 86 ms
42,324 KB
testcase_14 AC 74 ms
42,352 KB
testcase_15 AC 77 ms
42,216 KB
testcase_16 AC 76 ms
42,244 KB
testcase_17 AC 81 ms
42,280 KB
testcase_18 AC 79 ms
42,360 KB
testcase_19 AC 80 ms
42,328 KB
testcase_20 AC 80 ms
42,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  long x, y;
  cin >> x >> y;

  vector<int> v;
  v.assign(pow(10, 7) + 1, 0);

  for (int a = 0; a < 3164; a++) {
    for (int b = 1; b < 3164; b++) {
      if (a * a + b * b > pow(10, 7)) {
        break;
      }
      v.at(a * a + b * b) += 1;
    }
  }

  int ans = 0;
  for (int i = x; i < y+1; i++){
    ans = max(ans, v.at(i)*4);
  }
  cout << ans << endl;
}
0