結果

問題 No.781 円周上の格子点の数え上げ
ユーザー MASATO338MASATO338
提出日時 2020-08-15 10:49:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 1,707 ms
コンパイル使用メモリ 166,728 KB
実行使用メモリ 42,584 KB
最終ジャッジ日時 2024-10-10 17:25:31
合計ジャッジ時間 4,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
42,404 KB
testcase_01 AC 93 ms
42,584 KB
testcase_02 AC 101 ms
42,344 KB
testcase_03 AC 95 ms
42,520 KB
testcase_04 AC 97 ms
42,376 KB
testcase_05 AC 96 ms
42,480 KB
testcase_06 AC 93 ms
42,392 KB
testcase_07 AC 94 ms
42,376 KB
testcase_08 AC 101 ms
42,440 KB
testcase_09 AC 102 ms
42,512 KB
testcase_10 AC 106 ms
42,500 KB
testcase_11 AC 111 ms
42,348 KB
testcase_12 AC 119 ms
42,396 KB
testcase_13 AC 133 ms
42,476 KB
testcase_14 AC 117 ms
42,512 KB
testcase_15 AC 119 ms
42,388 KB
testcase_16 AC 120 ms
42,376 KB
testcase_17 AC 122 ms
42,472 KB
testcase_18 AC 105 ms
42,368 KB
testcase_19 AC 104 ms
42,432 KB
testcase_20 AC 104 ms
42,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using ll = long long;
using namespace std;
const int INFint = 1e9+1;
const ll INFll = (ll)1e18+1;
ll MOD=1e9+7;


int cnt[10000001] = {0};
int main(){
  ll x,y;
  cin>>x>>y;
  for(int i(0);i<4000;i++){
    for(int j(0);j<4000;j++){
      ll x = i*i+j*j;
      if(x <= 10000000){
        cnt[x]++;
      }
    }
  }
  int ans(0);
  for(int i(x);i<=y;i++){
    if((int)sqrt(i)*(int)sqrt(i) == i) ans = max(ans,(cnt[i]-1)*4);
    else ans = max(ans,cnt[i]*4);
  }
  cout << ans << endl;
  return 0;
}

0