Skip to content

paveg/programming_contest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coding Challenge

This is my coding challenge records.

Contest

Launguage

Mainly I'm using C++.

I use "Ruby" and "Go", "JavaScript" at my job.

Note

A place to post what I thought or thought about doing a Coding Challenge.

Author

Description

  • About my execution environment.

Included library.

#include "bits/stdc++.h"

using namespace std;
typedef long long ll;
const ll inf = (1 << 30) - 1;
const ll infll = (1LL << 61) - 1;
const ll mod = 1e9 + 7;
#define REP(i, o, n) for (ll i = o; i < n; i++)
#define rep(i, n) REP(i, 0, n)

bits/stdc++.h is defined by root/bits/stdc++.h .

#pragma once

#include <iostream>
#include <iomanip>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
#include <numeric>
#include <limits>
#include <bitset>
#include <queue>
#include <stack>

I define actual() which is return void reason why main() is return int complicated.

void actual() {
}

int main() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    cout << fixed << setprecision(15);
    actual();
    return 0;
}

About

my programming contest records

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published