結果

問題 No.781 円周上の格子点の数え上げ
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2019-02-23 19:19:25
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 521 bytes
コンパイル時間 2,870 ms
コンパイル使用メモリ 159,820 KB
実行使用メモリ 42,112 KB
最終ジャッジ日時 2024-05-08 06:11:02
合計ジャッジ時間 5,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 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,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 5 ms
7,936 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
int gcd(int a,int b){return b?gcd(b,a%b):a;}

int f[10000001];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll x,y;
    int s=0;
    cin >> x >> y;
    for(int i=1;i<=sqrt(y);i++) {
        for(int j=0;j<=sqrt(y);j++) {
            f[i*i+j*j]++;
        }
    }
    for(ll i=x;i<=y;i++) {
        if (s<f[i]) {
            s=f[i];
        }
    }
    cout << 4*s <<endl;
    return 0;
}
0