結果

問題 No.781 円周上の格子点の数え上げ
ユーザー rickythetarickytheta
提出日時 2019-01-11 22:18:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 1,155 ms
コンパイル使用メモリ 158,016 KB
実行使用メモリ 52,644 KB
最終ジャッジ日時 2024-05-07 14:53:33
合計ジャッジ時間 4,483 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
52,608 KB
testcase_01 AC 117 ms
52,480 KB
testcase_02 AC 120 ms
52,644 KB
testcase_03 AC 124 ms
52,480 KB
testcase_04 AC 127 ms
52,480 KB
testcase_05 AC 117 ms
52,412 KB
testcase_06 AC 122 ms
52,508 KB
testcase_07 AC 118 ms
52,592 KB
testcase_08 AC 119 ms
52,600 KB
testcase_09 AC 117 ms
52,480 KB
testcase_10 AC 116 ms
52,480 KB
testcase_11 AC 126 ms
52,480 KB
testcase_12 AC 121 ms
52,608 KB
testcase_13 AC 126 ms
52,608 KB
testcase_14 AC 116 ms
52,468 KB
testcase_15 AC 117 ms
52,608 KB
testcase_16 AC 120 ms
52,608 KB
testcase_17 AC 127 ms
52,608 KB
testcase_18 AC 123 ms
52,608 KB
testcase_19 AC 122 ms
52,608 KB
testcase_20 AC 122 ms
52,444 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |     scanf("%d%d",&lw,&hg);
      |     ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

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

int lw, hg;
int cnt[12525252];

int main(){
    scanf("%d%d",&lw,&hg);
    int ans = -1;
    for(int x=0;x<=4000;x++)for(int y=1;y<=4000;y++){
        int v = x*x + y*y;
        if(v<12525252)cnt[v]++;
    }
    for(int r=lw;r<=hg;r++){
        ans = max(ans, cnt[r]);
    }
    printf("%d\n",ans*4);
    return 0;
}
0