Submission #908131

#TimeUsernameProblemLanguageResultExecution timeMemory
908131allin27xHorses (IOI15_horses)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #define int long long const int mod = 1e9+7; signed init(signed n, int x[], int y[]){ int res = 0; int p = 1; for (int i=0; i<n; i++){ p*=x[i]; res = max(res, y[i]*p); } return res % mod; } signed updateX(signed pos, signed val); signed updateY(signed pos, signed val);

Compilation message (stderr)

horses.cpp: In function 'int init(int, long long int*, long long int*)':
horses.cpp:14:13: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
   14 |  return res % mod;
      |         ~~~~^~~~~
/usr/bin/ld: /tmp/ccRDYh4p.o: in function `main':
grader.c:(.text.startup+0xaa): undefined reference to `init(int, int*, int*)'
/usr/bin/ld: grader.c:(.text.startup+0x113): undefined reference to `updateX(int, int)'
/usr/bin/ld: grader.c:(.text.startup+0x16d): undefined reference to `updateY(int, int)'
collect2: error: ld returned 1 exit status