CompProgLibrary

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

View the Project on GitHub RTnF/CompProgLibrary

:heavy_check_mark: 共通ヘッダー
(cpp/template/small_template.hpp)

一括インクルード、 std:: の省略

#include <bits/stdc++.h>
using namespace std;

型の略記

using ll = int64_t;
using ull = uint64_t;
using ld = long double;

long long ではなく、 long として扱われる。

定数

constexpr ll INF = 4e+18;
constexpr ld EPS = 1e-12L;
constexpr ld PI = 3.14159265358979323846L;

INF + INF がオーバーフローしないように

Required by

Verified with

Code

#pragma once
#include <bits/stdc++.h>
using namespace std;
using ll = int64_t;
using ull = uint64_t;
using ld = long double;
constexpr ll INF = 4e+18;
constexpr ld EPS = 1e-12L;
constexpr ld PI = 3.14159265358979323846L;
#line 2 "cpp/template/small_template.hpp"
#include <bits/stdc++.h>
using namespace std;
using ll = int64_t;
using ull = uint64_t;
using ld = long double;
constexpr ll INF = 4e+18;
constexpr ld EPS = 1e-12L;
constexpr ld PI = 3.14159265358979323846L;
Back to top page