Submission #737774

#TimeUsernameProblemLanguageResultExecution timeMemory
737774AverageAmogusEnjoyerBank (IZhO14_bank)C++17
0 / 100
1 ms320 KiB
/*
ID: dalpone1
TASK: bank 
LANG: C++
*/
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#include <bits/stdc++.h>
using namespace std;
#define all(x) x.begin(), x.end() 
#define pb push_back
#define ll long long
#define nl '\n'
const int N = 20, M = 20;
int n, m;
int main() {
	// ifstream cin(".in");
	// ofstream cout(".out");
	ios::sync_with_stdio(0);
	cin.tie(0);
	cin >> n >> m;
	bool dp1[1 << n][1000], dp2[1 << n][m];
	cout << "YES";
}

Compilation message (stderr)

bank.cpp: In function 'int main()':
bank.cpp:22:7: warning: unused variable 'dp1' [-Wunused-variable]
   22 |  bool dp1[1 << n][1000], dp2[1 << n][m];
      |       ^~~
bank.cpp:22:26: warning: unused variable 'dp2' [-Wunused-variable]
   22 |  bool dp1[1 << n][1000], dp2[1 << n][m];
      |                          ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...