結果

問題 No.781 円周上の格子点の数え上げ
ユーザー どららどらら
提出日時 2019-01-11 22:18:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 1,394 ms
コンパイル使用メモリ 169,104 KB
実行使用メモリ 42,624 KB
最終ジャッジ日時 2024-05-07 14:51:26
合計ジャッジ時間 5,505 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
42,624 KB
testcase_01 AC 148 ms
42,624 KB
testcase_02 AC 148 ms
42,624 KB
testcase_03 AC 147 ms
42,624 KB
testcase_04 AC 155 ms
42,624 KB
testcase_05 AC 160 ms
42,624 KB
testcase_06 AC 159 ms
42,496 KB
testcase_07 AC 148 ms
42,624 KB
testcase_08 AC 147 ms
42,624 KB
testcase_09 AC 148 ms
42,624 KB
testcase_10 AC 156 ms
42,496 KB
testcase_11 AC 156 ms
42,624 KB
testcase_12 AC 164 ms
42,624 KB
testcase_13 AC 155 ms
42,624 KB
testcase_14 AC 149 ms
42,624 KB
testcase_15 AC 150 ms
42,624 KB
testcase_16 AC 147 ms
42,624 KB
testcase_17 AC 153 ms
42,624 KB
testcase_18 AC 150 ms
42,496 KB
testcase_19 AC 153 ms
42,624 KB
testcase_20 AC 159 ms
42,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

static const int MAXN = 10000005;
int cnt[MAXN];

int main(){
  int X, Y;
  cin >> X >> Y;

  vector<ll> v;
  ll p = 0;
  while(p*p < MAXN){
    v.push_back(p*p);
    p++;
  }

  rep(i,v.size()){
    rep(j,v.size()){
      int val = v[i] + v[j];
      if(val < MAXN){
        if(v[i] == 0 || v[j] == 0) cnt[val] += 2;
        else cnt[val] += 4;
      }
    }
  }
  
  int ret = 0;
  REP(i,X,Y+1){
    ret = max(ret, cnt[i]);
  }

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