結果

問題 No.781 円周上の格子点の数え上げ
ユーザー rlangevinrlangevin
提出日時 2023-01-12 22:42:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,673 ms / 2,000 ms
コード長 1,146 bytes
コンパイル時間 5,430 ms
コンパイル使用メモリ 312,596 KB
実行使用メモリ 88,244 KB
最終ジャッジ日時 2024-06-06 03:59:27
合計ジャッジ時間 8,111 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 661 ms
47,672 KB
testcase_13 AC 1,673 ms
88,244 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 681 ms
52,228 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 7 ms
6,944 KB
testcase_20 AC 7 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using P = pair<int, int>;
using mint = modint998244353;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

int main()
{
    int X, Y;
    cin >> X >> Y;
    int i = 1;
    unordered_map<int, int> mp;
    vector<int> L;
    while (i * i <= Y)
    {
        L.push_back(i * i);
        mp[i * i] += 1;
        i += 1;
    }
    int N = L.size();
    for (int i = 0; i < N; i++)
    {
        for (int j = i; j < N; j++)
        {
            int a = L[i];
            int b = L[j];
            if (a == b)
            {
                if (X <= a + b && a + b <= Y)
                {
                    mp[a + b] += 1;
                }
            }
            else{
                if (X <= a + b && a + b <= Y)
                {
                    mp[a + b] += 2;
                }
            }
        }
    }

    int ans = 0;
    for (P p : mp)
    {
        int k = p.first;
        int v = p.second;
        if (X <= k && k <= Y)
        {
            ans = max(ans, v);
        }
    }
    cout << ans * 4 << endl;
}
0