結果

問題 No.781 円周上の格子点の数え上げ
ユーザー leaf_1415leaf_1415
提出日時 2019-01-11 21:40:53
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 61,196 KB
実行使用メモリ 14,088 KB
最終ジャッジ日時 2024-05-07 12:21:17
合計ジャッジ時間 2,845 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
11,532 KB
testcase_01 AC 70 ms
11,404 KB
testcase_02 AC 73 ms
12,812 KB
testcase_03 AC 70 ms
11,920 KB
testcase_04 AC 70 ms
11,788 KB
testcase_05 AC 71 ms
12,304 KB
testcase_06 AC 75 ms
12,296 KB
testcase_07 AC 70 ms
12,300 KB
testcase_08 WA -
testcase_09 AC 70 ms
12,940 KB
testcase_10 AC 70 ms
12,296 KB
testcase_11 AC 70 ms
11,276 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 72 ms
11,656 KB
testcase_15 AC 72 ms
13,196 KB
testcase_16 AC 67 ms
11,276 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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 < 1000005) 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