library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub beet-aizu/library

:heavy_check_mark: tools/avx2.cpp

Verified with

Code

#ifndef call_from_test
#include <bits/stdc++.h>
using namespace std;
#endif
// https://beet-aizu.hatenablog.com/entry/2020/09/04/173522
//BEGIN CUT HERE
#pragma GCC optimize ("O3")
#pragma GCC target ("avx2") // or sse4
#pragma GCC optimize("unroll-loops")
//END CUT HERE
#ifndef call_from_test
signed main(){
  return 0;
}
#endif
#line 1 "tools/avx2.cpp"

#include <bits/stdc++.h>
using namespace std;
#endif
// https://beet-aizu.hatenablog.com/entry/2020/09/04/173522
//BEGIN CUT HERE
#pragma GCC optimize ("O3")
#pragma GCC target ("avx2") // or sse4
#pragma GCC optimize("unroll-loops")
//END CUT HERE
#ifndef call_from_test
signed main(){
  return 0;
}
#endif
Back to top page