結果

問題 No.781 円周上の格子点の数え上げ
ユーザー addeight2addeight2
提出日時 2019-02-08 11:11:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 1,430 ms
コンパイル使用メモリ 157,692 KB
実行使用メモリ 81,596 KB
最終ジャッジ日時 2024-06-27 15:33:21
合計ジャッジ時間 4,549 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 369 ms
81,536 KB
testcase_09 AC 367 ms
81,596 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 372 ms
81,536 KB
testcase_13 AC 376 ms
81,536 KB
testcase_14 AC 7 ms
7,936 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 188 ms
50,048 KB
testcase_18 AC 198 ms
49,792 KB
testcase_19 AC 187 ms
51,404 KB
testcase_20 AC 206 ms
51,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf("%lld %lld",&X,&Y);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long ll;
#define FOR(i,a,b) for(ll i=(a);i<(b);i++)
#define REP(i,a) FOR(i,0,a)
	
using namespace std;
ll X,Y;
const ll MAX_Y=1e7;
ll cnt[MAX_Y+1];
int main(){
	scanf("%lld %lld",&X,&Y);
	ll r=1;
	while(r*r<=Y){
		r++;
	}
	FOR(x,-r+1,r){
		FOR(y,-r+1,r){
			if(x*x+y*y<=Y){
				cnt[x*x+y*y]++;
			}
		}
	}
	ll ans=0;
	FOR(i,X,Y+1){
		ans=max(ans,cnt[i]);
	}
	cout<<ans<<endl;
}
0