제출 #96365

#제출 시각아이디문제언어결과실행 시간메모리
96365someone_aa철로 (IOI14_rail)C++17
8 / 100
70 ms540 KiB
#include <bits/stdc++.h> #include "rail.h" #define ll long long #define pb push_back #define mp make_pair using namespace std; void findLocation(int N, int first, int location[], int stype[]) { location[0] = first; stype[0] = 1; for(int i=1;i<N;i++) { int dist = getDistance(0, i); location[i] = first + dist; stype[i] = 2; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...