제출 #1135449

#제출 시각아이디문제언어결과실행 시간메모리
1135449irmuun철로 (IOI14_rail)C++20
8 / 100
31 ms580 KiB
#include<bits/stdc++.h> #include "rail.h" using namespace std; #define ll long long #define pb push_back #define ff first #define ss second #define all(s) s.begin(),s.end() #define rall(s) s.rbegin(),s.rend() void findLocation(int N, int first, int location[], int stype[]){ location[0]=first; stype[0]=1; for(int j=1;j<N;j++){ int x=getDistance(0,j); location[j]=first+x; stype[j]=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...