結果

問題 No.781 円周上の格子点の数え上げ
ユーザー bal4ubal4u
提出日時 2019-05-06 06:17:43
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 30,336 KB
実行使用メモリ 40,924 KB
最終ジャッジ日時 2024-06-26 21:57:59
合計ジャッジ時間 12,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
40,816 KB
testcase_01 AC 523 ms
40,912 KB
testcase_02 AC 520 ms
40,924 KB
testcase_03 AC 511 ms
40,860 KB
testcase_04 AC 520 ms
40,888 KB
testcase_05 AC 528 ms
40,748 KB
testcase_06 AC 537 ms
40,844 KB
testcase_07 AC 509 ms
40,892 KB
testcase_08 AC 520 ms
40,916 KB
testcase_09 AC 486 ms
40,852 KB
testcase_10 AC 497 ms
40,872 KB
testcase_11 AC 499 ms
40,868 KB
testcase_12 AC 498 ms
40,920 KB
testcase_13 AC 499 ms
40,844 KB
testcase_14 AC 476 ms
40,816 KB
testcase_15 AC 496 ms
40,860 KB
testcase_16 AC 489 ms
40,820 KB
testcase_17 AC 499 ms
40,900 KB
testcase_18 AC 491 ms
40,856 KB
testcase_19 AC 506 ms
40,904 KB
testcase_20 AC 512 ms
40,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// yukicoder: No.781 円周上の格子点の数え上げ
// 2019.5.6 bal4u

#include <stdio.h>

#define MAX  10000000
#define MAX2 5000000
int a[MAX+5];
int d[4] = {0,1,0,-1};

void precalc() {  // 約数の処理
	int i, j, k;
	
	a[1] = 1;
	for (i = 2; i <= MAX; i++) {
		a[i] = 1 + d[i & 3];	// 約数1とi
	}
	for (i = 2; i <= MAX2; i++) {
		k = d[i & 3];
		if (k == 0) continue;
		for (j = i<<1; j <= MAX; j += i) a[j] += k;
	}
}

int main()
{
	int X, Y, max;

	precalc();
	scanf("%d%d", &X, &Y);
	max = 0; while (X <= Y) {
		if (a[X] > max) max = a[X];
		X++;
	}
	printf("%d\n", max << 2);
	return 0;
}
0