QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#674666 | #6736. Alice and Bob | wysun | TL | 976ms | 62200kb | C++14 | 800b | 2024-10-25 17:09:32 | 2024-10-25 17:09:32 |
Judging History
answer
#include <iostream>
#include<vector>
using namespace std;
using i64 = long long;
const int P = 998244353;
int power(int a, int b)
{
int res = 1;
while(b)
{
if(b & 1) res = (i64)res * a % P;
a = (i64)a * a % P;
b >>= 1;
}
return res;
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
vector<int> fac(n + 1), invfac(n + 1);
fac[0] = 1,invfac[0] = 1;
for (int i = 1; i <= n; i++)
{
fac[i] = 1ll * fac[i - 1] * i % P;
invfac[i] = 1ll * invfac[i-1] * power(i,P-2) % P;
}
int ans = 0;
for (int i = 1; n - i >= i - 1; i++)
ans = (ans + 1LL * fac[n - i] * invfac[n - i - (i - 1)] % P * fac[n - i]) % P;
cout << ans << endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3612kb
input:
1
output:
1
result:
ok 1 number(s): "1"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3476kb
input:
2
output:
1
result:
ok 1 number(s): "1"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3584kb
input:
10
output:
997920
result:
ok 1 number(s): "997920"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3528kb
input:
100
output:
188898954
result:
ok 1 number(s): "188898954"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3568kb
input:
4
output:
10
result:
ok 1 number(s): "10"
Test #6:
score: 0
Accepted
time: 0ms
memory: 3480kb
input:
8
output:
12336
result:
ok 1 number(s): "12336"
Test #7:
score: 0
Accepted
time: 0ms
memory: 3588kb
input:
16
output:
373118483
result:
ok 1 number(s): "373118483"
Test #8:
score: 0
Accepted
time: 0ms
memory: 3528kb
input:
32
output:
314585464
result:
ok 1 number(s): "314585464"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3748kb
input:
64
output:
627827331
result:
ok 1 number(s): "627827331"
Test #10:
score: 0
Accepted
time: 0ms
memory: 3776kb
input:
128
output:
828497685
result:
ok 1 number(s): "828497685"
Test #11:
score: 0
Accepted
time: 0ms
memory: 3808kb
input:
256
output:
65697890
result:
ok 1 number(s): "65697890"
Test #12:
score: 0
Accepted
time: 0ms
memory: 3808kb
input:
512
output:
854187619
result:
ok 1 number(s): "854187619"
Test #13:
score: 0
Accepted
time: 1ms
memory: 3620kb
input:
1024
output:
513823539
result:
ok 1 number(s): "513823539"
Test #14:
score: 0
Accepted
time: 174ms
memory: 13644kb
input:
1361956
output:
617368199
result:
ok 1 number(s): "617368199"
Test #15:
score: 0
Accepted
time: 976ms
memory: 62200kb
input:
7579013
output:
827172636
result:
ok 1 number(s): "827172636"
Test #16:
score: -100
Time Limit Exceeded
input:
8145517
output:
710624331