結果

問題 No.1383 Numbers of Product
ユーザー ygussanyygussany
提出日時 2021-02-07 21:36:00
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 1,169 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 30,720 KB
実行使用メモリ 57,472 KB
最終ジャッジ日時 2024-07-04 14:56:48
合計ジャッジ時間 16,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
9,600 KB
testcase_01 AC 14 ms
9,728 KB
testcase_02 AC 18 ms
9,600 KB
testcase_03 AC 14 ms
9,728 KB
testcase_04 AC 14 ms
9,600 KB
testcase_05 AC 14 ms
9,728 KB
testcase_06 AC 14 ms
9,600 KB
testcase_07 AC 369 ms
47,872 KB
testcase_08 AC 354 ms
47,872 KB
testcase_09 AC 416 ms
51,328 KB
testcase_10 AC 540 ms
57,216 KB
testcase_11 AC 519 ms
56,832 KB
testcase_12 AC 544 ms
56,960 KB
testcase_13 AC 521 ms
56,064 KB
testcase_14 AC 442 ms
52,480 KB
testcase_15 AC 351 ms
48,896 KB
testcase_16 AC 504 ms
56,960 KB
testcase_17 AC 13 ms
9,728 KB
testcase_18 AC 12 ms
9,600 KB
testcase_19 AC 14 ms
9,728 KB
testcase_20 WA -
testcase_21 AC 14 ms
9,728 KB
testcase_22 WA -
testcase_23 AC 13 ms
9,600 KB
testcase_24 WA -
testcase_25 AC 13 ms
9,600 KB
testcase_26 WA -
testcase_27 AC 104 ms
33,152 KB
testcase_28 AC 113 ms
33,280 KB
testcase_29 AC 436 ms
51,840 KB
testcase_30 AC 539 ms
57,344 KB
testcase_31 AC 111 ms
33,024 KB
testcase_32 AC 166 ms
38,144 KB
testcase_33 AC 100 ms
33,152 KB
testcase_34 AC 97 ms
33,152 KB
testcase_35 AC 502 ms
55,168 KB
testcase_36 AC 468 ms
54,272 KB
testcase_37 AC 546 ms
57,472 KB
testcase_38 AC 563 ms
57,344 KB
testcase_39 AC 515 ms
57,472 KB
testcase_40 AC 553 ms
57,472 KB
testcase_41 AC 561 ms
57,344 KB
testcase_42 AC 557 ms
57,472 KB
testcase_43 AC 559 ms
57,472 KB
testcase_44 AC 555 ms
57,344 KB
testcase_45 AC 555 ms
57,344 KB
testcase_46 AC 14 ms
9,472 KB
testcase_47 AC 530 ms
56,704 KB
testcase_48 AC 530 ms
57,088 KB
testcase_49 AC 552 ms
57,344 KB
testcase_50 AC 542 ms
57,344 KB
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

#define HASH 1000003

typedef struct List {
	struct List *next;
	int num;
	long long v;
} list;

int main()
{
	long long N, K, M;
	scanf("%lld %lld %lld", &N, &K, &M);
	
	int h, i, n = 0, count = 0, ans = 0;
	long long A, B, tmp, l, r, m;
	list *hash[HASH] = {}, d[20000000], *p;
	for (A = 1; A <= 1000000; A++) {
		for (B = 1, tmp = A; A + B * K <= N / tmp; B++) {
			tmp *= A + B * K;
			h = tmp % HASH;
			for (p = hash[h]; p != NULL; p = p->next) if (p->v == tmp) break;
			if (p != NULL) p->num++;
			else {
				d[n].v = tmp;
				d[n].num = 1;
				
				l = 1000001;
				r = 1000000000;
				while (l < r) {
					m = (l + r) / 2;
					if (m * (m + K) < tmp) l = m + 1;
					else r = m;
				}
				if (l * (l + K) == tmp) {
					d[n].num++;
					count++;
				}
				
				d[n].next = hash[h];
				hash[h] = &(d[n++]);
			}
		}
	}
	for (i = 0; i < n; i++) if (d[i].num == M) ans++;
	if (M >= 2) {
		printf("%d\n", ans);
		fflush(stdout);
		return 0;
	}
	
	l = 1000000;
	r = 1000000000;
	while (l < r) {
		m = (l + r + 1) / 2;
		if (m * (m + K) <= N) l = m;
		else r = m - 1;
	}
	printf("%d\n", ans - count + l - 1000000);
	fflush(stdout);
	return 0;
}
0