結果

問題 No.781 円周上の格子点の数え上げ
ユーザー cotton_fn_cotton_fn_
提出日時 2020-02-10 02:41:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 812 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 112,140 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-10-01 06:10:41
合計ジャッジ時間 3,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
81,280 KB
testcase_01 AC 54 ms
81,280 KB
testcase_02 AC 52 ms
81,280 KB
testcase_03 AC 54 ms
81,280 KB
testcase_04 AC 53 ms
81,280 KB
testcase_05 AC 52 ms
81,280 KB
testcase_06 AC 54 ms
81,280 KB
testcase_07 AC 52 ms
81,280 KB
testcase_08 AC 156 ms
81,280 KB
testcase_09 AC 159 ms
81,408 KB
testcase_10 AC 52 ms
81,408 KB
testcase_11 AC 54 ms
81,280 KB
testcase_12 AC 170 ms
81,408 KB
testcase_13 AC 170 ms
81,408 KB
testcase_14 AC 55 ms
81,280 KB
testcase_15 AC 53 ms
81,280 KB
testcase_16 AC 52 ms
81,280 KB
testcase_17 AC 153 ms
81,280 KB
testcase_18 AC 111 ms
81,280 KB
testcase_19 AC 115 ms
81,408 KB
testcase_20 AC 111 ms
81,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
#include <deque>
#include <queue>
#include <array>
#include <set>
#include <map>
#include <cmath>
#include <complex>
#include <algorithm>
#include <numeric>
#include <utility>
#include <tuple>
#include <bitset>
#include <cstdint>
#include <cassert>
#include <random>
#include <iterator>

using namespace std;
using i64 = int64_t;
using i32 = int32_t;

int main() {
    i64 x, y;
    cin >> x >> y;
    vector<i64> mp(1e7 + 1);
    for (i64 i = 0; i * i <= max(x, y); ++i) {
        for (i64 j = 1; i * i + j * j <= max(x, y); ++j) {
            mp[i * i + j * j]++;
        }
    }
    i64 ans = 0;
    for (int i = x; i <= y; ++i) {
        if (x <= i && i <= y) ans = max(ans, mp[i]);
    }
    cout << 4 * ans << endl;
    return 0;
}
0