QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#693938#6736. Alice and BobR73757565#AC ✓159ms238064kbC++231.1kb2024-10-31 16:59:242024-10-31 16:59:35

Judging History

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

  • [2024-10-31 16:59:35]
  • 评测
  • 测评结果:AC
  • 用时:159ms
  • 内存:238064kb
  • [2024-10-31 16:59:24]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

typedef pair<int, int> PII;
typedef long long LL;

const int N = 1e7 + 10, mod = 998244353;
int q_pow(int a, int b){
    int res = 1ll % mod;
    while(b){
        if(b & 1)res = res * a % mod;
        a = a * a % mod, b>>= 1;
    }
    return res;
}
LL fac[N];
LL jv[N], inv[N];
void C_init(int n) {
    inv[1] = 1;
    for (int i = 2; i <= n; i++) {
        inv[i] = (mod - mod / i) * inv[mod % i] % mod;
    }
    jv[0] = fac[0] = 1;
    for (int i = 1; i <= n; i++) {
        fac[i] = fac[i - 1] * i % mod;
        jv[i] = jv[i - 1] * inv[i] % mod;
    }
}
LL C(int n, int m) {
    if (n < m || m < 0) return 0;
    return fac[n] * jv[n - m] % mod * jv[m] % mod;
}
LL A(int n,int m){
    return C(n,m)*fac[m]%mod;
}
LL lucas(int n, int m) {
    if (m == 0) return 1;
    return C(n % mod, m % mod) * lucas(n / mod, m / mod) % mod;
}

signed main(){
    LL n;
    cin >> n;
    C_init(n+10);
    LL ans = 0;
    LL x=n-1,y=0;
    while(x>=y){
        ans=(ans+A(x,y)*A(x,x)%mod)%mod;
        x--,y++;
    }
    cout<<ans<<endl;
}

詳細信息

Test #1:

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

input:

1

output:

1

result:

ok 1 number(s): "1"

Test #2:

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

input:

2

output:

1

result:

ok 1 number(s): "1"

Test #3:

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

input:

10

output:

997920

result:

ok 1 number(s): "997920"

Test #4:

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

input:

100

output:

188898954

result:

ok 1 number(s): "188898954"

Test #5:

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

input:

4

output:

10

result:

ok 1 number(s): "10"

Test #6:

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

input:

8

output:

12336

result:

ok 1 number(s): "12336"

Test #7:

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

input:

16

output:

373118483

result:

ok 1 number(s): "373118483"

Test #8:

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

input:

32

output:

314585464

result:

ok 1 number(s): "314585464"

Test #9:

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

input:

64

output:

627827331

result:

ok 1 number(s): "627827331"

Test #10:

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

input:

128

output:

828497685

result:

ok 1 number(s): "828497685"

Test #11:

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

input:

256

output:

65697890

result:

ok 1 number(s): "65697890"

Test #12:

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

input:

512

output:

854187619

result:

ok 1 number(s): "854187619"

Test #13:

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

input:

1024

output:

513823539

result:

ok 1 number(s): "513823539"

Test #14:

score: 0
Accepted
time: 12ms
memory: 40516kb

input:

1361956

output:

617368199

result:

ok 1 number(s): "617368199"

Test #15:

score: 0
Accepted
time: 111ms
memory: 187616kb

input:

7579013

output:

827172636

result:

ok 1 number(s): "827172636"

Test #16:

score: 0
Accepted
time: 111ms
memory: 198408kb

input:

8145517

output:

710624331

result:

ok 1 number(s): "710624331"

Test #17:

score: 0
Accepted
time: 90ms
memory: 155896kb

input:

6140463

output:

707600568

result:

ok 1 number(s): "707600568"

Test #18:

score: 0
Accepted
time: 49ms
memory: 90712kb

input:

3515281

output:

698302413

result:

ok 1 number(s): "698302413"

Test #19:

score: 0
Accepted
time: 103ms
memory: 171928kb

input:

6969586

output:

69470392

result:

ok 1 number(s): "69470392"

Test #20:

score: 0
Accepted
time: 43ms
memory: 76932kb

input:

2888636

output:

433579983

result:

ok 1 number(s): "433579983"

Test #21:

score: 0
Accepted
time: 159ms
memory: 237872kb

input:

9999998

output:

758172780

result:

ok 1 number(s): "758172780"

Test #22:

score: 0
Accepted
time: 143ms
memory: 238064kb

input:

9999999

output:

605195495

result:

ok 1 number(s): "605195495"

Test #23:

score: 0
Accepted
time: 154ms
memory: 237876kb

input:

10000000

output:

866813682

result:

ok 1 number(s): "866813682"