結果

問題 No.781 円周上の格子点の数え上げ
ユーザー finefine
提出日時 2019-01-11 21:49:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 1,737 ms
コンパイル使用メモリ 166,576 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-05-07 12:51:22
合計ジャッジ時間 4,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
81,536 KB
testcase_01 AC 125 ms
81,536 KB
testcase_02 AC 122 ms
81,536 KB
testcase_03 AC 123 ms
81,536 KB
testcase_04 AC 124 ms
81,536 KB
testcase_05 AC 124 ms
81,536 KB
testcase_06 AC 129 ms
81,536 KB
testcase_07 AC 148 ms
81,536 KB
testcase_08 AC 142 ms
81,664 KB
testcase_09 AC 124 ms
81,536 KB
testcase_10 AC 126 ms
81,536 KB
testcase_11 AC 132 ms
81,536 KB
testcase_12 AC 142 ms
81,664 KB
testcase_13 AC 136 ms
81,536 KB
testcase_14 AC 129 ms
81,536 KB
testcase_15 AC 127 ms
81,536 KB
testcase_16 AC 123 ms
81,536 KB
testcase_17 AC 131 ms
81,664 KB
testcase_18 AC 123 ms
81,536 KB
testcase_19 AC 125 ms
81,536 KB
testcase_20 AC 126 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

const int MAXV = 10000000;
ll cnt[MAXV + 1];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    for (int i = 0; i * i <= MAXV; i++) {
        for (int j = 0; j <= i; j++) {
            int sum = i * i + j * j;
            if (sum > MAXV) break;
            int add = (1 + (i != 0)) * (1 + (j != 0));
            if (i != j) add *= 2;
            cnt[sum] += add;
        }
    }

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