結果

問題 No.781 円周上の格子点の数え上げ
ユーザー xxxasdfghjkxxxasdfghjk
提出日時 2019-02-23 17:48:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 1,288 ms
コンパイル使用メモリ 157,924 KB
実行使用メモリ 42,580 KB
最終ジャッジ日時 2024-11-30 13:34:49
合計ジャッジ時間 3,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
42,460 KB
testcase_01 AC 57 ms
42,540 KB
testcase_02 AC 54 ms
42,404 KB
testcase_03 AC 61 ms
42,460 KB
testcase_04 AC 61 ms
42,580 KB
testcase_05 AC 65 ms
42,380 KB
testcase_06 AC 70 ms
42,396 KB
testcase_07 AC 69 ms
42,496 KB
testcase_08 AC 63 ms
42,368 KB
testcase_09 AC 60 ms
42,496 KB
testcase_10 AC 61 ms
42,368 KB
testcase_11 AC 59 ms
42,496 KB
testcase_12 AC 68 ms
42,368 KB
testcase_13 AC 65 ms
42,404 KB
testcase_14 AC 55 ms
42,396 KB
testcase_15 AC 56 ms
42,344 KB
testcase_16 AC 61 ms
42,484 KB
testcase_17 AC 65 ms
42,368 KB
testcase_18 AC 60 ms
42,388 KB
testcase_19 AC 64 ms
42,544 KB
testcase_20 AC 61 ms
42,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
int mem[10000001];
int main(){
    int x,y,res=0;
    cin >> x >> y;
    for(int i=0;i<10000001;i++)mem[i] = 0;
    for(int i=0;i<4001;i++)for(int j=i+1;j<4001;j++){
        if(i*i+j*j <= 10000001){
            if(i == 0 || j == i)
                mem[i*i+j*j] += 4;
            else
                mem[i*i+j*j] += 8;
            
        }
    }
    for(int i=0;i<4001;i++)if(i*i*2 <= 10000001)mem[i*i*2] += 4;
    for(int i=x;i<=y;i++)res = max(res,mem[i]);
    cout << res << endl;
    return 0;
}
0