Skip to content

Instantly share code, notes, and snippets.

View Semior001's full-sized avatar

Yelshat Duskaliyev Semior001

View GitHub Profile
@Semior001
Semior001 / a.cpp
Created November 9, 2018 13:19
solution
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1000000;
int n, x;
int a[MAXN+10];
bool findX(int i){
if(i >= n)
import telebot
import datetime
import time
import random
from isoweek import Week
import config
counter = -1
tb = telebot.TeleBot(config.token)
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,m;
cin >> n >> m;
int a[n+1][m+1];
for(int i = 1; i <= n; i++){
for(int j = 1; j <= m; j++){
cin >> a[i][j];
#include <bits/stdc++.h>
#define sqr(a) (a) * (a)
using namespace std;
const int MAXN = 1000000;
int n, c1, c2;
int x[MAXN+10], y[MAXN+10], r[MAXN+10];
double dist;
#include <bits/stdc++.h>
#define sqr(a) (a) * (a)
using namespace std;
int n;
string s[1000000];
int a[1000000];
int main(){
cin >> n;
# docker build
FROM ubuntu:latest
MAINTAINER SEMIOR <ura2178@gmail.com>
ENV TZ=Asia/Almaty \
HOST=localhost \
DOMAIN=localdomain \
INET_PROTOCOLS=ipv4 \
@Semior001
Semior001 / pom.xml
Last active January 23, 2019 04:06
(adding cxf-codegen plugin)
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<name>Maven Plugin Snapshots</name>
<url>http://repository.apache.org/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Xml.Serialization;
namespace Quiz29March
{
public class Person
using System;
using System.Threading;
namespace Quiz29March
{
public class Task2
{
public static void Main(string[] args)
{
#include <bits/stdc++.h>
#define F first
#define S second
#define mp make_pair
#define pb push_back
#define ll long long
#define INF (1<<30)
#define sqr(a) (a)*(a)
#define endl '\n'
using namespace std;