Submission #1270442

#TimeUsernameProblemLanguageResultExecution timeMemory
1270442algoproclubIzbori (COCI22_izbori)C++20
Compilation error
0 ms0 KiB
// UUID: 584e07bb-91a8-4c1f-8b35-a218c179b60c
#include <bits/stdc++.h>
using namespace std;

#define int long long
const int RT = 450;


int main() {
	int n;
    cin >> n;
    vector<int> v(n+1);
    for (int i = 1; i <= n; i++) {
        cin >> v[i];
    }
    vector<vector<int>> w((n)/RT+3, vector<int>(RT));
    
}

Compilation message (stderr)

cc1plus: error: '::main' must return 'int'