제출 #249650

#제출 시각아이디문제언어결과실행 시간메모리
249650dvdg6566Holding (COCI20_holding)C++14
0 / 110
130 ms262148 KiB
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int,int> pi;
typedef vector<pi> vpi;
typedef long double ld;
#define pb emplace_back
#define mp make_pair
#define lb lower_bound
#define ub upper_bound
#define ALL(x) x.begin(), x.end() 
#define SZ(x) (ll)x.size()
#define f first
#define s second
const ll MAXN=100;
const ll MAXK=16000000;
const ll INF = 1e9;
const ll MOD = 1e9+7;

int dp[MAXN][MAXN][10100];

int main(){
	memset(dp,-1,sizeof(dp));
	cout<<1;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...