結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 713 ms
81,536 KB
testcase_01 AC 717 ms
81,664 KB
testcase_02 AC 728 ms
81,408 KB
testcase_03 AC 722 ms
81,536 KB
testcase_04 AC 707 ms
81,536 KB
testcase_05 AC 721 ms
81,408 KB
testcase_06 AC 717 ms
81,664 KB
testcase_07 AC 718 ms
81,536 KB
testcase_08 AC 728 ms
81,408 KB
testcase_09 AC 722 ms
81,408 KB
testcase_10 AC 717 ms
81,592 KB
testcase_11 AC 714 ms
81,536 KB
testcase_12 AC 714 ms
81,408 KB
testcase_13 AC 723 ms
81,664 KB
testcase_14 AC 724 ms
81,408 KB
testcase_15 AC 714 ms
81,536 KB
testcase_16 AC 717 ms
81,536 KB
testcase_17 AC 718 ms
81,528 KB
testcase_18 AC 728 ms
81,408 KB
testcase_19 AC 705 ms
81,408 KB
testcase_20 AC 715 ms
81,408 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