Submission #443255

#TimeUsernameProblemLanguageResultExecution timeMemory
443255LittleCubeCloud Computing (CEOI18_clo)C++14
0 / 100
1 ms204 KiB
//#pragma GCC optimize("O3,unroll-loops")
#include <bits/stdc++.h>
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define F first
#define S second
using namespace std;

struct P
{
    ll c, f, v;
    P(ll c, ll f, ll v) : c(c), f(f), v(v){};
    P() : c(0), f(0), v(0){};
};

//ll M, N, dp[100005][2000], f;
//vector<P> computer, order;

signed main()
{
    ios::sync_with_stdio(0), cin.tie(0);
    ll M, N, dp[100005][2000], f;
    vector<P> computer, order;
}

Compilation message (stderr)

clo.cpp: In function 'int main()':
clo.cpp:23:8: warning: unused variable 'M' [-Wunused-variable]
   23 |     ll M, N, dp[100005][2000], f;
      |        ^
clo.cpp:23:11: warning: unused variable 'N' [-Wunused-variable]
   23 |     ll M, N, dp[100005][2000], f;
      |           ^
clo.cpp:23:14: warning: unused variable 'dp' [-Wunused-variable]
   23 |     ll M, N, dp[100005][2000], f;
      |              ^~
clo.cpp:23:32: warning: unused variable 'f' [-Wunused-variable]
   23 |     ll M, N, dp[100005][2000], f;
      |                                ^
#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...