結果

問題 No.781 円周上の格子点の数え上げ
ユーザー tonnnura172tonnnura172
提出日時 2020-04-17 17:26:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 1,663 ms
コンパイル使用メモリ 168,044 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-10-03 10:27:43
合計ジャッジ時間 3,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 140 ms
81,280 KB
testcase_09 AC 135 ms
81,408 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 147 ms
81,152 KB
testcase_13 AC 145 ms
81,408 KB
testcase_14 AC 7 ms
7,680 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 84 ms
49,536 KB
testcase_18 AC 77 ms
49,536 KB
testcase_19 AC 81 ms
51,072 KB
testcase_20 AC 81 ms
50,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define _GLIBCXX_DEBUG
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
using namespace std;

int main(){
    int X, Y;
    cin >> X >> Y;

    int upper = sqrt(Y)+1;
    int c;
    vector<int> r(2*Y+1);
    rep(a, upper){
        for (int b=a; b < upper; b++){
            c = a*a+b*b;
            if (a==0 || a==b) {
                r[c] += 4;
            }
            else{
                r[c] += 8;
            }
        }
    }
    int ans = 0;
    for (int x=X;x<Y+1;x++) {
        ans = max(ans, r[x]);
    }
    cout << ans << endl;
}
0