# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
120799 | khulegub | 말 (IOI15_horses) | C++14 | 32 ms | 14072 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "horses.h"
#include<bits/stdc++.h>
#define ll(x) x*2+1
#define rr(x) x*2+2
#define eps 1e-9
using namespace std;
typedef long long i64;
int mod = 1e9 + 7;
// vector<i64> st;
vector<int> arr;
vector<int> x, y;
int mxid;
int n;
int init(int N, int X[], int Y[]){
n = N;
arr.resize(n);
x.resize(n);
y.resize(n);
for(int i = 0; i < n; i++){
x[i] = X[i];
y[i] = Y[i];
}
int urjver = x[0];
// init
int mx = 0;
double rem = (double) y[0];
for(int i = 1; i < n; i++){
if(x[i] * y[i] >= rem){
mx = i;
rem = (double) y[i];
}
rem /= (double) x[i];
}
for(int i = 1; i <= mx; i++){
urjver *= x[i];
}
urjver *= y[mx];
return urjver;
}
int updateX(int pos, int val){
return 0;
}
int updateY(int pos, int val){
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |