結果

問題 No.781 円周上の格子点の数え上げ
ユーザー maimai
提出日時 2019-01-11 23:54:52
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 173,888 KB
実行使用メモリ 83,308 KB
最終ジャッジ日時 2024-07-05 13:17:19
合計ジャッジ時間 6,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 144 ms
83,308 KB
testcase_02 AC 143 ms
82,448 KB
testcase_03 WA -
testcase_04 AC 136 ms
82,848 KB
testcase_05 WA -
testcase_06 AC 139 ms
82,752 KB
testcase_07 AC 137 ms
82,696 KB
testcase_08 AC 140 ms
81,924 KB
testcase_09 AC 142 ms
82,952 KB
testcase_10 AC 139 ms
81,408 KB
testcase_11 AC 139 ms
82,860 KB
testcase_12 AC 145 ms
82,496 KB
testcase_13 AC 153 ms
82,904 KB
testcase_14 AC 140 ms
81,660 KB
testcase_15 AC 140 ms
81,760 KB
testcase_16 AC 146 ms
82,208 KB
testcase_17 AC 151 ms
82,368 KB
testcase_18 AC 144 ms
81,624 KB
testcase_19 AC 144 ms
83,232 KB
testcase_20 AC 143 ms
81,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll h;
inline int dt(ll x, ll y){
    int u = x*x+y*y;
    return 10000010 <= u ? 0 : u;
}
ll m[10000010],X,Y;
{
    int X,Y,best=0;
    rd(X,Y);
    REP(i,4000) REP(j,4000) m[dt(i,j)]+=4;
    REP(i,X,Y+1) best=max(best,m[i]);
    wt(best);
}
0