結果

問題 No.781 円周上の格子点の数え上げ
ユーザー chocoruskchocorusk
提出日時 2019-01-11 21:29:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 93,864 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-05-07 11:13:42
合計ジャッジ時間 8,624 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
42,496 KB
testcase_01 AC 311 ms
42,368 KB
testcase_02 AC 312 ms
42,496 KB
testcase_03 AC 321 ms
42,368 KB
testcase_04 AC 317 ms
42,368 KB
testcase_05 AC 319 ms
42,368 KB
testcase_06 AC 326 ms
42,496 KB
testcase_07 AC 322 ms
42,496 KB
testcase_08 AC 324 ms
42,368 KB
testcase_09 AC 334 ms
42,496 KB
testcase_10 AC 321 ms
42,368 KB
testcase_11 AC 327 ms
42,368 KB
testcase_12 AC 326 ms
42,368 KB
testcase_13 AC 332 ms
42,368 KB
testcase_14 AC 325 ms
42,368 KB
testcase_15 AC 325 ms
42,368 KB
testcase_16 AC 320 ms
42,496 KB
testcase_17 AC 335 ms
42,368 KB
testcase_18 AC 319 ms
42,368 KB
testcase_19 AC 319 ms
42,368 KB
testcase_20 AC 316 ms
42,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
	int ct[10000001]={};
	for(int i=-4000; i<=4000; i++){
		for(int j=-4000; j<=4000; j++){
			if(i*i+j*j<=10000000){
				ct[i*i+j*j]++;
			}
		}
	}
	int x, y; cin>>x>>y;
	int ans=ct[x];
	for(int i=x+1; i<=y; i++){
		ans=max(ans, ct[i]);
	}
	cout<<ans<<endl;
	return 0;
}
0