You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <cstdio>
|
|
int c[100000];
|
|
bool iscap[100000];
|
|
int n, k, sum;
|
|
long long ans;
|
|
int main()
|
|
{
|
|
scanf("%d%d", &n, &k);
|
|
for (int i = 0; i < n; i++)
|
|
scanf("%d", c + i), sum += c[i];
|
|
return 0;
|
|
} |