• VNOJ
  • Home
  • PRoblems
  • Submissions
  • Users
    >
    • Organizations
  • Contests
  • Wiki
  • About
    >
    • FAQ
    • Custom checker
    • Tag
    • Judges
    • Devlog
    • Github
    • Tickets
    • Thư viện đề thi
    • Đề xuất contest
  • Tạp chí
VI EN Log in  or  Sign up

NTAN

  • About
  • Statistics
  • Blogs

Problems solved: 44
Rank by points: #6883
Total points: 9.45
Contribution points: 0

View submissions

1 contest written
Rank by rating: #6113
Rating: 1054
Min. rating: 1054
Max rating: 1054

From Trường THPT chuyên Nguyễn Tất Thành, Kon Tum

About

#include <bits/stdc++.h>
#define endl "\n"
#define Freopen(a) freopen(a ".inp", "r", stdin), freopen(a ".out", "w", stdout);
#define Fast_IO ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define what(x) cerr << #x << " = " << (x) << endl;
#define assertx(x) if (!(x)) cerr << "Assertion failed!\n"<< "Line " << __LINE__ << ": " << #x << endl;abort();
#define all(a) a.begin(), a.end()
#define present(a, n) (find(a.begin(), a.end(), n) != a.end())
#define presentS(a, n) (a.find(n) != a.npos)
#define minElement(a) *min_element(a.begin(), a.end())
#define maxElement(a) *max_element(a.begin(), a.end())
#define isInteger(n) (ceil(n) == floor(n))
#define x first
#define y second
#define inf 1e9 + 7
#define task "task"
using namespace std;

//* Struct and Constant *//
const int MOD = inf;
void printMatrix(vector<vector<int>> a)
{
    for (int i = 0; i < a.size(); i++)
    {
        for (int j = 0; j < a[i].size(); j++)
            cout << a[i][j] << " ";
        cout << endl;
    }
    cout << "-------\n";
}
void printVector(vector<int> a)
{
    for (int i = 0; i < a.size(); i++)
        cout << a[i];
    cout << "-------\n";
}

//* Variable *//

//* Function *//

int main()
{
    Fast_IO 

    return 0;
}

Badges & Awards

This user has not earned any badges or awards.

«    »
Sun
Mon
Tues
Wed
Thurs
Fri
Sat
Less
More

Rating history

, #

proudly powered by DMOJ | follow us on Github and Facebook