Submission #1016812

# Submission time Handle Problem Language Result Execution time Memory
1016812 2024-07-08T12:45:20 Z NValchanov Magic Show (APIO24_show) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include "Alice.h"
 
#define endl '\n'
 
using namespace std;
 
typedef long long ll;
 
vector < pair < int, int > > Alice()
{
	int x = setN(5000);
  	vector < pair < int, int > > edges;
  	for(int i = 1; i < 5000; i++)
    {
		edges.push_back({x % i + 1, i});
    }
  	return edges;
}



    

Compilation message

/usr/bin/ld: /tmp/ccAPgEAh.o: in function `main':
grader_bob.cpp:(.text.startup+0x324): undefined reference to `Bob(std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > >)'
collect2: error: ld returned 1 exit status