結果
| 問題 |
No.781 円周上の格子点の数え上げ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-08-21 18:18:21 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 329 ms / 2,000 ms |
| コード長 | 364 bytes |
| コンパイル時間 | 1,844 ms |
| コンパイル使用メモリ | 192,424 KB |
| 最終ジャッジ日時 | 2025-01-07 14:34:50 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
int a,b;cin>>a>>b;
int cnt[b+1]{};
for (int i=-4000;i<=4000;i++)
for (int j=-4000;j<=4000;j++)
if (i*i+j*j<=b)
cnt[i*i+j*j]++;
int ans=0;
for (int i=a;i<=b;i++)
ans=max(ans,cnt[i]);
cout<<ans<<endl;
return 0;
}