int-alias (整数型のエイリアス)
(Util/int-alias.hpp)
- View this file on GitHub
- Last update: 2020-09-26 18:37:05+09:00
- Include:
#include "Util/int-alias.hpp"
Required by
Verified with
test/AOJ/DPL_5_A.test.cpp
test/AOJ/GRL_1_A-Single-Source-Shortest-Path.test.cpp
test/AOJ/NTL_1_B-Power.test.cpp
test/AOJ/NTL_1_E-Extended-Euclid-Algorithm.test.cpp
test/yosupo/static-range-sum.test.cpp
Code
#pragma once
#include <cstdint>
/**
* @brief int-alias (整数型のエイリアス)
*/
using i64 = int64_t;
using u64 = uint64_t;
#line 2 "Util/int-alias.hpp"
#include <cstdint>
/**
* @brief int-alias (整数型のエイリアス)
*/
using i64 = int64_t;
using u64 = uint64_t;