結果

問題 No.781 円周上の格子点の数え上げ
ユーザー kotatsugamekotatsugame
提出日時 2019-01-27 15:33:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 886 ms
コンパイル使用メモリ 67,408 KB
実行使用メモリ 42,624 KB
最終ジャッジ日時 2024-09-24 17:42:27
合計ジャッジ時間 4,993 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
42,496 KB
testcase_01 AC 152 ms
42,368 KB
testcase_02 AC 148 ms
42,496 KB
testcase_03 AC 150 ms
42,368 KB
testcase_04 AC 150 ms
42,368 KB
testcase_05 AC 152 ms
42,496 KB
testcase_06 AC 152 ms
42,368 KB
testcase_07 AC 148 ms
42,368 KB
testcase_08 AC 147 ms
42,496 KB
testcase_09 AC 149 ms
42,368 KB
testcase_10 AC 150 ms
42,496 KB
testcase_11 AC 148 ms
42,496 KB
testcase_12 AC 158 ms
42,368 KB
testcase_13 AC 156 ms
42,368 KB
testcase_14 AC 151 ms
42,368 KB
testcase_15 AC 148 ms
42,496 KB
testcase_16 AC 148 ms
42,496 KB
testcase_17 AC 154 ms
42,624 KB
testcase_18 AC 148 ms
42,496 KB
testcase_19 AC 147 ms
42,496 KB
testcase_20 AC 147 ms
42,496 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int x,y,cnt[10000001];
main()
{
	cin>>x>>y;
	for(int i=0;i*i<=1e7;i++)
	{
		for(int j=0;i*i+j*j<=1e7;j++)cnt[i*i+j*j]+=(i?2:1)*(j?2:1);
	}
	int ans=0;
	for(;x<=y;x++)ans=max(ans,cnt[x]);
	cout<<ans<<endl;
}
0