結果

問題 No.781 円周上の格子点の数え上げ
ユーザー leaf_1415leaf_1415
提出日時 2019-01-11 21:41:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 687 ms
コンパイル使用メモリ 61,804 KB
実行使用メモリ 81,680 KB
最終ジャッジ日時 2024-05-07 12:23:09
合計ジャッジ時間 5,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
81,464 KB
testcase_01 AC 198 ms
81,672 KB
testcase_02 AC 204 ms
81,480 KB
testcase_03 AC 202 ms
81,504 KB
testcase_04 AC 206 ms
81,640 KB
testcase_05 AC 204 ms
81,668 KB
testcase_06 AC 198 ms
81,484 KB
testcase_07 AC 198 ms
81,404 KB
testcase_08 AC 199 ms
81,580 KB
testcase_09 AC 206 ms
81,680 KB
testcase_10 AC 202 ms
81,472 KB
testcase_11 AC 200 ms
81,536 KB
testcase_12 AC 210 ms
81,664 KB
testcase_13 AC 222 ms
81,640 KB
testcase_14 AC 203 ms
81,580 KB
testcase_15 AC 209 ms
81,596 KB
testcase_16 AC 200 ms
81,520 KB
testcase_17 AC 211 ms
81,504 KB
testcase_18 AC 208 ms
81,668 KB
testcase_19 AC 206 ms
81,588 KB
testcase_20 AC 205 ms
81,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#define llint long long

using namespace std;

llint x, y;
vector<llint> vec;

llint cnt[10000005];

int main(void)
{
	cin >> x >> y;
	
	for(int i = 0; i*i <= 10000000; i++) vec.push_back(i*i);
	
	llint N = 3500;
	for(int i = -N; i <= N; i++){
		for(int j = -N; j <= N; j++){
			if(i*i+j*j < 10000005) cnt[i*i+j*j]++;
		}
	}
	
	llint ans = 0;
	for(int i = x; i <= y; i++) ans = max(ans, cnt[i]);
	cout << ans << endl;
	
	return 0;
}
0