답안 #637532

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
637532 2022-09-02T11:44:11 Z stoyan_malinin Long Distance Coach (JOI17_coach) C++14
0 / 100
1 ms 212 KB
#include <iostream>

using namespace std;

const int MAXN = 2e5;
const int64_t inf = 1e18;

struct Passanger
{
    int64_t d, c;

    Passanger(){}
    Passanger(int64_t d, int64_t c) : d(d), c(c) {}
};

int64_t X, n, m, W, T;
int64_t sources[MAXN+5];
Passanger passangers[MAXN+5];

int main()
{
    //ios::sync_with_stdio(false);
    //cin.tie(nullptr);

    cin >> X >> n >> m >> W >> T;
    //for(int i)
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -