제출 #116944

#제출 시각아이디문제언어결과실행 시간메모리
116944someone_aa말 (IOI15_horses)C++17
17 / 100
24 ms8184 KiB
#include "horses.h"
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
#define mp make_pair
using namespace std;

int init(int N, int X[], int Y[]) {
    ll x = 1LL;
    ll result = 0LL;

    for(int i=0;i<N;i++) {
        x *= 1LL * X[i];
        result = max(result, Y[i]*x);
    }
    return result;
}

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

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

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

horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:16:12: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
     return result;
            ^~~~~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:19:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateX(int pos, int val) {
                 ^~~
horses.cpp:19:26: warning: unused parameter 'val' [-Wunused-parameter]
 int updateX(int pos, int val) {
                          ^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:23:17: warning: unused parameter 'pos' [-Wunused-parameter]
 int updateY(int pos, int val) {
                 ^~~
horses.cpp:23: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...