제출 #446529

#제출 시각아이디문제언어결과실행 시간메모리
446529mansur밀림 점프 (APIO21_jumps)C++17
4 / 100
1049 ms2624 KiB

#include<bits/stdc++.h>
using namespace std;

#define all(a) a.begin(),a.end()
#define ll long long
#define pb push_back
#define nl '\n'
#define popb pop_back()
#define sz size()
#define ld long double
#define ull unsigned long long
#define F first
#define S second
#define fix fixed<<setprecision
#define pii pair<int,int>
#define E exit (0)

const int N=2e5,mod=1e9+7;

int n, h[N + 1];

void init(int nn, vector<int> a) {
	n = nn;
	for (int i = 0; i < n; i++) h[i] = a[i];
			
}

int minimum_jumps(int a, int b, int c, int d) {
	return c - b;	
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...