結果

問題 No.781 円周上の格子点の数え上げ
ユーザー potoooooooopotoooooooo
提出日時 2019-01-30 00:05:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 1,643 ms
コンパイル使用メモリ 169,680 KB
実行使用メモリ 81,368 KB
最終ジャッジ日時 2024-10-12 01:59:55
合計ジャッジ時間 3,269 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 127 ms
81,336 KB
testcase_09 AC 124 ms
81,368 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 132 ms
81,304 KB
testcase_13 AC 139 ms
81,152 KB
testcase_14 AC 5 ms
7,656 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 76 ms
49,384 KB
testcase_18 AC 71 ms
49,552 KB
testcase_19 AC 72 ms
50,876 KB
testcase_20 AC 70 ms
50,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
    int x, y; cin >> x >> y;
    vector<long long> v(y+1, 0);
    for (int i = 0; i * i <= y; i++) {
        for (int j = 1; j * j <= y; j++) {
            if (i*i+j*j > y) break;
            v[i*i+j*j]++;
        }
    }
    long long ans = 0;
    for (int i = x; i <= y; i++) {
        ans = max(ans, v[i]);
    }
    cout << ans * 4 << endl;
    return 0;
}
0