結果

問題 No.781 円周上の格子点の数え上げ
ユーザー PachicobuePachicobue
提出日時 2019-01-11 21:34:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 690 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 202,028 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-05-07 12:02:01
合計ジャッジ時間 4,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
42,368 KB
testcase_01 AC 76 ms
42,112 KB
testcase_02 AC 82 ms
42,308 KB
testcase_03 AC 77 ms
42,240 KB
testcase_04 AC 74 ms
42,240 KB
testcase_05 AC 76 ms
42,240 KB
testcase_06 AC 76 ms
42,240 KB
testcase_07 AC 78 ms
42,368 KB
testcase_08 WA -
testcase_09 AC 76 ms
42,240 KB
testcase_10 AC 80 ms
42,240 KB
testcase_11 AC 77 ms
42,240 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 72 ms
42,368 KB
testcase_15 AC 80 ms
42,240 KB
testcase_16 AC 75 ms
42,288 KB
testcase_17 AC 85 ms
42,240 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define show(x) std::cerr << #x << " = " << (x) << std::endl
using ll = long long;
using ld = long double;
constexpr ll MOD = 1000000007LL;
template <typename T>
constexpr T INF() { return std::numeric_limits<T>::max() / 16; }
std::mt19937 mt{std::random_device{}()};
int main()
{
    ll X, Y;
    std::cin >> X >> Y;
    std::vector<int> ans(10000001, 0);
    for (int y = -2000; y <= 2000; y++) {
        for (int x = -2000; x <= 2000; x++) {
            if (x * x + y * y <= 10000000) { ans[x * x + y * y]++; }
        }
    }

    int max = 0;
    for (int i = X; i <= Y; i++) { max = std::max(max, ans[i]); }
    std::cout << max << std::endl;
    return 0;
}
0