제출 #888976

#제출 시각아이디문제언어결과실행 시간메모리
888976aguss철로 (IOI14_rail)C++14
0 / 100
46 ms604 KiB
#include "rail.h" #include <bits/stdc++.h> #define _USE_MATH_DEFINES #define endl "\n" #define sp " " #define f1(i, x) for(auto &i : x) #define f2(i, x) for(ll i = 0; i < x; i++) #define raya() cout << endl << "====================================" << endl using namespace std; typedef long long ll; void findLocation(int N, int first, int location[], int stype[]){ for(int i = 0; i < N; i++){ location[i] = getDistance(first, i); stype[i] = i != 0 ? 2 : 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...