結果

問題 No.781 円周上の格子点の数え上げ
ユーザー QDSNQDSN
提出日時 2019-12-07 15:36:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 1,529 ms
コンパイル使用メモリ 167,188 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-06-07 15:03:27
合計ジャッジ時間 4,910 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
81,280 KB
testcase_01 AC 75 ms
81,280 KB
testcase_02 AC 75 ms
81,280 KB
testcase_03 AC 74 ms
81,280 KB
testcase_04 AC 74 ms
81,280 KB
testcase_05 AC 74 ms
81,348 KB
testcase_06 AC 74 ms
81,336 KB
testcase_07 AC 74 ms
81,336 KB
testcase_08 AC 65 ms
81,280 KB
testcase_09 AC 65 ms
81,312 KB
testcase_10 AC 74 ms
81,280 KB
testcase_11 AC 75 ms
81,280 KB
testcase_12 AC 240 ms
81,400 KB
testcase_13 AC 438 ms
81,280 KB
testcase_14 AC 74 ms
81,280 KB
testcase_15 AC 74 ms
81,280 KB
testcase_16 AC 74 ms
81,408 KB
testcase_17 AC 265 ms
81,280 KB
testcase_18 AC 68 ms
81,280 KB
testcase_19 AC 67 ms
81,280 KB
testcase_20 AC 69 ms
81,280 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