Submission #607538

# Submission time Handle Problem Language Result Execution time Memory
607538 2022-07-26T19:41:48 Z MohamedAliSaidane Rail (IOI14_rail) C++14
8 / 100
65 ms 468 KB
#include <bits/stdc++.h>
#include "rail.h"
    using namespace std;

    typedef long long ll;

    typedef pair<int,int> pii;
    typedef pair<ll,ll> pll;

    typedef vector<int> vi;
    typedef vector<ll> vll;
    typedef vector<pii> vpi;
    typedef vector<pll> vpl;

    #define pb push_back
    #define popb pop_back
    #define all(x) (x).begin(),(x).end()
    #define ff first
    #define ss second

    void findLocation(int n, int first, int location[], int stype[])
    {
        location[0] = first;
        stype[0] = 1;
        for(int i = 1; i < n; i ++)
        {
            stype[i] = 2;
            location[i] = first + getDistance(0, i) ;
        }
    }
# Verdict Execution time Memory Grader output
1 Correct 0 ms 340 KB Output is correct
2 Correct 1 ms 340 KB Output is correct
3 Correct 0 ms 340 KB Output is correct
4 Correct 1 ms 340 KB Output is correct
5 Correct 1 ms 340 KB Output is correct
6 Correct 0 ms 340 KB Output is correct
7 Correct 1 ms 340 KB Output is correct
8 Correct 1 ms 340 KB Output is correct
9 Correct 0 ms 340 KB Output is correct
10 Correct 1 ms 340 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 65 ms 352 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 65 ms 468 KB Output isn't correct
2 Halted 0 ms 0 KB -