mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 03:58:47 +00:00
A - Windblume Ode
https://codeforces.com/contest/1586/submission/132232729
This commit is contained in:
parent
4cb3188f14
commit
76190d6d7a
53
CodeForces/1586/A/A.cpp
Normal file
53
CodeForces/1586/A/A.cpp
Normal file
@ -0,0 +1,53 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int t, n, a[105], sum, p1, p2;
|
||||
bool is_prime[20005];
|
||||
|
||||
void Eratosthenes(int n) {
|
||||
for (int i = 0; i <= n; i++) is_prime[i] = true;
|
||||
is_prime[0] = is_prime[1] = false;
|
||||
for (int i = 2; i <= n; i++) {
|
||||
if (is_prime[i]) {
|
||||
if (i * i <= n) {
|
||||
for (int j = i * i; j <= n; j += i) {
|
||||
is_prime[j] = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
cin >> t;
|
||||
Eratosthenes(20000);
|
||||
while (t--) {
|
||||
sum = 0;
|
||||
p1 = p2 = -1;
|
||||
cin >> n;
|
||||
for (int i = 1; i <= n; i++) {
|
||||
cin >> a[i];
|
||||
if (a[i] == 1) p1 = i;
|
||||
if (a[i] % 2) p2 = i;
|
||||
sum += a[i];
|
||||
}
|
||||
cout << n - is_prime[sum] << endl;
|
||||
if (!is_prime[sum]) {
|
||||
for (int i = 1; i <= n; i++) {
|
||||
cout << i << ' ';
|
||||
}
|
||||
} else if (p1 != -1) {
|
||||
for (int i = 1; i <= n; i++) {
|
||||
if (i != p1) cout << i << ' ';
|
||||
}
|
||||
} else {
|
||||
for (int i = 1; i <= n; i++) {
|
||||
if (i != p2) cout << i << ' ';
|
||||
}
|
||||
}
|
||||
cout << endl;
|
||||
}
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user