15462022-11-23 12:35:52zsebiKövek (100 pont)cpp11Hibás válasz 0/1003ms3616 KiB
// kovek.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <queue>

#define ll long long
using namespace std;


ll n, i, a, ossz = 0;
int main()
{
    vector<ll>x(n+1,0);
    cin >> n;
    for (i = 1; i <= n; ++i)
    {
        cin >> a;
        x[i] += x[i - 1] + a;
    }
    a = x[n] / n;
    for (i = 1; i <=n; ++i)
        if (x[i] != a * (i + 1))ossz++;
    cout << ossz;
    return 0;
}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
RészfeladatÖsszpontTesztVerdiktIdőMemória
base0/100
1Hibás válasz0/03ms1684 KiB
2Futási hiba0/02ms2000 KiB
3Hibás válasz0/52ms2048 KiB
4Hibás válasz0/52ms2104 KiB
5Hibás válasz0/52ms2236 KiB
6Hibás válasz0/52ms2476 KiB
7Hibás válasz0/52ms2560 KiB
8Hibás válasz0/52ms2560 KiB
9Hibás válasz0/72ms2556 KiB
10Hibás válasz0/72ms2636 KiB
11Hibás válasz0/82ms2632 KiB
12Hibás válasz0/82ms2756 KiB
13Futási hiba0/82ms2968 KiB
14Futási hiba0/83ms3204 KiB
15Futási hiba0/82ms3428 KiB
16Futási hiba0/82ms3484 KiB
17Futási hiba0/82ms3616 KiB