結果

問題 No.781 円周上の格子点の数え上げ
ユーザー MisterMister
提出日時 2020-04-18 01:19:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 1,020 ms
コンパイル使用メモリ 77,500 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-10-03 20:10:41
合計ジャッジ時間 7,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
42,112 KB
testcase_01 AC 233 ms
42,240 KB
testcase_02 AC 235 ms
42,112 KB
testcase_03 AC 240 ms
42,360 KB
testcase_04 AC 236 ms
42,304 KB
testcase_05 AC 225 ms
42,240 KB
testcase_06 AC 232 ms
42,308 KB
testcase_07 AC 234 ms
42,240 KB
testcase_08 AC 240 ms
42,240 KB
testcase_09 AC 248 ms
42,112 KB
testcase_10 AC 258 ms
42,240 KB
testcase_11 AC 241 ms
42,108 KB
testcase_12 AC 236 ms
42,240 KB
testcase_13 AC 237 ms
42,240 KB
testcase_14 AC 241 ms
42,240 KB
testcase_15 AC 239 ms
42,236 KB
testcase_16 AC 238 ms
42,112 KB
testcase_17 AC 248 ms
42,240 KB
testcase_18 AC 239 ms
42,240 KB
testcase_19 AC 247 ms
42,368 KB
testcase_20 AC 242 ms
42,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>

constexpr int X = 4000;
constexpr int R = 10000000;

int dist(int x, int y) {
    return x * x + y * y;
}

void solve() {
    std::vector<int> cnt(R + 1, 0);
    for (int x = -X; x <= X; ++x) {
        for (int y = -X; y <= X; ++y) {
            int d = dist(x, y);
            if (d <= R) ++cnt[d];
        }
    }

    int x, y;
    std::cin >> x >> y;
    std::cout << *std::max_element(cnt.begin() + x, cnt.begin() + y + 1)
              << std::endl;
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0