제출 #737774

#제출 시각아이디문제언어결과실행 시간메모리
737774AverageAmogusEnjoyer은행 (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"; }

컴파일 시 표준 에러 (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...