QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#771012#9553. The HermitMine_King#WA 76ms21744kbC++141.3kb2024-11-22 08:27:222024-11-22 08:27:22

Judging History

你现在查看的是最新测评结果

  • [2024-11-22 08:27:22]
  • 评测
  • 测评结果:WA
  • 用时:76ms
  • 内存:21744kb
  • [2024-11-22 08:27:22]
  • 提交

answer

// 長い夜の終わりを信じながら
// Think twice, code once.
#include <vector>
#include <cstdio>
#include <string>
#include <cstring>
#include <iostream>
#include <algorithm>
#define eputchar(c) putc(c, stderr)
#define eprintf(...) fprintf(stderr, __VA_ARGS__)
#define eputs(str) fputs(str, stderr), putc('\n', stderr)
using namespace std;

const int mod = 998244353;

int m, n, fac[100005], inv[100005], dp[100005][17];
vector<int> d[100005];

int C(int n, int m) {return n < m ? 0 : (long long)fac[n] * inv[m] % mod * inv[n - m] % mod;}

int main() {
	scanf("%d%d", &m, &n);
	fac[0] = fac[1] = 1;
	inv[0] = inv[1] = 1;
	for (int i = 2; i <= m; i++) {
		fac[i] = (long long)fac[i - 1] * i % mod;
		inv[i] = (long long)(mod - mod / i) * inv[mod % i] % mod;
	}
	for (int i = 2; i <= m; i++) inv[i] = (long long)inv[i - 1] * inv[i] % mod;
	int ans = (long long)C(m, n) * n % mod;
	for (int i = 1; i <= m; i++) {
		for (int j = i + i; j <= m; j += i) d[j].push_back(i);
		dp[i][1] = 1;
		for (int j = 2; j < 17; j++)
			for (int k : d[i]) dp[i][j] = (dp[i][j] + dp[k][j - 1]) % mod;
		for (int j = 1; j < 17; j++)
			if (j <= n)
				ans = (ans - (long long)dp[i][j] * C(m / i - 1, n - j) % mod + mod) % mod;
	}
	printf("%d\n", ans);
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 8100kb

input:

4 3

output:

7

result:

ok 1 number(s): "7"

Test #2:

score: 0
Accepted
time: 2ms
memory: 9424kb

input:

11 4

output:

1187

result:

ok 1 number(s): "1187"

Test #3:

score: 0
Accepted
time: 76ms
memory: 21596kb

input:

100000 99999

output:

17356471

result:

ok 1 number(s): "17356471"

Test #4:

score: 0
Accepted
time: 7ms
memory: 10024kb

input:

11451 1919

output:

845616153

result:

ok 1 number(s): "845616153"

Test #5:

score: 0
Accepted
time: 76ms
memory: 21744kb

input:

99998 12345

output:

936396560

result:

ok 1 number(s): "936396560"

Test #6:

score: 0
Accepted
time: 72ms
memory: 21564kb

input:

100000 1

output:

0

result:

ok 1 number(s): "0"

Test #7:

score: 0
Accepted
time: 73ms
memory: 21700kb

input:

100000 15

output:

190067060

result:

ok 1 number(s): "190067060"

Test #8:

score: 0
Accepted
time: 0ms
memory: 9448kb

input:

10 3

output:

299

result:

ok 1 number(s): "299"

Test #9:

score: 0
Accepted
time: 1ms
memory: 6720kb

input:

10 4

output:

743

result:

ok 1 number(s): "743"

Test #10:

score: 0
Accepted
time: 1ms
memory: 7864kb

input:

10 5

output:

1129

result:

ok 1 number(s): "1129"

Test #11:

score: 0
Accepted
time: 1ms
memory: 6532kb

input:

15 6

output:

28006

result:

ok 1 number(s): "28006"

Test #12:

score: 0
Accepted
time: 2ms
memory: 9116kb

input:

15 7

output:

42035

result:

ok 1 number(s): "42035"

Test #13:

score: 0
Accepted
time: 1ms
memory: 7908kb

input:

123 45

output:

214851327

result:

ok 1 number(s): "214851327"

Test #14:

score: 0
Accepted
time: 2ms
memory: 9616kb

input:

998 244

output:

964050559

result:

ok 1 number(s): "964050559"

Test #15:

score: 0
Accepted
time: 0ms
memory: 9152kb

input:

1919 810

output:

379720338

result:

ok 1 number(s): "379720338"

Test #16:

score: 0
Accepted
time: 2ms
memory: 9132kb

input:

1048 576

output:

216543264

result:

ok 1 number(s): "216543264"

Test #17:

score: 0
Accepted
time: 0ms
memory: 9052kb

input:

999 777

output:

635548531

result:

ok 1 number(s): "635548531"

Test #18:

score: 0
Accepted
time: 71ms
memory: 21744kb

input:

99999 77777

output:

448144614

result:

ok 1 number(s): "448144614"

Test #19:

score: 0
Accepted
time: 23ms
memory: 11436kb

input:

34527 6545

output:

748108997

result:

ok 1 number(s): "748108997"

Test #20:

score: 0
Accepted
time: 7ms
memory: 8800kb

input:

12345 12

output:

777496209

result:

ok 1 number(s): "777496209"

Test #21:

score: 0
Accepted
time: 0ms
memory: 7536kb

input:

1 1

output:

0

result:

ok 1 number(s): "0"

Test #22:

score: 0
Accepted
time: 61ms
memory: 21680kb

input:

100000 10101

output:

855985819

result:

ok 1 number(s): "855985819"

Test #23:

score: 0
Accepted
time: 68ms
memory: 21736kb

input:

100000 91919

output:

92446940

result:

ok 1 number(s): "92446940"

Test #24:

score: 0
Accepted
time: 71ms
memory: 21684kb

input:

100000 77979

output:

106899398

result:

ok 1 number(s): "106899398"

Test #25:

score: 0
Accepted
time: 7ms
memory: 9856kb

input:

10000 11

output:

326411649

result:

ok 1 number(s): "326411649"

Test #26:

score: 0
Accepted
time: 72ms
memory: 21700kb

input:

100000 2

output:

15322970

result:

ok 1 number(s): "15322970"

Test #27:

score: 0
Accepted
time: 74ms
memory: 21680kb

input:

100000 3

output:

93355797

result:

ok 1 number(s): "93355797"

Test #28:

score: 0
Accepted
time: 72ms
memory: 21612kb

input:

100000 99998

output:

331850772

result:

ok 1 number(s): "331850772"

Test #29:

score: 0
Accepted
time: 51ms
memory: 21676kb

input:

100000 99996

output:

885066226

result:

ok 1 number(s): "885066226"

Test #30:

score: 0
Accepted
time: 5ms
memory: 10332kb

input:

13115 2964

output:

0

result:

ok 1 number(s): "0"

Test #31:

score: -100
Wrong Answer
time: 74ms
memory: 21620kb

input:

100000 17

output:

425792994

result:

wrong answer 1st numbers differ - expected: '425792977', found: '425792994'