제출 #140514

#제출 시각아이디문제언어결과실행 시간메모리
140514PedroBigMan말 (IOI15_horses)C++14
0 / 100
35 ms7288 KiB
#include "horses.h"
#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <string>
using namespace std;
typedef int ll;
typedef unsigned long long int ull;
typedef long double ld;
#define REP(i,a,b) for(ll i=a; i<b; i++)
#define pb push_back
#define mp make_pair
#define pl pair<ll,ll>
#define ff first
#define ss second
#define INF ((ll) pow(2,63) -1)
ll insig;
#define In(vecBRO, LENBRO) REP(IBRO,0,LENBRO) {cin>>insig; vecBRO.pb(insig);}
void Out(vector<ll> x) {REP(i,0,x.size()) {cout<<x[i]<<" ";} cout<<endl;}

int init(int N, int X[], int Y[]) 
{
    ll am=Y[0]; ll mx=Y[0];
    REP(i,1,N)
    {
        am/=Y[i-1]; am*=Y[i]; am*=X[i-1];
        mx=max(mx,am);
    }
    return mx;
}

int updateX(int pos, int val)
{	
	return 0;
}

int updateY(int pos, int val) 
{
	return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

horses.cpp: In function 'void Out(std::vector<int>)':
horses.cpp:11:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
 #define REP(i,a,b) for(ll i=a; i<b; i++)
horses.cpp:20:29:
 void Out(vector<ll> x) {REP(i,0,x.size()) {cout<<x[i]<<" ";} cout<<endl;}
                             ~~~~~~~~~~~~
horses.cpp:20:25: note: in expansion of macro 'REP'
 void Out(vector<ll> x) {REP(i,0,x.size()) {cout<<x[i]<<" ";} cout<<endl;}
                         ^~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:33:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateX(int pos, int val)
                 ^~~
horses.cpp:33:26: warning: unused parameter 'val' [-Wunused-parameter]
 int updateX(int pos, int val)
                          ^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:38:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateY(int pos, int val) 
                 ^~~
horses.cpp:38:26: warning: unused parameter 'val' [-Wunused-parameter]
 int updateY(int pos, int val) 
                          ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...