Submission #2715204


Source Code Expand

#include <bits/stdc++.h>
#define REP(i,k,n) for(int(i)=(k);(i)<(n);++(i))
using namespace std;
typedef long long ll;

const int MAX_N = 1e5 + 10;
int N;

int cost[MAX_N][MAX_N];

int main()
{
  cin >> N;
  REP(i,0,N) {
    int x,y;
    cin >> x >> y;
    // edge e = {}

  }

  return 0;
}

Submission Info

Submission Time
Task D - Built?
User tdyydt
Language C++14 (GCC 5.4.1)
Score 0
Code Size 312 Byte
Status CE

Compile Error

/tmp/ccnB36t8.o: In function `main':
Main.cpp:(.text.startup+0x2): relocation truncated to fit: R_X86_64_32 against symbol `N' defined in .bss section in /tmp/ccnB36t8.o
Main.cpp:(.text.startup+0x16): relocation truncated to fit: R_X86_64_PC32 against symbol `N' defined in .bss section in /tmp/ccnB36t8.o
Main.cpp:(.text.startup+0x41): relocation truncated to fit: R_X86_64_PC32 against symbol `N' defined in .bss section in /tmp/ccnB36t8.o
/tmp/ccnB36t8.o: In function `_GLOBAL__sub_I_N':
Main.cpp:(.text.startup+0x55): relocation truncated to fit: R_X86_64_32 against `.bss'
Main.cpp:(.text.startup+0x64): relocation truncated to fit: R_X86_64_32 against `.bss'
collect2: error: ld returned 1 exit status