제출 #139094

#제출 시각아이디문제언어결과실행 시간메모리
139094ibrahim001철로 (IOI14_rail)C++14
8 / 100
82 ms512 KiB
#include "rail.h"
#include <bits/stdc++.h>
#define intt long long
#define pb push_back
#define F first
#define S second
#define endl '\n'
using namespace std;
void findLocation(int N, int first, int location[], int stype[])
{
    for ( int i = 0; i < N; i++ )
    {
        location[i] = getDistance(0,i)+first;
        stype[i]=2;
    }
    stype[0]=1;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...