結果

問題 No.781 円周上の格子点の数え上げ
ユーザー ngtkanangtkana
提出日時 2020-03-14 13:00:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 203,820 KB
実行使用メモリ 42,352 KB
最終ジャッジ日時 2024-11-23 18:43:00
合計ジャッジ時間 3,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 71 ms
42,200 KB
testcase_09 AC 71 ms
42,224 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 79 ms
42,352 KB
testcase_13 AC 92 ms
42,344 KB
testcase_14 AC 4 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 47 ms
26,204 KB
testcase_18 AC 38 ms
26,204 KB
testcase_19 AC 40 ms
26,952 KB
testcase_20 AC 39 ms
26,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define endl enjoy_codeforces
using lint=long long;
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    lint X,Y;std::cin>>X>>Y;
    std::vector<int>a(Y+1);
    for(lint i=0;i*i<=Y;i++){
        for(lint j=0;i*i+j*j<=Y;j++){
            a.at(i*i+j*j)+=4;
        }
    }
    for(lint i=1;i*i<=Y;i++)a.at(i*i)-=4;
    std::cout<<*std::max_element(a.begin()+X,a.begin()+Y+1)<<'\n';
}
0