cpplib

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

View the Project on GitHub morioprog/cpplib

:heavy_check_mark: template/short.hpp

Verified with

Code

#include <bits/stdc++.h>
using namespace std;
// #include <atcoder/all>
using ll = long long;
#define REP(i, n)    for (ll (i) = 0;   (i) < (n); ++(i))
#define FOR(i, a, b) for (ll (i) = (a); (i) < (b); ++(i))
#line 1 "template/short.hpp"
#include <bits/stdc++.h>
using namespace std;
// #include <atcoder/all>
using ll = long long;
#define REP(i, n)    for (ll (i) = 0;   (i) < (n); ++(i))
#define FOR(i, a, b) for (ll (i) = (a); (i) < (b); ++(i))
Back to top page