結果

問題 No.781 円周上の格子点の数え上げ
ユーザー ratetionratetion
提出日時 2019-01-11 21:54:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 1,711 ms
コンパイル使用メモリ 169,628 KB
実行使用メモリ 81,548 KB
最終ジャッジ日時 2024-05-07 13:10:50
合計ジャッジ時間 8,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 272 ms
81,516 KB
testcase_01 AC 266 ms
81,408 KB
testcase_02 AC 273 ms
81,472 KB
testcase_03 AC 272 ms
81,408 KB
testcase_04 AC 274 ms
81,416 KB
testcase_05 AC 266 ms
81,524 KB
testcase_06 AC 274 ms
81,548 KB
testcase_07 AC 272 ms
81,452 KB
testcase_08 AC 276 ms
81,436 KB
testcase_09 AC 270 ms
81,448 KB
testcase_10 AC 275 ms
81,432 KB
testcase_11 AC 270 ms
81,504 KB
testcase_12 AC 272 ms
81,436 KB
testcase_13 AC 282 ms
81,408 KB
testcase_14 AC 285 ms
81,472 KB
testcase_15 AC 264 ms
81,520 KB
testcase_16 AC 278 ms
81,496 KB
testcase_17 AC 275 ms
81,512 KB
testcase_18 AC 269 ms
81,456 KB
testcase_19 AC 270 ms
81,496 KB
testcase_20 AC 273 ms
81,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define endl '\n'
int mod=1e9+7;

signed main(){
  double x,y;
  cin>>x>>y;
  //x=sqrt(x);
  //y=sqrt(y);
  //x=ceil(x);
  //y=ceil(y);
  int maxn=sqrt(1e7);
  vector<int> ans(1e7+1,0);
  for(double i=-1*maxn;i<=maxn;i++){
    for(double j=-1*maxn;j<=maxn;j++){
      double tmp=i*i+j*j;
      if(tmp<=1e7)ans[tmp]++;
    }
  }
  if(x==y){
    cout<<ans[x]<<endl;
    return 0;
  }
  int ansnum=0;
  for(int i=x;i<=y;i++)ansnum=max(ansnum,ans[i]);
  cout<<ansnum<<endl;
}
0