Submission #629425

# Submission time Handle Problem Language Result Execution time Memory
629425 2022-08-14T13:33:59 Z Elnady Vudu (COCI15_vudu) C++17
0 / 140
379 ms 65536 KB
#include <vector>
#include <deque>
#include <queue>
#include <array>
#include <set>
#include <string>
#include <iostream>
#include <map>
#include <algorithm>
#include <stack>
#include <iomanip>
#include <numeric>
#include <sstream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <bitset>
#include <climits>
#include <unordered_set>
#include <unordered_map>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>

//using namespace __gnu_pbds;
using namespace std;
#define     endl                '\n'
#define     int                 long long
#define     all(pr1)            pr1.begin(),pr1.end()
#define     alr(pr1)            pr1.rbegin(),pr1.rend()
#define     CEIL(pr1, pr2)      (pr1 + pr2 - 1) / pr2
#define     IOS                 std::ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define		RT(s)				return cout<<s,0
#define		sz(s)				(int)(s.size())

const long long N = 1e5 + 9, M = 3e9 + 9, MOD = 1e9 + 7, OO = 0x3f3f3f3f, MAX = 2147483647, LOO = 0x3f3f3f3f3f3f3f3f;

bool fun(int x, int z)
{
	return (x < 0 || x >= z);
}

int32_t main()
{
	IOS;
	int n, m;
	cin >> n;
	vector<int> a(n), c;
	vector<pair<int, int>> b;
	map<int, int> mp;
	for (int i = 0; i < n; i++)
		cin >> a[i];
	cin >> m;
	for (int i = 0; i < n; i++)
		a[i] -= m;
	for (int i = 1; i < n; i++)
		a[i] += a[i - 1];


	for (int i = 0; i < n; i++)
		mp[a[i]]++;
	/*mp[0] = 4;
	for (auto ch : mp)
		b.push_back({ ch.first, ch.second });*/
	
	cout << 0 << "\n";
	return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 724 KB Output isn't correct
2 Incorrect 2 ms 596 KB Output isn't correct
3 Incorrect 2 ms 596 KB Output isn't correct
4 Runtime error 379 ms 65536 KB Execution killed with signal 9
5 Incorrect 201 ms 38740 KB Output isn't correct
6 Incorrect 349 ms 60640 KB Output isn't correct
7 Incorrect 309 ms 62940 KB Output isn't correct
8 Incorrect 300 ms 54612 KB Output isn't correct
9 Runtime error 296 ms 65536 KB Execution killed with signal 9
10 Incorrect 341 ms 61392 KB Output isn't correct