結果

問題 No.781 円周上の格子点の数え上げ
ユーザー maimai
提出日時 2019-01-12 00:04:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 2,570 ms
コンパイル使用メモリ 210,280 KB
実行使用メモリ 81,624 KB
最終ジャッジ日時 2024-12-14 04:45:56
合計ジャッジ時間 6,613 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 139 ms
81,452 KB
testcase_02 AC 143 ms
81,600 KB
testcase_03 WA -
testcase_04 AC 137 ms
81,564 KB
testcase_05 WA -
testcase_06 AC 144 ms
81,624 KB
testcase_07 AC 138 ms
81,592 KB
testcase_08 AC 141 ms
81,624 KB
testcase_09 AC 138 ms
81,584 KB
testcase_10 AC 144 ms
81,408 KB
testcase_11 AC 137 ms
81,440 KB
testcase_12 AC 149 ms
81,432 KB
testcase_13 AC 151 ms
81,620 KB
testcase_14 AC 140 ms
81,564 KB
testcase_15 AC 145 ms
81,416 KB
testcase_16 AC 141 ms
81,576 KB
testcase_17 AC 143 ms
81,504 KB
testcase_18 AC 142 ms
81,476 KB
testcase_19 AC 137 ms
81,548 KB
testcase_20 AC 143 ms
81,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O3")
#include "bits/stdc++.h"

using namespace std;
using ll = long long int;

const ll h = 10000000;
ll m[h+10];

int main(){
    int a, b; cin >> a >> b;
    
    for (ll x = 0; x<=4000; ++x) for (ll y = 0; y<=4000; ++y) if (x*x+y*y <= h) m[x*x+y*y]+=4;
    ll best = 0;
    for (int c = a; c<=b; ++c) best = max(best, m[c]);
    
    cout << best << endl;
    return 0;
}
0