結果

問題 No.781 円周上の格子点の数え上げ
ユーザー QDSNQDSN
提出日時 2019-12-07 15:36:36
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 167,192 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-12-25 21:00:16
合計ジャッジ時間 6,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
81,408 KB
testcase_01 AC 110 ms
81,280 KB
testcase_02 AC 113 ms
81,408 KB
testcase_03 AC 112 ms
81,408 KB
testcase_04 AC 113 ms
81,280 KB
testcase_05 AC 113 ms
81,408 KB
testcase_06 AC 112 ms
81,280 KB
testcase_07 AC 110 ms
81,408 KB
testcase_08 AC 107 ms
81,280 KB
testcase_09 AC 104 ms
81,408 KB
testcase_10 AC 113 ms
81,408 KB
testcase_11 AC 113 ms
81,280 KB
testcase_12 AC 301 ms
81,280 KB
testcase_13 AC 545 ms
81,408 KB
testcase_14 AC 114 ms
81,280 KB
testcase_15 AC 111 ms
81,280 KB
testcase_16 AC 113 ms
81,280 KB
testcase_17 AC 328 ms
81,280 KB
testcase_18 AC 109 ms
81,280 KB
testcase_19 AC 108 ms
81,280 KB
testcase_20 AC 109 ms
81,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
#define all(x) (x).begin(), (x).end()
#define MOD 1000000007

int main() {
    ll x, y;
    cin >> x >> y;
    vector<ll> mp(10000000 + 1, 0);
    ll ans = 0;
    for(int i = -3163; i <= 3163; i++) {
        for(int j = -3163; j <= 3163; j++) {
            if(x <= i * i + j * j && i * i + j * j <= y) {
                mp[i * i + j * j]++;
                ans = max(ans, mp[i * i + j * j]);
            }
        }
    }
    cout << ans << endl;
}
0