結果

問題 No.781 円周上の格子点の数え上げ
ユーザー erbowlerbowl
提出日時 2019-08-18 15:07:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 569 bytes
コンパイル時間 1,706 ms
コンパイル使用メモリ 168,572 KB
実行使用メモリ 132,240 KB
最終ジャッジ日時 2024-10-01 14:06:47
合計ジャッジ時間 6,380 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
132,224 KB
testcase_01 AC 62 ms
132,148 KB
testcase_02 AC 31 ms
132,224 KB
testcase_03 AC 32 ms
131,928 KB
testcase_04 AC 31 ms
132,096 KB
testcase_05 AC 33 ms
132,120 KB
testcase_06 AC 32 ms
131,932 KB
testcase_07 AC 33 ms
132,064 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 32 ms
132,100 KB
testcase_11 AC 32 ms
132,240 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 35 ms
132,088 KB
testcase_15 AC 33 ms
132,196 KB
testcase_16 AC 32 ms
132,064 KB
testcase_17 AC 132 ms
132,152 KB
testcase_18 AC 87 ms
132,120 KB
testcase_19 AC 79 ms
132,180 KB
testcase_20 AC 82 ms
132,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
#include <bits/stdc++.h>
using namespace std;
int main() {
    ll x,y;
    std::cin >> x>>y;

    // unordered_map<ll,ll> cou;
    vector<ll> cou(16500000,0);
    
    ll sq = (int)sqrt(y);

    for (ll i = 1; i <= sq; i++) {
        for (ll j = 0; j <= sq; j++) {
            cou[i*i+j*j]++;
            // 1+1;
        }
        // std::cout << i << std::endl;
    }
    ll result = -1;
    for (ll i = x; i <= y; i++) {
        // std::cout << i << std::endl;
        result = max(result,cou[i]);
    }
    std::cout << result*4 << std::endl;
}
0