結果

問題 No.781 円周上の格子点の数え上げ
ユーザー snrnsidysnrnsidy
提出日時 2021-04-13 23:28:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 209,384 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-06-30 02:03:56
合計ジャッジ時間 5,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
81,592 KB
testcase_01 AC 122 ms
81,432 KB
testcase_02 AC 119 ms
81,432 KB
testcase_03 AC 121 ms
81,544 KB
testcase_04 AC 116 ms
81,440 KB
testcase_05 AC 116 ms
81,648 KB
testcase_06 AC 116 ms
81,616 KB
testcase_07 AC 116 ms
81,512 KB
testcase_08 AC 117 ms
81,508 KB
testcase_09 AC 116 ms
81,472 KB
testcase_10 AC 116 ms
81,456 KB
testcase_11 AC 116 ms
81,536 KB
testcase_12 AC 120 ms
81,536 KB
testcase_13 AC 132 ms
81,536 KB
testcase_14 AC 116 ms
81,580 KB
testcase_15 AC 116 ms
81,608 KB
testcase_16 AC 115 ms
81,664 KB
testcase_17 AC 122 ms
81,664 KB
testcase_18 AC 117 ms
81,540 KB
testcase_19 AC 115 ms
81,664 KB
testcase_20 AC 118 ms
81,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include <bits/stdc++.h>
 
using namespace std;

long long int cnt[10000001];

int main(void)
{
	cin.tie(0);
	ios::sync_with_stdio(false);

    long long int X,Y;
    long long int res = 0;

    cin >> X >> Y;

    for(long long int a=0;a<=3162;a++)
    {
        for(long long int b=0;b<=3162;b++)
        {
            long long int R = a*a + b*b;
            if(R <= 10000000)
            {
                long long int val = 1;
                if(a!=0)
                {
                    val*=2;
                }
                if(b!=0)
                {
                    val*=2;
                }
                cnt[R]+=val;
            }
        }
    }

    for(int R=X;R<=Y;R++)
    {
        res = max(res,cnt[R]);
    }

    cout << res << '\n';
    
	return 0;
}
0