제출 #1207212

#제출 시각아이디문제언어결과실행 시간메모리
1207212porquenomedejainiciarsesion철로 (IOI14_rail)C++20
0 / 100
32 ms580 KiB
#include <bits/stdc++.h>
#include "rail.h"
using namespace std;
void findLocation(int n, int first, int location[], int stype[]){
    location[0]=first;
    for(int i=1;i<n;i++){
        int a=getDistance(0,i);
        location[i]=first+a;
        stype[i]=2;
    }
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…