QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#747131 | #9619. 乘积,欧拉函数,求和 | guodong# | WA | 566ms | 4916kb | C++17 | 2.6kb | 2024-11-14 16:25:26 | 2024-11-14 16:25:27 |
Judging History
answer
#include <bits/stdc++.h>
#define int long long
using namespace std;
const int allState = 1 << 16;
const int Mod = 998244353;
#define For(i,a,b) for(int i = a; i <= b; ++i)
int Pow(int b,int p = Mod - 2){
int ans = 1;
while(p){
if(p & 1)
ans = ans * b % Mod;
b = b * b % Mod;
p >>= 1;
}
return ans;
}
const int N = 3020;
int F[allState][2];
bool vis[N];
int cnt,Prime[N],Minn[N];
void pre(){
for(int i = 2; i < N; ++i){
if(!vis[i]){
Prime[++cnt] = i;
Minn[i] = i;
}
for(int j = 1; j <= cnt && Prime[j] * i < N; ++j){
vis[i * Prime[j]] = 1;
Minn[i * Prime[j]] = Prime[j];
if(i % Prime[j] == 0)
break;
}
}
}
int State[N],ansc[18];
signed main()
{
#ifdef NICEGUODONG
freopen("data.in","r",stdin);
#endif
ios::sync_with_stdio(false);
pre();
int n;
cin >> n;
// const int prime = {2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53
// 16 primes <= sqrt(3000)
vector<pair<int,int>> number;
for(int i = 1; i <= 16; ++i)
ansc[i] = (1 - Pow(Prime[i]) + Mod);
For(i,1,n){
int x;
cin >> x;
int tmp = x;
State[tmp] = 0;
for(int i = 1; i <= 16; ++i){
if(x % Prime[i] == 0){
State[tmp] |= 1 << (i - 1);
}
while(x % Prime[i] == 0)
x /= Prime[i];
}
number.emplace_back(make_pair(x,tmp));
}
sort(number.begin(),number.end());
int cur = 1;
F[0][0] = 1;
For(i,0,n - 1){
if(number[i].first != cur){
For(s,0,allState - 1){
F[s][0] = (F[s][0] + F[s][1]) % Mod;
F[s][1] = 0;
}
}
int invcur = 0;
if(number[i].first == 1)
invcur = 1;
else
invcur = (1 - Pow(number[i].first) + Mod);
int news = State[number[i].second];
for(int s = allState - 1; s >= 0; --s){
F[s | news][1] = (F[s | news][1] + F[s][1] * number[i].second % Mod + F[s][0] * number[i].second % Mod * invcur % Mod)%Mod;
}
}
For(s,0,allState - 1){
F[s][0] = (F[s][0] + F[s][1]) % Mod;
F[s][1] = 0;
}
int ans = 0;
For(s,0,allState - 1){
int c = 1;
for(int i = 0; i < 16; ++i){
if((1 << i) & s){
c *= ansc[i + 1];
c %= Mod;
}
}
ans += F[s][0] * c % Mod;
ans %= Mod;
}
cout << ans << '\n';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 6ms
memory: 4680kb
input:
5 1 6 8 6 2
output:
892
result:
ok single line: '892'
Test #2:
score: 0
Accepted
time: 6ms
memory: 4916kb
input:
5 3 8 3 7 8
output:
3157
result:
ok single line: '3157'
Test #3:
score: 0
Accepted
time: 564ms
memory: 4728kb
input:
2000 79 1 1 1 1 1 1 2803 1 1 1 1 1 1 1609 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2137 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 613 1 499 1 211 1 2927 1 1 1327 1 1 1123 1 907 1 2543 1 1 1 311 2683 1 1 1 1 2963 1 1 1 641 761 1 1 1 1 1 1 1 1 1 1 1 1489 2857 1 1 1 1 1 1 1 1 1 1 1 1 1 967 1 821 1 1 1 1 2143 1861...
output:
50965652
result:
ok single line: '50965652'
Test #4:
score: 0
Accepted
time: 566ms
memory: 4760kb
input:
2000 1 1 1 1 1 1 1 1 353 1 1 1 557 1 1 1 1 1 1 1 1 1 1 1 1423 1 1 1327 1 1 1 907 1 1 1 1 1 2971 1 1 1 2531 1 1 1 1 1 1 1 1 1 2099 1 1 1 1 1 1 1 1 1 1 1 1 1 1 199 2999 1 727 1 1 1 1 1 1 1 71 1 1 1 1 1 1 2503 1 176 1 1 1 1 1 1 1361 1013 1 1 1 1 1 1 1 2699 1 1 1 1 1 1 1 1 1 2897 1 1 1 1 1637 1 1 1367 1...
output:
420709530
result:
ok single line: '420709530'
Test #5:
score: 0
Accepted
time: 13ms
memory: 4684kb
input:
30 37 14 35 33 38 42 46 3 26 7 16 1 35 38 48 3 43 49 18 3 29 1 43 43 20 6 39 20 14 38
output:
262613273
result:
ok single line: '262613273'
Test #6:
score: 0
Accepted
time: 13ms
memory: 4676kb
input:
30 39 31 49 2 4 28 30 12 13 34 7 28 17 37 38 18 41 33 29 36 18 7 3 14 30 42 35 14 18 35
output:
234142118
result:
ok single line: '234142118'
Test #7:
score: -100
Wrong Answer
time: 62ms
memory: 4624kb
input:
200 53 37 234 248 66 30 64 181 38 130 250 27 199 226 43 185 207 241 38 296 68 18 145 20 64 127 57 30 168 267 221 116 115 192 17 26 5 63 3 127 52 48 229 58 69 111 20 244 234 35 48 217 179 189 89 60 285 106 43 104 36 28 62 281 104 38 281 264 140 275 105 20 203 271 222 262 123 10 82 263 118 254 229 222...
output:
119629509
result:
wrong answer 1st lines differ - expected: '617035263', found: '119629509'