結果

問題 No.781 円周上の格子点の数え上げ
ユーザー ldsybldsyb
提出日時 2019-01-11 23:55:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 687 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 167,672 KB
実行使用メモリ 81,700 KB
最終ジャッジ日時 2024-05-08 04:07:11
合計ジャッジ時間 17,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 677 ms
81,636 KB
testcase_01 AC 680 ms
81,672 KB
testcase_02 AC 671 ms
81,560 KB
testcase_03 AC 674 ms
81,576 KB
testcase_04 AC 675 ms
81,596 KB
testcase_05 AC 671 ms
81,552 KB
testcase_06 AC 673 ms
81,544 KB
testcase_07 AC 683 ms
81,612 KB
testcase_08 AC 670 ms
81,504 KB
testcase_09 AC 674 ms
81,700 KB
testcase_10 AC 674 ms
81,476 KB
testcase_11 AC 674 ms
81,552 KB
testcase_12 AC 686 ms
81,588 KB
testcase_13 AC 683 ms
81,636 KB
testcase_14 AC 670 ms
81,576 KB
testcase_15 AC 678 ms
81,536 KB
testcase_16 AC 676 ms
81,452 KB
testcase_17 AC 682 ms
81,544 KB
testcase_18 AC 675 ms
81,564 KB
testcase_19 AC 687 ms
81,684 KB
testcase_20 AC 683 ms
81,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int64_t x, y;
    cin >> x >> y;
    int64_t g[10000001]{};
    for (int64_t i = -10000; i <= 10000; i++) {
        for (int64_t j = -10000; j <= 10000; j++) {
            int64_t d2 = i * i + j * j;
            if (d2 <= 10000000) {
                g[d2]++;
            }
        }
    }
    int64_t ans = -1;
    for (int64_t i = x; i <= y; i++) {
        ans = max(ans, g[i]);
    }
    cout << ans << endl;
    return 0;
}
0