結果

問題 No.781 円周上の格子点の数え上げ
ユーザー coco18000coco18000
提出日時 2019-01-11 22:04:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 1,592 ms
コンパイル使用メモリ 166,168 KB
実行使用メモリ 81,580 KB
最終ジャッジ日時 2024-05-07 13:50:35
合計ジャッジ時間 2,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 104 ms
81,580 KB
testcase_09 AC 100 ms
81,580 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 105 ms
81,508 KB
testcase_13 AC 112 ms
81,536 KB
testcase_14 AC 4 ms
9,740 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 61 ms
49,788 KB
testcase_18 AC 55 ms
49,792 KB
testcase_19 AC 56 ms
51,200 KB
testcase_20 AC 55 ms
51,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long int ll;
typedef pair<ll, ll> pll;

#define FOR(i, n, m) for (ll(i) = (m); (i) < (n); ++(i))
#define REP(i, n) FOR(i, n, 0)
#define OF64 std::setprecision(10)

const ll MOD = 1000000007;
const ll INF = (ll)1e15;

ll S[10000005] = {0};

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

    for (int i = 0; i * i <= Y; ++i)
    {
        for (int j = 1; j * j <= Y; ++j)
        {
            if (i * i + j * j > Y)
                break;
            S[i * i + j * j]++;
        }
    }

    ll max = 0;
    FOR(i, Y + 1, X)
    {
        max = std::max(S[i], max);
    }
    cout << max * 4 << endl;
    return 0;
}
0