結果

問題 No.781 円周上の格子点の数え上げ
ユーザー erbowlerbowl
提出日時 2019-08-18 14:49:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 453 bytes
コンパイル時間 1,645 ms
コンパイル使用メモリ 164,392 KB
実行使用メモリ 42,384 KB
最終ジャッジ日時 2024-04-09 02:15:07
合計ジャッジ時間 5,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,948 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,948 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 7 ms
8,912 KB
testcase_15 AC 3 ms
6,948 KB
testcase_16 AC 2 ms
6,948 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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