結果

問題 No.781 円周上の格子点の数え上げ
ユーザー kappybarkappybar
提出日時 2020-04-13 14:41:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 1,861 ms
コンパイル使用メモリ 172,072 KB
実行使用メモリ 81,576 KB
最終ジャッジ日時 2024-09-24 23:17:40
合計ジャッジ時間 4,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 300 ms
81,412 KB
testcase_09 AC 292 ms
81,344 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 295 ms
81,576 KB
testcase_13 AC 323 ms
81,384 KB
testcase_14 AC 9 ms
7,680 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 182 ms
49,664 KB
testcase_18 AC 141 ms
49,664 KB
testcase_19 AC 147 ms
51,028 KB
testcase_20 AC 149 ms
51,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using ll =  long long ;
using P = pair<int,int> ;
const ll INF = 1e18;
const int MOD = 1000000007;

int main(){
    int x,y;
    cin >> x >> y;
    vector<int> square;
    vector<ll> cnt(y+1,0);
    for(int i=0;i*i<=y;i++){
        if(i==0) square.push_back(i * i);
        else{
            square.push_back(i * i);
            square.push_back(i * i);
        }
    }

    rep(i,square.size()){
        rep(j,square.size()){
            if(square[i]+square[j] > y) continue;
            cnt[square[i]+square[j]] ++;
        }
    }

    ll ans = 0;
    for(int i=x;i<=y;i++){
        ans = max(ans,cnt[i]);
    }
    cout << ans << endl;
    return 0;
}
0