QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#409053 | #6736. Alice and Bob | dremlory# | AC ✓ | 237ms | 237644kb | C++23 | 1.2kb | 2024-05-11 16:44:07 | 2024-05-11 16:44:08 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
//#define int long long
#define endl "\n"
const int N = 1e6, M = 110, mod = 998244353, inf = 2e9;
const long long D = 1e12;
typedef pair<int, int> pt;
typedef long long ll;
struct Comb {
vector<ll> fac, inv, finv;
Comb(int n) {
fac.assign(n + 1, 1ll);
finv = inv = fac;
for (int i = 1; i < n; i++) fac[i] = fac[i - 1] * i % mod;
for (int i = 2; i < n; i++) inv[i] = (mod - mod / i) * inv[mod % i] % mod;
for (int i = 2; i < n; i++) finv[i] = finv[i - 1] * inv[i] % mod;
}
ll A(int a, int b){
if (a < b) return 0;
return fac[a] * finv[a - b] % mod;
}
ll C(int a, int b){
if (a <= 0 || b < 0 || b > a) return 0;
else return fac[a] * finv[a - b] % mod * finv[b] % mod;
}
};
void solve() {
int n;
cin >> n;
Comb comb(n);
ll res = 0;
for(int i = 1; i <= n; i++){
res += comb.A(n - i, i - 1) * comb.fac[n - i];
res %= mod;
}
cout << res << endl;
}
signed main() {
//freopen("title.in", "r", stdin);
//freopen("std.txt", "w", stdout);
ios::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
int t = 1;
//cin >> t;
while (t--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3528kb
input:
1
output:
1
result:
ok 1 number(s): "1"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3496kb
input:
2
output:
1
result:
ok 1 number(s): "1"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3564kb
input:
10
output:
997920
result:
ok 1 number(s): "997920"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
100
output:
188898954
result:
ok 1 number(s): "188898954"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3472kb
input:
4
output:
10
result:
ok 1 number(s): "10"
Test #6:
score: 0
Accepted
time: 0ms
memory: 3748kb
input:
8
output:
12336
result:
ok 1 number(s): "12336"
Test #7:
score: 0
Accepted
time: 1ms
memory: 3492kb
input:
16
output:
373118483
result:
ok 1 number(s): "373118483"
Test #8:
score: 0
Accepted
time: 1ms
memory: 3692kb
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: 3696kb
input:
128
output:
828497685
result:
ok 1 number(s): "828497685"
Test #11:
score: 0
Accepted
time: 0ms
memory: 3520kb
input:
256
output:
65697890
result:
ok 1 number(s): "65697890"
Test #12:
score: 0
Accepted
time: 0ms
memory: 3520kb
input:
512
output:
854187619
result:
ok 1 number(s): "854187619"
Test #13:
score: 0
Accepted
time: 1ms
memory: 3600kb
input:
1024
output:
513823539
result:
ok 1 number(s): "513823539"
Test #14:
score: 0
Accepted
time: 28ms
memory: 34928kb
input:
1361956
output:
617368199
result:
ok 1 number(s): "617368199"
Test #15:
score: 0
Accepted
time: 178ms
memory: 180684kb
input:
7579013
output:
827172636
result:
ok 1 number(s): "827172636"
Test #16:
score: 0
Accepted
time: 172ms
memory: 194096kb
input:
8145517
output:
710624331
result:
ok 1 number(s): "710624331"
Test #17:
score: 0
Accepted
time: 146ms
memory: 147080kb
input:
6140463
output:
707600568
result:
ok 1 number(s): "707600568"
Test #18:
score: 0
Accepted
time: 74ms
memory: 85516kb
input:
3515281
output:
698302413
result:
ok 1 number(s): "698302413"
Test #19:
score: 0
Accepted
time: 150ms
memory: 166492kb
input:
6969586
output:
69470392
result:
ok 1 number(s): "69470392"
Test #20:
score: 0
Accepted
time: 55ms
memory: 70724kb
input:
2888636
output:
433579983
result:
ok 1 number(s): "433579983"
Test #21:
score: 0
Accepted
time: 214ms
memory: 237508kb
input:
9999998
output:
758172780
result:
ok 1 number(s): "758172780"
Test #22:
score: 0
Accepted
time: 237ms
memory: 237500kb
input:
9999999
output:
605195495
result:
ok 1 number(s): "605195495"
Test #23:
score: 0
Accepted
time: 229ms
memory: 237644kb
input:
10000000
output:
866813682
result:
ok 1 number(s): "866813682"