id
stringlengths
14
117
description
stringlengths
29
13k
code
stringlengths
10
49.8k
test_samples
dict
source
class label
3 classes
prompt
stringlengths
391
104k
p00011 Drawing Lots_17020
Let's play Amidakuji. In the following example, there are five vertical lines and four horizontal lines. The horizontal lines can intersect (jump across) the vertical lines. <image> In the starting points (top of the figure), numbers are assigned to vertical lines in ascending order from left to right. At the first...
w = int(input()) + 1 l = [i for i in range(w)] n = int(input()) for i in range(n): a, b = map(int, input().split(",")) l[a], l[b] = l[b], l[a] for i in range(1, w): print(l[i])
{ "input": [ "5\n4\n2,4\n3,5\n1,2\n3,4", "5\n4\n2,4\n3,5\n2,1\n3,4", "5\n4\n2,4\n4,5\n2,1\n3,4", "5\n1\n2,4\n4,5\n2,1\n3,4", "5\n0\n2,4\n4,5\n1,2\n4-3", "5\n1\n1,4\n5,4\n21,\n,34", "5\n4\n2,4\n3,5\n1,2\n2,4", "5\n2\n2,4\n4,5\n2,1\n3,4", "5\n1\n5,1\n,54\n22-\n,44", "5\n2\n2,4\n3...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Let's play Amidakuji. In the following example, there are five vertical lines and four horizontal lines. The horizontal lines can intersect (jump across) the vertical lines. <image>...
p00143 Altair and Vega_17024
Zhinü was a child of the Emperor, but he was weaving the machine even if he opened it at the request of his father. It was a pleasure of the Emperor to wear clothes made of a splendid cloth called Unnishiki woven by Zhinü. Unnishiki has a short lifespan and deteriorates quickly, but there was no problem because the ha...
# -*- coding: utf-8 -*- """ http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=0143 """ import sys from sys import stdin input = stdin.readline from math import sqrt, atan2, acos, sin, cos class Point(object): epsilon = 1e-10 def __init__(self, x=0.0, y=0.0): if isinstance(x, tuple): ...
{ "input": [ "5\n2 5 9 2 8 9 2 11 6 5\n2 5 9 2 8 9 2 11 12 6\n2 5 9 2 8 9 2 11 11 9\n14 1 25 7 17 12 17 9 20 5\n14 1 25 7 17 12 22 13 20 5", "5\n3 5 9 2 8 9 2 11 6 5\n2 5 9 2 8 9 2 11 12 6\n2 5 9 2 8 9 2 11 11 9\n14 1 25 7 17 12 17 9 20 5\n14 1 25 7 17 12 22 13 20 5", "5\n3 5 9 2 8 9 0 11 6 5\n3 5 9 2 8 9...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Zhinü was a child of the Emperor, but he was weaving the machine even if he opened it at the request of his father. It was a pleasure of the Emperor to wear clothes made of a splendi...
p00276 Formation_17028
At Akabe High School, which is a programmer training school, the roles of competition programmers in team battles are divided into the following three types. C: | Coder | I am familiar with the language and code. --- | --- | --- A: | Algorithm | I am good at logical thinking and think about algorithms. N: | Navigator |...
# -*- coding: utf-8 -*- """ http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=0281 """ import sys from sys import stdin input = stdin.readline def solve(c, a, n): CCA, CCC, CAN = 0, 0, 0 CAN = min(c, a, n) # CAN??????????????° c -= CAN a -= CAN if a > 0 and c > 0: ...
{ "input": [ "4\n3 0 0\n1 1 1\n9 4 1\n0 1 2", "4\n3 0 0\n1 1 1\n9 4 2\n0 1 2", "4\n2 0 0\n1 1 1\n9 4 2\n0 1 2", "4\n3 0 1\n1 1 1\n9 4 1\n0 1 2", "4\n3 0 0\n1 2 1\n0 4 2\n0 1 2", "4\n0 0 0\n1 2 1\n0 4 2\n0 1 3", "4\n2 1 0\n2 2 2\n9 8 2\n0 1 3", "4\n0 1 2\n3 0 2\n9 19 0\n0 2 3", "4\n...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: At Akabe High School, which is a programmer training school, the roles of competition programmers in team battles are divided into the following three types. C: | Coder | I am familia...
p00464 Walk_17032
problem One day, Taro, who lives in JOI town, decided to take a walk as a daily routine to improve his health. In JOI town, where Taro lives, he runs in the east-west direction as shown in the figure (H + 1). The road and the north-south direction (W + 1) run through the road in a grid pattern. Taro's house is at the ...
#!/usr/bin/env python import string import sys from itertools import chain, takewhile def read( f, *shape, it=chain.from_iterable(sys.stdin), whitespaces=set(string.whitespace) ): def read_word(): return f("".join(takewhile(lambda c: c not in whitespaces, it)).strip()) if not shape: retur...
{ "input": [ "3 4 3\n1 0 1 1\n0 1 0 0\n1 0 1 0\n0 0 0", "3 4 3\n1 0 1 1\n0 1 0 0\n1 0 1 1\n0 0 0", "3 4 6\n1 0 1 1\n0 1 0 0\n1 0 1 1\n0 0 0", "3 4 8\n1 0 1 1\n0 1 0 0\n1 0 1 1\n0 0 0", "3 4 8\n1 0 1 1\n0 0 0 0\n1 0 1 1\n0 0 0", "3 4 4\n1 0 1 1\n0 1 0 0\n1 0 1 1\n0 0 0", "3 4 9\n1 0 1 1\n0 ...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: problem One day, Taro, who lives in JOI town, decided to take a walk as a daily routine to improve his health. In JOI town, where Taro lives, he runs in the east-west direction as sh...
p00654 Squid Multiplication_17036
Problem H: Squid Multiplication Squid Eiko loves mathematics. Especially she loves to think about integer. One day, Eiko found a math problem from a website. "A sequence b ={ai + aj | i < j } is generated from a sequence a ={a0 , ... , an | ai is even if i is 0, otherwise ai is odd}. Given the sequence b , find the s...
# AOJ 1069: Squid Multiplication # Python3 2018.7.10 bal4u def gcd(a, b): while b != 0: r = a % b a, b = b, r return a while True: n = int(input()) if n == 0: break even, odd = [], [] b = list(map(int, input().split())) for i in b: if i & 1: odd.append(i) else: even.append(i) even.sort() odd.sort() ...
{ "input": [ "3\n6 10 14 15 21 35\n2\n30 42 35\n0", "3\n6 10 14 15 27 35\n2\n30 42 35\n0", "3\n6 10 14 15 27 35\n0\n30 42 35\n0", "3\n6 10 22 15 27 35\n0\n3 56 35\n-1", "3\n6 10 26 15 27 35\n2\n30 42 35\n0", "3\n6 10 24 15 27 35\n0\n30 42 8\n0", "3\n6 10 28 15 31 35\n2\n30 42 35\n0", "...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Problem H: Squid Multiplication Squid Eiko loves mathematics. Especially she loves to think about integer. One day, Eiko found a math problem from a website. "A sequence b ={ai + aj...
p00930 Flipping Parentheses_17041
Example Input 6 3 ((())) 4 3 1 Output 2 2 1
from heapq import heappush, heappop, heapify import sys readline = sys.stdin.readline write = sys.stdout.write def solve(): N, Q = map(int, readline().split()) INF = 2**31-1 LV = (N-1).bit_length() N0 = 2**LV data = [0]*(2*N0) lazy = [0]*(2*N0) L0 = [0]*(2*N0) L1 = [0]*(2*N0) def...
{ "input": [ "6 3\n((()))\n4\n3\n1", "6 2\n((()))\n4\n3\n1", "6 3\n(((())\n4\n3\n1", "6 3\n(((())\n4\n3\n2", "4 3\n(((())\n4\n3\n4", "6 3\n((()))\n4\n3\n2", "4 1\n(((())\n4\n3\n2", "4 3\n(((())\n4\n2\n4", "6 3\n((()))\n4\n5\n2", "6 3\n((()))\n4\n5\n4", "6 2\n((()))\n1\n3\n1...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Example Input 6 3 ((())) 4 3 1 Output 2 2 1 ### Input: 6 3 ((())) 4 3 1 ### Output: 2 2 1 ### Input: 6 2 ((())) 4 3 1 ### Output: 2 2 ### Code: from heapq import heappush, he...
p01333 Summer of KMC_17047
Description KMC sells CDs every year at a coterie spot sale called Comic Market. F was supposed to sell CDs at the comic market, but due to the popularity of F, the KMC sales floor was flooded with people, and the calculation of change could not keep up. So F decided to write a program that would output the change as ...
while True: a, b = map(int, input().split()) if a == 0 and b == 0:break w = b - a x = w // 1000 w %= 1000 y = w // 500 w %= 500 z = w // 100 print(z, y, x)
{ "input": [ "500 1000\n100 10000\n400 700\n600 5000\n10000 10000\n0 0", "500 1001\n100 10000\n400 700\n600 5000\n10000 10000\n0 0", "500 1001\n100 10100\n400 700\n600 5000\n10000 10000\n0 0", "500 1001\n100 10100\n400 700\n429 5000\n10000 10000\n0 0", "500 1001\n100 10100\n400 700\n429 5000\n1000...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Description KMC sells CDs every year at a coterie spot sale called Comic Market. F was supposed to sell CDs at the comic market, but due to the popularity of F, the KMC sales floor w...
p01813 An Equation in a Mine_17052
Tunnel formula One day while exploring an abandoned mine, you found a long formula S written in the mine. If you like large numbers, you decide to take out the choke and add `(` or `)` so that the result of the formula calculation is as large as possible. If it has to be a mathematical formula even after adding it, ho...
import math,string,itertools,fractions,heapq,collections,re,array,bisect,sys,random,time,copy,functools sys.setrecursionlimit(10**7) inf = 10**20 eps = 1.0 / 10**13 mod = 10**9+7 dd = [(-1,0),(0,1),(1,0),(0,-1)] ddn = [(-1,0),(-1,1),(0,1),(1,1),(1,0),(1,-1),(0,-1),(-1,-1)] def LI(): return [int(x) for x in sys.stdin....
{ "input": [ "1-(2+3-4+5)", "0-(2+3-4+5)", "0-(2+3-3+5)", "2-(2+3-4+5)", "1-(3+2-4+5)", "2-(2-3+4+5)", "0-(3+4-4+5)", "3+(2-4-4+5)", "2-(2+2-4+5)", "2+(2-4-4+5)", "2-(2+2-5+5)", "2-(2-3+4+6)", "3+(2-4-4+6)", "4-(2+5-0+2)", "2-(2-3+4+7)", "0-(4+5-1+6)", ...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Tunnel formula One day while exploring an abandoned mine, you found a long formula S written in the mine. If you like large numbers, you decide to take out the choke and add `(` or `...
p02235 Longest Common Subsequence_17057
For given two sequences $X$ and $Y$, a sequence $Z$ is a common subsequence of $X$ and $Y$ if $Z$ is a subsequence of both $X$ and $Y$. For example, if $X = \\{a,b,c,b,d,a,b\\}$ and $Y = \\{b,d,c,a,b,a\\}$, the sequence $\\{b,c,a\\}$ is a common subsequence of both $X$ and $Y$. On the other hand, the sequence $\\{b,c,a...
def lcs(x,y): L=[] for chk in y: bg_i=0 for i,chr_i in enumerate(L): cur_i=x.find(chk,bg_i)+1 if not cur_i: break L[i]=min(cur_i,chr_i) bg_i=chr_i else: cur_i=x.find(chk,bg_i)+1 if cur_i: ...
{ "input": [ "3\nabcbdab\nbdcaba\nabc\nabc\nabc\nbc", "3\nabcbdab\nbdcaba\nabc\nabc\nacb\nbc", "3\nabcbdab\nbdcaba\nabc\nabc\nbcb\nbc", "3\nabcbdab\nbdcaba\n`bc\nabc\nbcb\nbc", "3\nbadbcba\nbdcaba\n`bc\nabc\nbcb\nbc", "3\nbadbdba\nbdcaba\n`bc\nabc\nbcb\ncc", "3\nbadbdba\nbdcaba\n`bc\nabd\n...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: For given two sequences $X$ and $Y$, a sequence $Z$ is a common subsequence of $X$ and $Y$ if $Z$ is a subsequence of both $X$ and $Y$. For example, if $X = \\{a,b,c,b,d,a,b\\}$ and $...
p02381 Standard Deviation_17061
You have final scores of an examination for n students. Calculate standard deviation of the scores s1, s2 ... sn. The variance α2 is defined by α2 = (∑ni=1(si - m)2)/n where m is an average of si. The standard deviation of the scores is the square root of their variance. Constraints * n ≤ 1000 * 0 ≤ si ≤ 100 Inpu...
import math n = int(input()) while not n == 0: ss = [float(i) for i in input().split(' ')] m = sum(ss)/n a2 = sum([(i-m)**2 for i in ss]) / n print(math.sqrt(a2)) n = int(input())
{ "input": [ "5\n70 80 100 90 20\n3\n80 80 80\n0", "5\n70 80 100 107 20\n3\n80 80 80\n0", "5\n70 80 100 107 20\n0\n80 80 80\n0", "5\n70 80 101 107 20\n0\n80 80 80\n0", "5\n70 80 101 123 20\n0\n80 80 80\n0", "5\n70 80 111 123 20\n0\n80 80 80\n0", "5\n70 80 100 90 20\n3\n74 80 80\n0", "5...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You have final scores of an examination for n students. Calculate standard deviation of the scores s1, s2 ... sn. The variance α2 is defined by α2 = (∑ni=1(si - m)2)/n where m is a...
1006_A. Adjacent Replacements_17071
Mishka got an integer array a of length n as a birthday present (what a surprise!). Mishka doesn't like this present and wants to change it somehow. He has invented an algorithm and called it "Mishka's Adjacent Replacements Algorithm". This algorithm can be represented as a sequence of steps: * Replace each occurre...
if __name__ == "__main__": _ = int(input()) arr = [int(num) for num in input().split()] for i in arr: if i % 2 == 0: print(i - 1, end=" ") else: print(i, end=" ")
{ "input": [ "5\n1 2 4 5 10\n", "10\n10000 10 50605065 1 5 89 5 999999999 60506056 1000000000\n", "3\n2 2 2\n", "2\n2 2\n", "1\n2441139\n", "1\n999999999\n", "2\n4 4\n", "1\n210400\n", "1\n1000000000\n", "5\n100000000 100000000 100000000 100000000 100000000\n", "3\n2 1 2\n"...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Mishka got an integer array a of length n as a birthday present (what a surprise!). Mishka doesn't like this present and wants to change it somehow. He has invented an algorithm and ...
1029_F. Multicolored Markers_17075
There is an infinite board of square tiles. Initially all tiles are white. Vova has a red marker and a blue marker. Red marker can color a tiles. Blue marker can color b tiles. If some tile isn't white then you can't use marker of any color on it. Each marker must be drained completely, so at the end there should be e...
a, b = map(int,input().split()) ad = [] for i in range(1,a+1): if i*i > a: break if a % i == 0: ad.append(i) if i*i != a: ad.append(a//i) bd = [] for i in range(1,b+1): if i*i > b: break if b % i == 0: bd.append(i) if i*i != b: bd.append(b//i) ab = a+b abd = [] for i in range(1,ab+1): if i*i > ab...
{ "input": [ "3 9\n", "4 4\n", "506 2708\n", "3 6\n", "9 3\n", "97821761637600 97821761637600\n", "99999999999962 99999999999973\n", "1 1\n", "11 49\n", "2 2\n", "1 6\n", "99999999999973 99999999999971\n", "11003163441270 11003163441270\n", "87897897895 29835496...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There is an infinite board of square tiles. Initially all tiles are white. Vova has a red marker and a blue marker. Red marker can color a tiles. Blue marker can color b tiles. If so...
1073_A. Diverse Substring_17081
You are given a string s, consisting of n lowercase Latin letters. A substring of string s is a continuous segment of letters from s. For example, "defor" is a substring of "codeforces" and "fors" is not. The length of the substring is the number of letters in it. Let's call some string of length n diverse if and o...
length=int(input()) def AllSubsets(s) : # accepts a string , returns a list of all non empty subsets l=[] for i in range (len(s)) : if i <len(s)-1: for j in range (i+2,len(s)+1): l+=[s[i:j]] else : l+=[s[i]] return l #print(AllSubsets("string")) def diverse(st) : # accepts string , returns 1 if...
{ "input": [ "5\naaaaa\n", "10\ncodeforces\n", "4\ncbba\n", "6\naabbcc\n", "6\naabbab\n", "2\nss\n", "2\nab\n", "3\nbaa\n", "3\nabb\n", "4\naaba\n", "1\ng\n", "6\nsssssa\n", "2\naa\n", "5\naabaa\n", "4\naabb\n", "3\naba\n", "9\naabbccaab\n", "10\...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given a string s, consisting of n lowercase Latin letters. A substring of string s is a continuous segment of letters from s. For example, "defor" is a substring of "codeforc...
1095_A. Repeating Cipher_17085
Polycarp loves ciphers. He has invented his own cipher called repeating. Repeating cipher is used for strings. To encrypt the string s=s_{1}s_{2} ... s_{m} (1 ≤ m ≤ 10), Polycarp uses the following algorithm: * he writes down s_1 ones, * he writes down s_2 twice, * he writes down s_3 three times, * ... ...
try: t = int(input()) s = input() _ = 1 i = 0 l = [] while((i)<=(len(s)-1)): #print(i) l.append(s[i]) _+=1 i = i+_ s = "".join(l) print(s) except: pass
{ "input": [ "6\nbaabbb\n", "10\nooopppssss\n", "1\nz\n", "testa\n", "zqwertyuioasdfghjklrtyuiodfghjklqwertyuioasdfssd\n", "ncteho\n", "code\n", "qwertyuioasdfghjklrtyuiodfghjklqwertyuioasdfssddxb\n", "gecabdfh\n", "bz\n", "3\nzww\n", "aechs\n", "abcdef\n", "erf...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Polycarp loves ciphers. He has invented his own cipher called repeating. Repeating cipher is used for strings. To encrypt the string s=s_{1}s_{2} ... s_{m} (1 ≤ m ≤ 10), Polycarp use...
1114_B. Yet Another Array Partitioning Task_17089
An array b is called to be a subarray of a if it forms a continuous subsequence of a, that is, if it is equal to a_l, a_{l + 1}, …, a_r for some l, r. Suppose m is some known constant. For any array, having m or more elements, let's define it's beauty as the sum of m largest elements of that array. For example: * ...
from operator import itemgetter from itertools import accumulate from sys import stdin, stdout n, m, k = [int(x) for x in stdin.readline().split()] a = [int(x) for x in stdin.readline().split()] id = [x for x in range(n)] b = list(zip(a, id)) a.sort(reverse = True) b.sort(reverse = True) c = [p[1] for p in b[:m*k]] c.s...
{ "input": [ "2 1 2\n-1000000000 1000000000\n", "9 2 3\n5 2 5 2 4 1 1 3 2\n", "6 1 4\n4 1 3 2 2 3\n", "37 3 10\n74 42 92 -64 -11 -37 63 81 -58 -88 52 -6 40 -24 29 -10 -23 41 -36 -53 1 94 -65 47 87 -40 -84 -65 -1 99 35 51 40 -21 36 84 -48\n", "69 9 5\n-7 10 7 3 8 -9 9 -6 -5 -1 6 7 -3 10 2 3 -10 3 1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: An array b is called to be a subarray of a if it forms a continuous subsequence of a, that is, if it is equal to a_l, a_{l + 1}, …, a_r for some l, r. Suppose m is some known constan...
1142_C. U2_17093
Recently Vasya learned that, given two points with different x coordinates, you can draw through them exactly one parabola with equation of type y = x^2 + bx + c, where b and c are reals. Let's call such a parabola an U-shaped one. Vasya drew several distinct points with integer coordinates on a plane and then drew an...
import sys def cross(o, a, b): return (a[0] - o[0]) * (b[1] - o[1]) - (a[1] - o[1]) * (b[0] - o[0]) N = int(input()) A = [None]*N for i in range(N): x, y = map(int, sys.stdin.readline().split()) A[i] = (x, y-x*x) A.sort() upper = [] for p in reversed(A): while len(upper) >= 2 and cross(upper[-2], upper...
{ "input": [ "3\n-1 0\n0 2\n1 0\n", "5\n1 0\n1 -1\n0 -1\n-1 0\n-1 -1\n", "1\n-751115 -925948\n", "1\n-64862 -925948\n", "3\n-1 0\n-1 2\n1 0\n", "1\n-100138 -925948\n", "1\n-100138 -1274857\n", "1\n-136202 -1274857\n", "1\n-211197 -1274857\n", "1\n-277424 -1274857\n", "1\n-2...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Recently Vasya learned that, given two points with different x coordinates, you can draw through them exactly one parabola with equation of type y = x^2 + bx + c, where b and c are re...
1162_E. Thanos Nim_17097
Alice and Bob are playing a game with n piles of stones. It is guaranteed that n is an even number. The i-th pile has a_i stones. Alice and Bob will play a game alternating turns with Alice going first. On a player's turn, they must choose exactly n/2 nonempty piles and independently remove a positive number of stone...
n = int(input()) L = [int(i) for i in input().split()] s = 0 m = L[0] for i in L: if i == 1: s += 1 if i < m: m = i if s > n // 2: print('Bob') elif s <= n // 2 and s > 0: print('Alice') elif s == 0: ss = 0 for j in L: if j == m: ss += 1 if ss <= n // 2: ...
{ "input": [ "4\n3 1 4 1\n", "2\n8 8\n", "4\n2 3 3 3\n", "4\n1 2 2 2\n", "8\n1 1 1 1 1 2 2 2\n", "44\n28 28 36 40 28 28 35 28 28 33 33 28 28 28 28 47 28 43 28 28 35 38 49 40 28 28 34 39 45 32 28 28 28 50 39 28 32 28 50 32 28 33 28 28\n", "4\n2 1 1 1\n", "28\n48 14 22 14 14 14 14 14 47 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Alice and Bob are playing a game with n piles of stones. It is guaranteed that n is an even number. The i-th pile has a_i stones. Alice and Bob will play a game alternating turns wit...
1183_D. Candy Box (easy version)_17101
This problem is actually a subproblem of problem G from the same contest. There are n candies in a candy box. The type of the i-th candy is a_i (1 ≤ a_i ≤ n). You have to prepare a gift using some of these candies with the following restriction: the numbers of candies of each type presented in a gift should be all di...
q=int(input()) for i in range(q): n=int(input()) a=list(map(int,input().split())) counts=[0]*(len(a)+1) ans=0 for i in range(len(a)): counts[a[i]]+=1 counts.sort(reverse=True) w=counts[0]+1 for i in counts: w=max(min(w-1,i),0) ans+=w print(ans)
{ "input": [ "3\n8\n1 4 8 4 5 6 3 8\n16\n2 1 3 3 4 3 4 4 1 3 2 2 2 4 1 1\n9\n2 2 4 4 4 7 7 7 7\n", "3\n8\n1 0\n4 1\n2 0\n4 1\n5 1\n6 1\n3 0\n2 0\n4\n1 1\n1 1\n2 1\n2 1\n9\n2 0\n2 0\n4 1\n4 1\n4 1\n7 0\n7 1\n7 0\n7 1\n", "3\n8\n1 0\n4 1\n2 0\n4 1\n5 1\n6 1\n3 0\n2 0\n4\n1 1\n1 1\n2 1\n2 1\n9\n2 0\n2 0\n4 1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: This problem is actually a subproblem of problem G from the same contest. There are n candies in a candy box. The type of the i-th candy is a_i (1 ≤ a_i ≤ n). You have to prepare a ...
1200_E. Compress Words_17105
Amugae has a sentence consisting of n words. He want to compress this sentence into one word. Amugae doesn't like repetitions, so when he merges two words into one word, he removes the longest prefix of the second word that coincides with a suffix of the first word. For example, he merges "sample" and "please" into "sa...
from sys import stdin, stdout def compresswords(n, words): a = [] for c in words[0]: a.append(c) for i in range(1, len(words)): lps = getlps(words[i]) #print(lps) idx = getsuffixmatchIdx(a, words[i], lps) #print(idx) #if idx == -1: # idx = 0 ...
{ "input": [ "5\nsample please ease in out\n", "5\nI want to order pizza\n", "2\nPCXFTTTQEZ EHZMCWSWUW\n", "2\nbq5rwXgEwj 9J5SlbNxMd\n", "2\nORKJRPHXPV GKQFDIKTTC\n", "4\nX XtS XtS XtSo4P0Mhj\n", "2\nBPHNQFVKHX NFXBLVAWZL\n", "9\nM M5 M5D M5DAYBl0r6gmttCTR M5DAYBl0r6gmttCTRoKdM9EFrX22q...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Amugae has a sentence consisting of n words. He want to compress this sentence into one word. Amugae doesn't like repetitions, so when he merges two words into one word, he removes th...
1261_D1. Wrong Answer on test 233 (Easy Version)_17110
Your program fails again. This time it gets "Wrong answer on test 233" . This is the easier version of the problem. In this version 1 ≤ n ≤ 2000. You can hack this problem only if you solve and lock both problems. The problem is about a test containing n one-choice-questions. Each of the questions contains k options...
def main(): M=998244353 n,k,*h=map(int,open(0).read().split()) m=sum(i!=j for i,j in zip(h,h[1:]+h[:1])) f=[0]*(m+1) f[0]=b=1 for i in range(1,m+1):f[i]=b=b*i%M inv=[0]*(m+1) inv[m]=b=pow(f[m],M-2,M) for i in range(m,0,-1):inv[i-1]=b=b*i%M comb=lambda n,k:f[n]*inv[n-k]*inv[k]%M ...
{ "input": [ "3 3\n1 3 1\n", "5 5\n1 1 4 2 2\n", "98 102\n79 30 51 87 80 91 32 16 21 54 79 14 48 24 8 66 9 94 45 50 85 82 54 89 44 92 23 62 47 11 75 33 102 27 63 39 91 38 33 55 81 63 81 87 26 19 41 85 46 56 91 97 67 30 94 45 40 5 22 8 23 34 8 77 43 66 67 31 7 77 26 22 19 71 26 82 69 52 40 4 98 27 63 74 68...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Your program fails again. This time it gets "Wrong answer on test 233" . This is the easier version of the problem. In this version 1 ≤ n ≤ 2000. You can hack this problem only if y...
1283_F. DIY Garland_17114
Polycarp has decided to decorate his room because the New Year is soon. One of the main decorations that Polycarp will install is the garland he is going to solder himself. Simple garlands consisting of several lamps connected by one wire are too boring for Polycarp. He is going to solder a garland consisting of n lam...
import sys,math,itertools from collections import Counter,deque,defaultdict from bisect import bisect_left,bisect_right from heapq import heappop,heappush,heapify, nlargest from copy import deepcopy mod = 10**9+7 INF = float('inf') def inp(): return int(sys.stdin.readline()) def inpl(): return list(map(int, sys.stdin....
{ "input": [ "6\n3 6 3 1 5\n", "100\n1 48 78 56 75 22 48 7 28 70 77 32 43 71 40 72 29 28 83 15 9 16 52 40 91 14 69 75 13 95 5 6 53 47 93 33 92 7 7 95 51 66 11 58 77 3 29 27 34 89 80 60 47 95 79 60 3 32 86 50 39 85 5 58 99 6 29 42 36 77 53 15 8 78 51 58 65 96 49 47 70 70 80 37 47 51 40 12 57 19 5 77 32 47 68 8...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Polycarp has decided to decorate his room because the New Year is soon. One of the main decorations that Polycarp will install is the garland he is going to solder himself. Simple ga...
1303_B. National Project_17118
Your company was appointed to lay new asphalt on the highway of length n. You know that every day you can either repair one unit of the highway (lay new asphalt over one unit of the highway) or skip repairing. Skipping the repair is necessary because of the climate. The climate in your region is periodical: there are ...
def ceil(a): if(a//1 == a): return int(a) else: return(int(a)+1) for i in range(0,int(input())): n,g,b = list(map(int, input().split())) if(g>=b): print(n) else: u = ceil(n/2) # print(u) k = ceil((u)/g) - 1 # print(k) if(k*(g+b) + u - (...
{ "input": [ "3\n5 1 1\n8 10 10\n1000000 1 1000000\n", "3\n5 1 1\n8 6 10\n1000000 1 1000000\n", "3\n5 1 1\n8 2 10\n1000000 1 1000000\n", "3\n5 1 1\n9 2 10\n1000000 1 1000000\n", "3\n5 1 1\n9 2 10\n1000000 1 1000100\n", "3\n10 1 1\n9 2 10\n1000000 1 1000100\n", "3\n10 1 1\n6 2 10\n1000000 1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Your company was appointed to lay new asphalt on the highway of length n. You know that every day you can either repair one unit of the highway (lay new asphalt over one unit of the h...
1327_C. Game with Chips_17122
Petya has a rectangular Board of size n × m. Initially, k chips are placed on the board, i-th chip is located in the cell at the intersection of sx_i-th row and sy_i-th column. In one action, Petya can move all the chips to the left, right, down or up by 1 cell. If the chip was in the (x, y) cell, then after the oper...
n,m,k=map(int, input().split()) for i in range(2*k): map(int, input().split()) ans = (m-1)*'L' + (n-1)*'U' for i in range(n): if i%2==0: ans += 'R'*(m-1) else: ans += 'L'*(m-1) if i < n-1: ans+='D' print(len(ans)) print(ans)
{ "input": [ "5 4 3\n3 4\n3 1\n3 3\n5 3\n1 3\n1 4\n", "3 3 2\n1 2\n2 1\n3 3\n3 2\n", "3 3 2\n1 2\n2 1\n3 3\n3 2\n", "2 2 1\n1 1\n1 1\n", "2 2 2\n2 1\n2 1\n1 2\n1 1\n", "10 10 20\n7 5\n4 5\n5 4\n7 4\n1 5\n6 7\n9 5\n8 4\n1 4\n2 10\n3 10\n4 10\n3 6\n5 7\n6 2\n1 1\n10 9\n7 6\n1 4\n6 4\n8 2\n8 3\n5...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Petya has a rectangular Board of size n × m. Initially, k chips are placed on the board, i-th chip is located in the cell at the intersection of sx_i-th row and sy_i-th column. In on...
1368_C. Even Picture_17126
Leo Jr. draws pictures in his notebook with checkered sheets (that is, each sheet has a regular square grid printed on it). We can assume that the sheets are infinitely large in any direction. To draw a picture, Leo Jr. colors some of the cells on a sheet gray. He considers the resulting picture beautiful if the follo...
import sys def minp(): return sys.stdin.readline().strip() def mint(): return int(minp()) def mints(): return map(int, minp().split()) def solve(): n = mint() print((n+1)*3+1) for i in range(n+1): print(i,i) print(1+i,i) print(i,1+i) print(n+1,n+1) #for i in range(mint()): solve()
{ "input": [ "4\n", "3\n", "500\n", "7\n", "23\n", "496\n", "13\n", "6\n", "1\n", "14\n", "499\n", "79\n", "8\n", "4\n", "17\n", "12\n", "100\n", "256\n", "48\n", "99\n", "66\n", "9\n", "16\n", "495\n", "498\n", "1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Leo Jr. draws pictures in his notebook with checkered sheets (that is, each sheet has a regular square grid printed on it). We can assume that the sheets are infinitely large in any d...
1389_E. Calendar Ambiguity_17130
Berland year consists of m months with d days each. Months are numbered from 1 to m. Berland week consists of w days. The first day of the year is also the first day of the week. Note that the last week of the year might be shorter than w days. A pair (x, y) such that x < y is ambiguous if day x of month y is the same...
import sys input = sys.stdin.readline aaaa = list() for kek in range(int(input())): (m, d, w) = map(int, input().split()) g = min(m,d) d -=1 i = 2 while i < d**(1/2)+2: if d % i == 0: d //= i if w % i == 0: w //= i else: i += 1 ...
{ "input": [ "5\n6 7 4\n10 7 12\n12 30 7\n1 1 1\n3247834 10298779 625324\n", "5\n6 7 4\n10 7 12\n12 30 6\n1 1 1\n3247834 10298779 625324\n", "5\n6 7 4\n10 7 12\n12 30 7\n1 1 1\n3247834 18794097 625324\n", "5\n6 7 1\n10 7 12\n12 30 6\n1 1 1\n3247834 10298779 625324\n", "5\n6 7 4\n10 7 12\n12 17 4\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Berland year consists of m months with d days each. Months are numbered from 1 to m. Berland week consists of w days. The first day of the year is also the first day of the week. Note...
140_B. New Year Cards_17134
As meticulous Gerald sets the table, Alexander finished another post on Codeforces and begins to respond to New Year greetings from friends. Alexander has n friends, and each of them sends to Alexander exactly one e-card. Let us number his friends by numbers from 1 to n in the order in which they send the cards. Let's ...
n = int(input()) arr = [list(map(int, input().split())) for _ in range(n+1)] res = [0] * n for i in range(n): p = [0] * (n+1) for j in range(n): p[arr[i][j]] = j u, t, b = 0, int(1e5), int(1e5) for x in arr[n]: if x != i+1 and x < b: if p[x] < t: u, t = x, p...
{ "input": [ "4\n1 2 3 4\n4 1 3 2\n4 3 1 2\n3 4 2 1\n3 1 2 4\n", "10\n5 1 6 2 8 3 4 10 9 7\n3 1 10 6 8 5 2 7 9 4\n2 9 1 4 10 6 8 7 3 5\n10 1 7 8 3 2 4 6 5 9\n3 2 10 4 7 8 5 6 1 9\n5 6 3 10 8 7 2 9 4 1\n6 5 1 3 2 7 9 10 8 4\n1 10 9 3 7 8 4 2 6 5\n6 8 4 5 9 1 2 10 7 3\n9 6 8 5 10 3 1 7 2 4\n5 7 4 8 9 6 1 10 3 2...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: As meticulous Gerald sets the table, Alexander finished another post on Codeforces and begins to respond to New Year greetings from friends. Alexander has n friends, and each of them ...
1430_F. Realistic Gameplay_17138
Recently you've discovered a new shooter. They say it has realistic game mechanics. Your character has a gun with magazine size equal to k and should exterminate n waves of monsters. The i-th wave consists of a_i monsters and happens from the l_i-th moment of time up to the r_i-th moments of time. All a_i monsters spa...
from bisect import * from collections import * from math import * from heapq import * from typing import List from itertools import * from operator import * from functools import * #------------------------------------------------------------------------ import os import sys from io import BytesIO, IOBase # region fas...
{ "input": [ "2 3\n2 3 6\n3 4 3\n", "2 5\n3 7 11\n10 12 15\n", "5 42\n42 42 42\n42 43 42\n43 44 42\n44 45 42\n45 45 1\n", "1 10\n100 111 1\n", "4 10\n1 3 1\n3 3 10\n5 6 15\n7 8 1\n", "10 76\n1 2 82\n4 6 43\n9 10 13\n12 12 8\n14 15 16\n15 15 9\n16 16 92\n16 18 77\n18 19 95\n20 20 81\n", "10...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Recently you've discovered a new shooter. They say it has realistic game mechanics. Your character has a gun with magazine size equal to k and should exterminate n waves of monsters....
1454_B. Unique Bid Auction_17142
There is a game called "Unique Bid Auction". You can read more about it here: https://en.wikipedia.org/wiki/Unique_bid_auction (though you don't have to do it to solve this problem). Let's simplify this game a bit. Formally, there are n participants, the i-th participant chose the number a_i. The winner of the game is...
t=int(input()) for i in range(t): n=int(input()) l=list(map(int,input().split())) d={} for i in range(len(l)): if l[i] in d: d[l[i]].append(i+1) else: d[l[i]]=[i+1] a=[] flag=0 for i in d: if len(d[i])==1: flag=1 a.app...
{ "input": [ "6\n2\n1 1\n3\n2 1 3\n4\n2 2 2 3\n1\n1\n5\n2 3 2 4 2\n6\n1 1 5 5 4 4\n", "2\n2\n1 1\n1\n1\n", "4\n19\n16 3 11 9 3 13 11 9 14 10 10 19 19 15 11 8 8 7 3\n10\n8 6 1 4 1 4 2 9 7 10\n7\n7 1 1 4 4 1 2\n1\n1\n", "8\n12\n10 1 3 2 11 5 12 11 12 12 9 4\n11\n10 9 7 6 6 3 8 10 1 7 9\n12\n3 11 8 9 5 9...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There is a game called "Unique Bid Auction". You can read more about it here: https://en.wikipedia.org/wiki/Unique_bid_auction (though you don't have to do it to solve this problem). ...
1505_B. DMCA_17148
Many people are aware of DMCA – Digital Millennium Copyright Act. But another recently proposed DMCA – Digital Millennium Calculation Act – is much less known. In this problem you need to find a root of a number according to this new DMCA law. Input The input contains a single integer a (1 ≤ a ≤ 1000000). Output O...
n = int(input()) sumo = n while n>=10: sumo = 0 while n!=0: sumo+=n%10 n//=10 n = sumo print(sumo)
{ "input": [ "1\n", "81\n", "81\n", "98\n", "29\n", "33\n", "9\n", "28\n", "12\n", "4\n", "14\n", "52\n", "17\n", "6\n", "15\n", "51\n", "10\n", "2\n", "82\n", "141\n", "192\n", "48\n", "54\n", "3\n", "11\n", "32\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Many people are aware of DMCA – Digital Millennium Copyright Act. But another recently proposed DMCA – Digital Millennium Calculation Act – is much less known. In this problem you ne...
1528_C. Trees of Tranquillity_17151
Soroush and Keshi each have a labeled and rooted tree on n vertices. Both of their trees are rooted from vertex 1. Soroush and Keshi used to be at war. After endless decades of fighting, they finally became allies to prepare a Codeforces round. To celebrate this fortunate event, they decided to make a memorial graph o...
from __future__ import print_function import sys import traceback from bisect import bisect_left, bisect_right, insort from itertools import chain, repeat, starmap from math import log from operator import add, eq, ne, gt, ge, lt, le, iadd from textwrap import dedent try: from collections.abc import Sequence, ...
{ "input": [ "4\n4\n1 2 3\n1 2 3\n5\n1 2 3 4\n1 1 1 1\n6\n1 1 1 1 2\n1 2 1 2 2\n7\n1 1 3 4 4 5\n1 2 1 4 2 5\n", "4\n4\n1 2 3\n1 2 3\n5\n1 2 3 4\n1 1 1 1\n6\n1 2 1 1 2\n1 2 1 2 2\n7\n1 1 3 4 4 5\n1 2 1 4 2 5\n", "4\n4\n1 2 3\n1 2 3\n5\n1 2 3 4\n1 1 1 1\n6\n1 2 1 1 2\n1 2 1 2 2\n7\n1 1 3 4 4 5\n1 2 1 4 4 5\...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Soroush and Keshi each have a labeled and rooted tree on n vertices. Both of their trees are rooted from vertex 1. Soroush and Keshi used to be at war. After endless decades of fight...
15_B. Laser_17155
Petya is the most responsible worker in the Research Institute. So he was asked to make a very important experiment: to melt the chocolate bar with a new laser device. The device consists of a rectangular field of n × m cells and a robotic arm. Each cell of the field is a 1 × 1 square. The robotic arm has two lasers po...
n = int(input()) for i in range(n): n, m, x1, y1, x2, y2 = map(int, input().split()) #print(n, m, x1, y1, x2, y2) if x1 <= x2 and y1 <= y2: pass elif x1 >= x2 and y1 >= y2: x1, y1, x2, y2 = x2, y2, x1, y1 else: x1, y1, x2, y2 = x2, y1, x1, y2 if x1 <= x2 and y1 <= ...
{ "input": [ "2\n4 4 1 1 3 3\n4 3 1 1 2 2\n", "1\n3 3 3 2 1 1\n", "1\n4 5 2 2 4 2\n", "1\n2 5 1 5 2 2\n", "1\n5 6 3 4 4 2\n", "1\n3 5 2 4 3 5\n", "1\n2 6 2 6 2 3\n", "1\n2 2 1 2 2 1\n", "1\n7 3 6 2 5 2\n", "20\n100 200 100 1 100 100\n100 200 1 100 100 100\n2 2 1 1 2 2\n100 100 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Petya is the most responsible worker in the Research Institute. So he was asked to make a very important experiment: to melt the chocolate bar with a new laser device. The device cons...
201_E. Thoroughly Bureaucratic Organization_17160
Once n people simultaneously signed in to the reception at the recently opened, but already thoroughly bureaucratic organization (abbreviated TBO). As the organization is thoroughly bureaucratic, it can accept and cater for exactly one person per day. As a consequence, each of n people made an appointment on one of the...
def go(m, k): rem, ans, binom = m*k, 0, 1 ones = 0 while ones <= k: take = min(1 if ones == 0 else rem//ones, binom) if take == 0: break ans += take rem -= ones * take binom = binom*(k-ones)//(ones+1) ones += 1 return ans def solve(): n, m = map(int, input().split()) ans = 1; while go(m, ans) < ...
{ "input": [ "5\n4 1\n4 2\n7 3\n1 1\n42 7\n", "12\n11 4\n9 2\n10000 100\n1000000000 2345\n123456 1234567\n123456 65536\n5 55\n5 3\n2323 10\n999111000 232323\n999888777 777888999\n999888777 777\n", "17\n1 1000000000\n1000000000 1\n1000000000 1000000000\n1000000000 999999999\n999999999 1000000000\n1 2\n2 1\...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Once n people simultaneously signed in to the reception at the recently opened, but already thoroughly bureaucratic organization (abbreviated TBO). As the organization is thoroughly b...
226_D. The table_17164
Harry Potter has a difficult homework. Given a rectangular table, consisting of n × m cells. Each cell of the table contains the integer. Harry knows how to use two spells: the first spell change the sign of the integers in the selected row, the second — in the selected column. Harry's task is to make non-negative the ...
import math import sys input = sys.stdin.readline n, m = map(int, input().split()) a = [[] for _ in range(n)] for i in range(n): a[i] = [int(_) for _ in input().split()] row = [] col = [] rowStat = [1] * n colStat = [1] * m while True: bad = False for i in range(n): total = 0 for j in range(...
{ "input": [ "2 4\n-1 -1 -1 2\n1 1 1 1\n", "4 1\n-1\n-1\n-1\n-1\n", "20 10\n-6 8 -4 -1 3 10 2 5 4 7\n6 9 9 8 -8 3 7 9 7 3\n0 10 10 1 -3 -4 5 -1 10 10\n8 9 10 4 7 10 10 3 9 10\n3 0 8 -5 0 5 7 8 -5 4\n9 -6 7 10 -4 -2 7 0 -5 9\n-10 7 -4 5 10 8 3 7 1 8\n-3 -6 0 3 2 1 5 9 8 9\n4 -3 5 3 4 -6 9 5 3 4\n2 -4 0 -5 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Harry Potter has a difficult homework. Given a rectangular table, consisting of n × m cells. Each cell of the table contains the integer. Harry knows how to use two spells: the first ...
250_B. Restoring IPv6_17168
An IPv6-address is a 128-bit number. For convenience, this number is recorded in blocks of 16 bits in hexadecimal record, the blocks are separated by colons — 8 blocks in total, each block has four hexadecimal digits. Here is an example of the correct record of a IPv6 address: "0124:5678:90ab:cdef:0124:5678:90ab:cdef"....
for i in range(int(input())): t = input().split(':') if t[-1] == '': t.pop() elif t[0] == '': t.pop(0) if '' in t: t[t.index('')] = ('0000:' * (9 - len(t)))[: -1] print(':'.join('0' * (4 - len(i)) + i for i in t))
{ "input": [ "6\na56f:d3:0:0124:01:f19a:1000:00\na56f:00d3:0000:0124:0001::\na56f::0124:0001:0000:1234:0ff0\na56f:0000::0000:0001:0000:1234:0ff0\n::\n0ea::4d:f4:6:0\n", "6\n0:00:000:0000::\n1:01:001:0001::\nf:0f:00f:000f::\n1:10:100:1000::\nf:f0:f00:f000::\nf:ff:fff:ffff::\n", "4\n1:2:3:4:5:6:7:8\n0:0:0:0...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: An IPv6-address is a 128-bit number. For convenience, this number is recorded in blocks of 16 bits in hexadecimal record, the blocks are separated by colons — 8 blocks in total, each ...
275_C. k-Multiple Free Set_17172
A k-multiple free set is a set of integers where there is no pair of integers where one is equal to another integer multiplied by k. That is, there are no two integers x and y (x < y) from the set, such that y = x·k. You're given a set of n distinct positive integers. Your task is to find the size of it's largest k-mu...
def solve(): n,k=map(int,input().split()) a=sorted([int(i) for i in input().split()]) b=set(a) if k!=1: for i in a: if i in b: b.discard(i*k) print(len(b)) solve()
{ "input": [ "6 2\n2 3 6 5 4 10\n", "2 2\n500000000 1000000000\n", "2 2\n4 2\n", "2 1\n2 1\n", "2 1000000000\n276447232 100000\n", "3 1\n1 2 3\n", "1 1\n1000000000\n", "8 65538\n65535 65536 65537 65538 65539 131072 262144 196608\n", "2 2\n16 8\n", "2 2\n1 3\n", "10 2\n1 2 3...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: A k-multiple free set is a set of integers where there is no pair of integers where one is equal to another integer multiplied by k. That is, there are no two integers x and y (x < y)...
346_A. Alice and Bob_17182
It is so boring in the summer holiday, isn't it? So Alice and Bob have invented a new game to play. The rules are as follows. First, they get a set of n distinct integers. And then they take turns to make the following moves. During each move, either Alice or Bob (the player whose turn is the current) can choose two di...
from sys import stdin,stdout from math import gcd nmbr = lambda: int(stdin.readline()) lst = lambda: list(map(int,stdin.readline().split())) for _ in range(1):#nmbr()): n=nmbr() a=lst() g=a[0] for v in a[1:]: g=gcd(g,v) mx=max(a) terms=abs(n-mx//g) print('Alice' if terms&1 else 'Bob'...
{ "input": [ "2\n2 3\n", "3\n5 6 7\n", "2\n5 3\n", "10\n78 66 6 60 18 84 36 96 72 48\n", "2\n1 1000000000\n", "2\n10 4\n", "2\n2 6\n", "2\n6 2\n", "10\n72 96 24 66 6 18 12 30 60 48\n", "3\n4 12 18\n", "2\n1000000000 999999999\n", "4\n2 3 15 30\n", "2\n4 6\n", "1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: It is so boring in the summer holiday, isn't it? So Alice and Bob have invented a new game to play. The rules are as follows. First, they get a set of n distinct integers. And then th...
440_B. Balancer_17193
Petya has k matches, placed in n matchboxes lying in a line from left to right. We know that k is divisible by n. Petya wants all boxes to have the same number of matches inside. For that, he can move a match from its box to the adjacent one in one move. How many such moves does he need to achieve the desired configura...
import os import sys from io import BytesIO, IOBase BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = "x" in file.mode or "r" not in file.mode self.write = self.buffer.write if self.wri...
{ "input": [ "6\n1 6 2 5 3 7\n", "20\n1 1 1 1 1 1 1 1 1 1 999999999 999999999 999999999 999999999 999999999 999999999 999999999 999999999 999999999 999999999\n", "20\n1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 2 2 2 2 2 2 2 2 2 2\n", "...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Petya has k matches, placed in n matchboxes lying in a line from left to right. We know that k is divisible by n. Petya wants all boxes to have the same number of matches inside. For ...
462_D. Appleman and Tree_17197
Appleman has a tree with n vertices. Some of the vertices (at least one) are colored black and other vertices are colored white. Consider a set consisting of k (0 ≤ k < n) edges of Appleman's tree. If Appleman deletes these edges from the tree, then it will split into (k + 1) parts. Note, that each part will be a tree...
n = int(input()) edges = [int(x) for x in input().split()] color = [int(x) for x in input().split()] graph = [[] for _ in range(n)] for a,b in enumerate(edges): graph[a+1].append(b) graph[b].append(a+1) dp = [[0]*2 for _ in range(n)] visited = [0]*n stack = [0] while stack: v = stack[-1] visited[v] = ...
{ "input": [ "3\n0 0\n0 1 1\n", "10\n0 1 2 1 4 4 4 0 8\n0 0 0 1 0 1 1 0 0 1\n", "6\n0 1 1 0 4\n1 1 0 0 1 0\n", "5\n0 1 1 3\n0 0 0 1 1\n", "2\n0\n1 0\n", "100\n0 0 2 2 0 3 5 0 6 2 0 4 0 2 3 7 8 3 15 19 13 8 18 19 3 14 23 9 6 3 6 17 26 24 20 6 4 27 8 5 14 5 35 31 27 3 41 25 20 14 25 31 49 40 0 1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Appleman has a tree with n vertices. Some of the vertices (at least one) are colored black and other vertices are colored white. Consider a set consisting of k (0 ≤ k < n) edges of A...
486_C. Palindrome Transformation_17201
Nam is playing with a string on his computer. The string consists of n lowercase English letters. It is meaningless, so Nam decided to make the string more beautiful, that is to make it be a palindrome by using 4 arrow keys: left, right, up, down. There is a cursor pointing at some symbol of the string. Suppose that c...
import sys input=sys.stdin.readline n,p=map(int,input().split()) s=input().rstrip() if p>=n//2: s=s[::-1] p=n+1-p p-=1 ans1=0;ans2=0 l=10**6;r=-1 for i in range(n//2): if s[i]!=s[n-1-i]: l=min(l,i) r=max(r,i) use=set() if l<=p<=r: if r!=-1: for i in range(p,r+1): if s[i]!=s[n-1-i] and i not in...
{ "input": [ "8 3\naeabcaez\n", "5 5\npjfjb\n", "10 5\nabcdeedcba\n", "1 1\nd\n", "2 2\nat\n", "4 4\nrkoa\n", "10 4\nabcddddcef\n", "46 29\nxxzkzsxlyhotmfjpptrilatgtqpyshraiycmyzzlrcllvu\n", "198 3\ntuxqalctjyegbvouezfiqoeoazizhmjhpcmvyvjkyrgxkeupwcmvzcosdrrfgtdmxwfttxjxsbaspjwftgp...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Nam is playing with a string on his computer. The string consists of n lowercase English letters. It is meaningless, so Nam decided to make the string more beautiful, that is to make ...
50_B. Choosing Symbol Pairs_17205
There is a given string S consisting of N symbols. Your task is to find the number of ordered pairs of integers i and j such that 1. 1 ≤ i, j ≤ N 2. S[i] = S[j], that is the i-th symbol of string S is equal to the j-th. Input The single input line contains S, consisting of lowercase Latin letters and digits. It is ...
''' Solução de Problemas Computacionais - 2017/01 Carolina Coimbra Vieira - 2014032941 PROBLEMA: Choosing Symbol Pairs (Codeforces_CF50B) O problema consiste em ler uma string S de tamanho N e determinar a quantidade de pares (i,j) que podem ser formados de forma que 1 <= i, j <= N e S[i] = S[j]. Como os casos de tes...
{ "input": [ "aaaaaaaaaa\n", "great10\n", "zazaeeeeeeeq34443333444tttttt\n", "abcdefghijklmnopqrstuvwxyz0987654321abcdefghijklmnopqrstuvwxyz0987654321abcdefghijklmnopqrstuvwxyz0987654321\n", "233444\n", "00000000000000000000000\n", "999000888775646453342311\n", "aabb\n", "129a\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There is a given string S consisting of N symbols. Your task is to find the number of ordered pairs of integers i and j such that 1. 1 ≤ i, j ≤ N 2. S[i] = S[j], that is the i-th sy...
534_D. Handshakes_17209
On February, 30th n students came in the Center for Training Olympiad Programmers (CTOP) of the Berland State University. They came one by one, one after another. Each of them went in, and before sitting down at his desk, greeted with those who were present in the room by shaking hands. Each of the students who came in...
def read_int(): return int(input().strip()) def read_ints(): return list(map(int, input().strip().split(' '))) def solve(): """ 4 2 1 3 5 0 2 3 4 1 1 0 2 2 x x x x x x x x x 1 5 8 3 4 2 7 6 9 10 0 3 4 2 0 1 2 3 4 5 """ N = read_int() shakes = [[] for _ in range(N)] ...
{ "input": [ "9\n0 2 3 4 1 1 0 2 2\n", "5\n2 1 3 0 1\n", "4\n0 2 1 1\n", "54\n4 17 18 15 6 0 12 19 20 21 19 14 23 20 7 19 0 2 13 18 2 1 0 1 0 5 11 10 1 16 8 21 20 1 16 1 1 0 15 2 22 2 2 2 18 0 3 9 1 20 19 14 0 2\n", "6\n0 1 2 1 2 0\n", "7\n3 0 0 4 2 2 1\n", "123\n114 105 49 11 115 106 92 7...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: On February, 30th n students came in the Center for Training Olympiad Programmers (CTOP) of the Berland State University. They came one by one, one after another. Each of them went in...
585_B. Phillip and Trains_17215
The mobile application store has a new game called "Subway Roller". The protagonist of the game Philip is located in one end of the tunnel and wants to get out of the other one. The tunnel is a rectangular field consisting of three rows and n columns. At the beginning of the game the hero is in some cell of the leftmo...
# import sys # sys.stdin = open('cf586d.in') def handle_test(): n, k = [int(v) for v in input().split()] field = [input() for _ in range(3)] if field[0][0] == 's': cpos = [0, 0] elif field[1][0] == 's': cpos = [1, 0] else: cpos = [2, 0] available = [[False] * len(field[0]) for _ in range(...
{ "input": [ "2\n10 4\ns.ZZ......\n.....AAABB\n.YYYYYY...\n10 4\ns.ZZ......\n....AAAABB\n.YYYYYY...\n", "2\n16 4\n...AAAAA........\ns.BBB......CCCCC\n........DDDDD...\n16 4\n...AAAAA........\ns.BBB....CCCCC..\n.......DDDDD....\n", "1\n100 26\ns................PPPP.CCCCC..UUUUUU.........YYYQQQQQQQ...GGGGG....
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: The mobile application store has a new game called "Subway Roller". The protagonist of the game Philip is located in one end of the tunnel and wants to get out of the other one. The ...
607_B. Zuma_17219
Genos recently installed the game Zuma on his phone. In Zuma there exists a line of n gemstones, the i-th of which has color ci. The goal of the game is to destroy all the gemstones in the line as quickly as possible. In one second, Genos is able to choose exactly one continuous substring of colored gemstones that is ...
dp=[] def calculate(i,j,colors): if i>j: return 0 if dp[i][j]==-1: if i==j: return 1 dp[i][j] = 10000 dp[i][j] = min(dp[i][j],1+calculate(i+1,j,colors)) # print(i,j) if colors[i]==colors[i+1]: dp[i][j] = min(dp[i][j],1+calculate(i+2,j,colors)) ...
{ "input": [ "3\n1 2 3\n", "3\n1 2 1\n", "7\n1 4 4 2 3 2 1\n", "50\n30 17 31 15 10 3 39 36 5 29 16 11 31 2 38 1 32 40 7 15 39 34 24 11 4 23 9 35 39 32 4 5 14 37 10 34 11 33 30 14 4 34 23 10 34 34 26 34 26 16\n", "2\n1 2\n", "50\n13 17 20 5 14 19 4 17 9 13 10 19 16 13 17 2 18 3 1 9 19 4 19 10 1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Genos recently installed the game Zuma on his phone. In Zuma there exists a line of n gemstones, the i-th of which has color ci. The goal of the game is to destroy all the gemstones i...
629_A. Far Relative’s Birthday Cake_17223
Door's family is going celebrate Famil Doors's birthday party. They love Famil Door so they are planning to make his birthday cake weird! The cake is a n × n square consisting of equal squares with side length 1. Each square is either empty or consists of a single chocolate. They bought the cake and randomly started t...
def fac(n): S=1 for i in range(1,n+1): S=S*i return(S) def comb(n,p): return int((fac(n)/(fac(p)*fac(n-p)))) n=int(input()) d=[] somme=0 for i in range(n): ch=input() d.append(ch) S=0 for j in range(len(ch)): if ch[j]=="C": S=S+1 somme=somme+comb(S,2) for ...
{ "input": [ "4\nCC..\nC..C\n.CC.\n.CC.\n", "3\n.CC\nC..\nC.C\n", "7\n.CC..CC\nCC.C..C\nC.C..C.\nC...C.C\nCCC.CCC\n.CC...C\n.C.CCC.\n", "3\nC..\nC..\nC..\n", "20\nC.C.CCC.C....C.CCCCC\nC.CC.C..CCC....CCCC.\n.CCC.CC...CC.CCCCCC.\n.C...CCCC..C....CCC.\n.C..CCCCCCC.C.C.....\nC....C.C..CCC.C..CCC\n......
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Door's family is going celebrate Famil Doors's birthday party. They love Famil Door so they are planning to make his birthday cake weird! The cake is a n × n square consisting of equ...
653_B. Bear and Compressing_17227
Limak is a little polar bear. Polar bears hate long strings and thus they like to compress them. You should also know that Limak is so young that he knows only first six letters of the English alphabet: 'a', 'b', 'c', 'd', 'e' and 'f'. You are given a set of q possible operations. Limak can perform them in any order, ...
# You lost the game. n, q = map(int, input().split()) L = [list(str(input()).split(" ")) for _ in range(q)] A = [[] for _ in range(6)] B = "abcdef" for i in range(q): e = B.index(L[i][1]) A[e] = A[e] + [L[i][0]] R = [1,0,0,0,0,0] for i in range(1,n): K = [0,0,0,0,0,0] for j in range(6): for k i...
{ "input": [ "6 2\nbb a\nba a\n", "2 8\naf e\ndc d\ncc f\nbc b\nda b\neb a\nbb b\nff c\n", "3 5\nab a\ncc c\nca a\nee c\nff d\n", "6 36\nac a\naf a\ndb a\nab a\ncb a\nef a\nad a\nbd a\nfe a\nde a\nbe a\nbb a\naa a\nae a\ndf a\nbc a\nbf a\nce a\nba a\nfd a\ndc a\neb a\ncd a\nca a\nee a\ncc a\ncf a\ndd ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Limak is a little polar bear. Polar bears hate long strings and thus they like to compress them. You should also know that Limak is so young that he knows only first six letters of th...
701_A. Cards_17233
There are n cards (n is even) in the deck. Each card has a positive integer written on it. n / 2 people will play new card game. At the beginning of the game each player gets two cards, each card is given to exactly one player. Find the way to distribute cards such that the sum of values written of the cards will be ...
n = int(input()) s = list(map(int, input().split())) dif = 2 * sum(s) // n t = [] for i in range(n): for j in range(n): if s[i] + s[j] == dif and i not in t and j not in t and i != j: print(i + 1, j + 1) t.append(i) t.append(j)
{ "input": [ "4\n10 10 10 10\n", "6\n1 5 7 4 4 3\n", "36\n1 10 61 43 27 49 55 33 7 30 45 78 69 34 38 19 36 49 55 11 30 63 46 24 16 68 71 18 11 52 72 24 60 68 8 41\n", "12\n22 83 2 67 55 12 40 93 83 73 12 28\n", "100\n100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There are n cards (n is even) in the deck. Each card has a positive integer written on it. n / 2 people will play new card game. At the beginning of the game each player gets two card...
723_B. Text Document Analysis_17237
Modern text editors usually show some information regarding the document being edited. For example, the number of words, the number of pages, or the number of characters. In this problem you should implement the similar functionality. You are given a string which only consists of: * uppercase and lowercase English...
length = int(input()) string = input() outer = "" inner = "" i = 0 while i < length: if string[i] == '(': i += 1 inner += " " while string[i] != ')': if string[i] != '_' and string[i] != '&': inner += string[i] else: inner += " " ...
{ "input": [ "37\n_Hello_Vasya(and_Petya)__bye_(and_OK)\n", "27\n(LoooonG)__shOrt__(LoooonG)\n", "5\n(___)\n", "37\n_a_(_b___c)__de_f(g_)__h__i(j_k_l)m__\n", "6\na(al)a\n", "20\nm(_)jzay()s()d()T(M)\n", "255\nAf________T_C____t_p(_Ug___Fr_Wg_)j_____x__j_a___Q_____(__p_____M)__J__jj____E__J...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Modern text editors usually show some information regarding the document being edited. For example, the number of words, the number of pages, or the number of characters. In this pro...
745_A. Hongcow Learns the Cyclic Shift_17241
Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has decided to try to make new words from this one. He starts by taking the word he just learned how to spell, and moves the last character ...
from collections import Counter s = input() counter = Counter() for i in range(len(s)): counter[s[i:len(s)] + s[0:i]] = 1 print(sum(counter.values()))
{ "input": [ "abcd\n", "bbb\n", "yzyz\n", "zkqcrhzlzsnwzkqcrhzlzsnwzkqcrhzlzsnwzkqcrhzlzsnw\n", "aabaaabaaabaaabaaabaaabaaabaaabaaabaaabaaabaaaba\n", "xyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxyxy\n", "aaababaab\n", "yehcqdlllqpuxdsaicyjjxiylahgxbygmsopjbxhtimzkashs\n", "zclkj...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has...
768_C. Jon Snow and his Favourite Number_17245
Jon Snow now has to fight with White Walkers. He has n rangers, each of which has his own strength. Also Jon Snow has his favourite number x. Each ranger can fight with a white walker only if the strength of the white walker equals his strength. He however thinks that his rangers are weak and need to improve. Jon now t...
n,k,x=map(int,input().split()) r=list(map(int,input().split())) k%=64 while k: k-=1 r.sort() for i in range(0,n,2):#alternate r[i]^=x print(max(r),min(r))
{ "input": [ "2 100000 569\n605 986\n", "5 1 2\n9 7 11 15 5\n", "11 1003 9\n12 5 10 8 0 6 8 10 12 14 4\n", "5 4 6\n0 2 2 2 3\n", "31 3 4\n7 18 16 14 16 7 13 10 2 3 8 11 20 4 7 1 7 13 17 12 9 8 10 3 11 3 4 8 16 10 3\n", "10 3 5\n1 2 3 4 5 6 7 8 9 10\n", "1 1 100\n923\n", "10 22196 912\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Jon Snow now has to fight with White Walkers. He has n rangers, each of which has his own strength. Also Jon Snow has his favourite number x. Each ranger can fight with a white walker...
792_B. Counting-out Rhyme_17249
n children are standing in a circle and playing the counting-out game. Children are numbered clockwise from 1 to n. In the beginning, the first child is considered the leader. The game is played in k steps. In the i-th step the leader counts out ai people in clockwise order, starting from the next person. The last one ...
n,y=input().split() n=int(n) y=int(y) liste=list(range(1,n+1)) x=0 z=0 liste2=list(map(int,input().split())) while x<y: z=((z+liste2[x])%len(liste)) print(liste[z]) liste.pop(z) x+=1
{ "input": [ "3 2\n2 5\n", "7 5\n10 4 11 4 1\n", "90 10\n1045 8705 6077 3282 1459 9809 383 6206 2674 7274\n", "10 7\n5 10 4 3 8 10 6\n", "2 1\n1\n", "12 10\n76 58 82 54 97 46 17 40 36 15\n", "3 2\n301633543 643389490\n", "6 5\n532623340 628883728 583960589 690950241 488468353\n", "...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: n children are standing in a circle and playing the counting-out game. Children are numbered clockwise from 1 to n. In the beginning, the first child is considered the leader. The gam...
812_D. Sagheer and Kindergarten_17252
Sagheer is working at a kindergarten. There are n children and m different toys. These children use well-defined protocols for playing with the toys: * Each child has a lovely set of toys that he loves to play with. He requests the toys one after another at distinct moments of time. A child starts playing if and onl...
from sys import stdin from sys import stdout n, m, k, q = map(int, stdin.readline().split()) d = [None for i in range(m)] roots = set(range(n)) matrix = [[] for i in range(n)] for i in range(k): x, y = map(int, stdin.readline().split()) if d[y - 1] is None: d[y - 1] = x - 1 else: matrix[d[y...
{ "input": [ "5 4 7 2\n1 1\n2 2\n2 1\n5 1\n3 3\n4 4\n4 1\n5 3\n5 4\n", "3 3 5 1\n1 1\n2 2\n3 3\n1 2\n2 3\n3 1\n", "13 18 27 13\n1 1\n1 2\n1 3\n1 4\n1 17\n2 5\n2 1\n3 6\n3 2\n5 14\n5 3\n4 4\n6 9\n6 3\n7 8\n7 3\n8 7\n8 9\n10 11\n10 18\n11 10\n11 15\n11 11\n9 12\n9 11\n12 10\n13 15\n6 8\n6 14\n6 1\n6 17\n6 1...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Sagheer is working at a kindergarten. There are n children and m different toys. These children use well-defined protocols for playing with the toys: * Each child has a lovely set ...
838_D. Airplane Arrangements_17256
There is an airplane which has n rows from front to back. There will be m people boarding this airplane. This airplane has an entrance at the very front and very back of the plane. Each person has some assigned seat. It is possible for multiple people to have the same assigned seat. The people will then board the pla...
MOD = 10 ** 9 + 7 n, m = input().split(' ') n = int(n) m = int(m) ans = pow(2 * (n + 1), m, MOD) ans = (ans * (n + 1 - m)) % MOD ans = (ans * pow(n + 1, MOD - 2, MOD)) % MOD print(ans)
{ "input": [ "3 3\n", "175236 173750\n", "646205 361804\n", "284114 73851\n", "261457 212062\n", "3745 1612\n", "519169 430233\n", "976535 433238\n", "896437 604720\n", "784160 282537\n", "942045 878421\n", "43657 852\n", "921643 744360\n", "361284 5729\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There is an airplane which has n rows from front to back. There will be m people boarding this airplane. This airplane has an entrance at the very front and very back of the plane. ...
859_A. Declined Finalists_17259
This year, as in previous years, MemSQL is inviting the top 25 competitors from the Start[c]up qualification round to compete onsite for the final round. Not everyone who is eligible to compete onsite can afford to travel to the office, though. Initially the top 25 contestants are invited to come onsite. Each eligible ...
#!/usr/bin/python3 k = int(input()) a = set(map(int, input().split())) c = 1 while len(a) < 25: if c not in a: a.add(c) else: c += 1 b = list(a) b.sort() ans = 0 y = 0 for x in b: ans += x - y - 1 y = x print(ans)
{ "input": [ "25\n2 3 4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 22 23 24 25 26 28\n", "3\n14 15 92\n", "5\n16 23 8 15 4\n", "1\n1\n", "25\n3 4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 22 23 24 25 26 28 2\n", "25\n13 15 24 2 21 18 9 4 16 6 10 25 20 11 23 17 8 3 1 12 5 19 22 14 7\n", "4...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: This year, as in previous years, MemSQL is inviting the top 25 competitors from the Start[c]up qualification round to compete onsite for the final round. Not everyone who is eligible ...
883_M. Quadcopter Competition_17263
Polycarp takes part in a quadcopter competition. According to the rules a flying robot should: * start the race from some point of a field, * go around the flag, * close cycle returning back to the starting point. Polycarp knows the coordinates of the starting point (x1, y1) and the coordinates of the poin...
x1, y1 = map(int, input().split()) x2, y2 = map(int, input().split()) if x1 != x2 and y1 != y2: ans = abs(x1 - x2) + abs(y1 - y2) + 2 print(ans * 2) else: ans = abs(x1 - x2) + abs(y1 - y2) + 3 print(ans * 2)
{ "input": [ "0 1\n0 0\n", "1 5\n5 2\n", "24 41\n24 42\n", "41 -82\n-33 -15\n", "1 1\n0 1\n", "-90 -54\n9 -9\n", "-100 100\n-100 -100\n", "100 -100\n-100 100\n", "-68 26\n-2 6\n", "25 76\n24 76\n", "-20 34\n-9 55\n", "-53 63\n-53 62\n", "-30 94\n31 -58\n", "18 -...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Polycarp takes part in a quadcopter competition. According to the rules a flying robot should: * start the race from some point of a field, * go around the flag, * close cycl...
908_B. New Year and Buggy Bot_17267
Bob programmed a robot to navigate through a 2d maze. The maze has some obstacles. Empty cells are denoted by the character '.', where obstacles are denoted by '#'. There is a single robot in the maze. Its start position is denoted with the character 'S'. This position has no obstacle in it. There is also a single ex...
res = 0 n, m = map(int, input().split()) a = ['#' * (m + 2)] + ['#' + input() + '#' for i in range(n)] + ['#' * (m + 2)] s = input() start = [] fin = [] for i in range(n + 2): for j in range(m + 2): if a[i][j] == 'S': start = [i, j] if a[i][j] == 'E': fin = [i, j] def gen(...
{ "input": [ "5 6\n.....#\nS....#\n.#....\n.#....\n...E..\n333300012\n", "6 6\n......\n......\n..SE..\n......\n......\n......\n01232123212302123021\n", "5 3\n...\n.S.\n###\n.E.\n...\n3\n", "2 2\n#E\nS.\n01\n", "3 3\nE..\n.S.\n...\n001123110023221103\n", "3 5\n....S\n....#\n....E\n0112\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Bob programmed a robot to navigate through a 2d maze. The maze has some obstacles. Empty cells are denoted by the character '.', where obstacles are denoted by '#'. There is a singl...
92_A. Chips_17271
There are n walruses sitting in a circle. All of them are numbered in the clockwise order: the walrus number 2 sits to the left of the walrus number 1, the walrus number 3 sits to the left of the walrus number 2, ..., the walrus number 1 sits to the left of the walrus number n. The presenter has m chips. The presenter...
n, m = [int(x) for x in input().split()] m %= int(n*(n+1)/2) for i in range(1,n): if m<i: break m -= i print(m)
{ "input": [ "4 11\n", "17 107\n", "3 8\n", "36 6218\n", "46 7262\n", "44 7888\n", "17 4248\n", "4 7455\n", "29 7772\n", "32 6864\n", "50 50\n", "25 9712\n", "50 1\n", "45 9465\n", "50 9555\n", "1 9058\n", "50 10000\n", "9 7601\n", "36 880\n"...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There are n walruses sitting in a circle. All of them are numbered in the clockwise order: the walrus number 2 sits to the left of the walrus number 1, the walrus number 3 sits to the...
958_A2. Death Stars (medium)_17275
The stardate is 1983, and Princess Heidi is getting better at detecting the Death Stars. This time, two Rebel spies have yet again given Heidi two maps with the possible locations of the Death Star. Since she got rid of all double agents last time, she knows that both maps are correct, and indeed show the map of the so...
n, m = [int(x) for x in input().split()] list1 = [] list2 = [] for i in range(n): list1.append(input()) for j in range(m): list2.append(input()) list3 = [] for i in range(n - m + 1): y = "" for j in range(m): y += list1[j + i] list3.append(y) list4 = [] for i in range(n - m + 1): y = ...
{ "input": [ "10 5\nsomer\nandom\nnoise\nmayth\neforc\nebewi\nthyou\nhctwo\nagain\nnoise\nsomermayth\nandomeforc\nnoiseebewi\nagainthyou\nnoisehctwo\n", "1 1\ng\ng\n", "10 5\nsomer\nandom\nnoise\nmayth\neforc\nebewi\nthyou\nhctwo\nagain\nooise\nsomermayth\nandomeforc\nnoiseebewi\nagainthyou\nnoisehctwo\n"...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: The stardate is 1983, and Princess Heidi is getting better at detecting the Death Stars. This time, two Rebel spies have yet again given Heidi two maps with the possible locations of ...
983_A. Finite or not?_17279
You are given several queries. Each query consists of three integers p, q and b. You need to answer whether the result of p/q in notation with base b is a finite fraction. A fraction in notation with base b is finite if it contains finite number of numerals after the decimal point. It is also possible that a fraction ...
import sys import math ini = lambda: int(sys.stdin.readline()) inl = lambda: [int(x) for x in sys.stdin.readline().split()] def solve(): p, q, b = inl() if p == 0: return True g = math.gcd(p, q) p //= g q //= g if q == 1: return True return pow(b, 64, q) == 0 n = ini() f...
{ "input": [ "2\n6 12 10\n4 3 10\n", "4\n1 1 2\n9 36 2\n4 12 3\n3 5 4\n", "1\n1 864691128455135232 2\n", "1\n1 4294967297 4294967296\n", "10\n10 5 3\n1 7 10\n7 5 7\n4 4 9\n6 5 2\n6 7 5\n9 9 7\n7 5 5\n6 6 4\n10 8 2\n", "11\n1 1000000000000000000 10000000\n2 999 9\n2 999 333111\n0 9 7\n17 128 2\...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given several queries. Each query consists of three integers p, q and b. You need to answer whether the result of p/q in notation with base b is a finite fraction. A fraction...
p02564 AtCoder Library Practice Contest - SCC_17293
You are given a directed graph with N vertices and M edges, not necessarily simple. The i-th edge is oriented from the vertex a_i to the vertex b_i. Divide this graph into strongly connected components and print them in their topological order. Constraints * 1 \leq N \leq 500,000 * 1 \leq M \leq 500,000 * 0 \leq a_i,...
class csr: def __init__(self,N,edges): self.start = [0]*(N+1) self.elist = [0]*len(edges) for e in edges: self.start[e[0]+1] += 1 for i in range(1,N+1): self.start[i] += self.start[i-1] counter = self.start[:] for e in edges: self....
{ "input": [ "6 7\n1 4\n5 2\n3 0\n5 5\n4 1\n0 3\n4 2", "6 7\n0 4\n5 2\n3 0\n5 5\n4 1\n0 3\n4 2", "6 7\n1 4\n5 2\n5 0\n5 5\n4 1\n0 3\n4 2", "6 7\n0 4\n5 2\n3 0\n5 5\n0 1\n0 3\n4 2", "6 5\n0 4\n5 2\n3 0\n5 5\n0 1\n0 3\n4 2", "6 7\n1 5\n5 2\n3 0\n5 5\n4 1\n0 3\n4 2", "6 7\n0 4\n5 2\n5 0\n5 5\...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given a directed graph with N vertices and M edges, not necessarily simple. The i-th edge is oriented from the vertex a_i to the vertex b_i. Divide this graph into strongly co...
p02695 AtCoder Beginner Contest 165 - Many Requirements_17297
Given are positive integers N, M, Q, and Q quadruples of integers ( a_i , b_i , c_i , d_i ). Consider a sequence A satisfying the following conditions: * A is a sequence of N positive integers. * 1 \leq A_1 \leq A_2 \le \cdots \leq A_N \leq M. Let us define a score of this sequence as follows: * The score is the ...
from itertools import combinations_with_replacement as comb n,m,q = map(int,input().split()) ans = 0 query = [[int(i) for i in input().split()] for _ in range(q)] for A in comb(range(1,m+1),n): cnt = 0 for i in range(q): a,b,c,d = query[i] if A[b-1]-A[a-1] == c: cnt += d ans = max(cnt,ans) p...
{ "input": [ "3 4 3\n1 3 3 100\n1 2 2 10\n2 3 2 10", "10 10 1\n1 10 9 1", "4 6 10\n2 4 1 86568\n1 4 0 90629\n2 3 0 90310\n3 4 1 29211\n3 4 3 78537\n3 4 2 8580\n1 2 1 96263\n1 4 2 2156\n1 2 0 94325\n1 4 3 94328", "10 10 1\n1 10 12 1", "4 6 10\n2 4 1 86568\n1 4 0 90629\n2 3 0 90310\n3 4 1 29211\n3 4...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Given are positive integers N, M, Q, and Q quadruples of integers ( a_i , b_i , c_i , d_i ). Consider a sequence A satisfying the following conditions: * A is a sequence of N positi...
p02824 AtCoder Grand Contest 041 - Voting Judges_17301
N problems are proposed for an upcoming contest. Problem i has an initial integer score of A_i points. M judges are about to vote for problems they like. Each judge will choose exactly V problems, independently from the other judges, and increase the score of each chosen problem by 1. After all M judges cast their vo...
import sys read = sys.stdin.buffer.read input = sys.stdin.buffer.readline inputs = sys.stdin.buffer.readlines # mod=10**9+7 # rstrip().decode('utf-8') # map(int,input().split()) #import numpy as np def main(): n,m,v,p=map(int,input().split()) A=list(map(int,input().split())) A.sort(reverse=True) teki=A[p-1] ...
{ "input": [ "6 1 2 2\n2 1 1 3 0 2", "10 4 8 5\n7 2 3 6 1 6 5 4 6 5", "6 1 5 2\n2 1 1 3 0 2", "6 1 2 2\n2 1 1 5 0 2", "10 4 8 5\n7 2 3 4 1 6 5 4 6 5", "6 1 5 2\n2 1 1 3 1 2", "6 1 2 2\n2 1 1 5 0 0", "10 4 8 5\n7 2 6 4 1 6 5 4 6 5", "6 1 2 4\n2 1 1 5 0 0", "10 4 5 5\n7 2 6 4 1 6...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: N problems are proposed for an upcoming contest. Problem i has an initial integer score of A_i points. M judges are about to vote for problems they like. Each judge will choose exact...
p02960 AtCoder Beginner Contest 135 - Digits Parade_17305
Given is a string S. Each character in S is either a digit (`0`, ..., `9`) or `?`. Among the integers obtained by replacing each occurrence of `?` with a digit, how many have a remainder of 5 when divided by 13? An integer may begin with 0. Since the answer can be enormous, print the count modulo 10^9+7. Constraints...
M = 10**9 + 7 a = [1] + [0] * 12 p = 1 for c in reversed(input()): r = range(10) if c == '?' else (int(c),) a = [sum(a[(i - p * j) % 13] for j in r) % M for i in range(13)] p = p * 10 % 13 print(a[5])
{ "input": [ "7?4", "??2??5", "?6?42???8??2??06243????9??3???7258??5??7???????774????4?1??17???9?5?70???76???", "?44", "74?", "??1??5", "?6?42???8??29?06243????9??3???7258??5??7???????774????4?1??17?????5?70???76???", "??1??6", "???67???07?5?????71??1?4????477???????7??5??8527???3?...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Given is a string S. Each character in S is either a digit (`0`, ..., `9`) or `?`. Among the integers obtained by replacing each occurrence of `?` with a digit, how many have a remai...
p03096 AtCoder Grand Contest 031 - Reversi_17309
There are N stones arranged in a row. The i-th stone from the left is painted in the color C_i. Snuke will perform the following operation zero or more times: * Choose two stones painted in the same color. Repaint all the stones between them, with the color of the chosen stones. Find the number of possible final s...
from collections import defaultdict import sys input = sys.stdin.buffer.readline mod = 10**9+7 N = int(input()) dp = [0] * (N+1) dp[0] = 1 prev = defaultdict(lambda: -1) for i in range(1, N+1): c = int(input()) dp[i] = dp[i-1] if prev[c] >= 0: if prev[c] != i-1: dp[i] = (dp[i] + dp[prev...
{ "input": [ "6\n4\n2\n5\n4\n2\n4", "5\n1\n2\n1\n2\n2", "7\n1\n3\n1\n2\n3\n3\n2", "6\n4\n2\n2\n4\n2\n4", "5\n1\n4\n1\n2\n2", "6\n4\n2\n2\n1\n2\n4", "6\n4\n1\n2\n1\n2\n4", "7\n1\n2\n1\n2\n3\n3\n2", "6\n3\n2\n2\n2\n2\n4", "7\n1\n3\n1\n2\n1\n3\n2", "7\n1\n3\n1\n2\n4\n3\n2", ...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There are N stones arranged in a row. The i-th stone from the left is painted in the color C_i. Snuke will perform the following operation zero or more times: * Choose two stones pa...
p03242 AtCoder Beginner Contest 111 - AtCoder Beginner Contest 999_17313
Cat Snuke is learning to write characters. Today, he practiced writing digits `1` and `9`, but he did it the other way around. You are given a three-digit integer n written by Snuke. Print the integer obtained by replacing each digit `1` with `9` and each digit `9` with `1` in n. Constraints * 111 \leq n \leq 999 * ...
s = input() print(s.translate(str.maketrans({"1": "9", "9": "1"})))
{ "input": [ "119", "999", "191", "111", "199", "111", "199", "191" ], "output": [ "991", "111", "919\n", "999\n", "911\n", "999\n", "911\n", "919\n" ] }
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Cat Snuke is learning to write characters. Today, he practiced writing digits `1` and `9`, but he did it the other way around. You are given a three-digit integer n written by Snuke....
p03395 AtCoder Grand Contest 022 - Remainder Game_17317
Aoki is playing with a sequence of numbers a_{1}, a_{2}, ..., a_{N}. Every second, he performs the following operation : * Choose a positive integer k. For each element of the sequence v, Aoki may choose to replace v with its remainder when divided by k, or do nothing with v. The cost of this operation is 2^{k} (regar...
# -*- coding: utf-8 -*- def inpl(): return tuple(map(int, input().split())) N = int(input()) A = inpl() B = inpl() for a, b in zip(A, B): if a < b: print(-1) exit() M = max(max(A), max(B)) S = [i for i in range(1, M+1)] T = len(S) def dfs(a, b, G): visited = [False]*(M+1) Q = [a]...
{ "input": [ "1\n50\n13", "3\n19 15 14\n0 0 0", "3\n19 10 14\n0 3 4", "4\n2 0 1 8\n2 0 1 8", "2\n8 13\n5 13", "1\n28\n13", "3\n19 15 5\n0 0 0", "3\n23 10 14\n0 3 4", "2\n8 13\n5 10", "1\n28\n11", "3\n23 10 14\n0 4 4", "1\n28\n3", "3\n23 10 26\n0 4 4", "2\n8 13\n...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Aoki is playing with a sequence of numbers a_{1}, a_{2}, ..., a_{N}. Every second, he performs the following operation : * Choose a positive integer k. For each element of the sequen...
p03559 AtCoder Regular Contest 084 - Snuke Festival_17321
The season for Snuke Festival has come again this year. First of all, Ringo will perform a ritual to summon Snuke. For the ritual, he needs an altar, which consists of three parts, one in each of the three categories: upper, middle and lower. He has N parts for each of the three categories. The size of the i-th upper ...
def main(n,a,b,c): import bisect ans=0 for i in range(n): na=bisect.bisect_left(a,b[i]) nc=n-bisect.bisect_right(c,b[i]) ans+=na*nc print(ans) if __name__=='__main__': n=int(input()) a=sorted(list(map(int,input().split()))) b=sorted(list(map(int,input().split()))) c=sorted(list(map(int,input...
{ "input": [ "3\n1 1 1\n2 2 2\n3 3 3", "2\n1 5\n2 4\n3 6", "6\n3 14 159 2 6 53\n58 9 79 323 84 6\n2643 383 2 79 50 288", "3\n1 0 1\n2 2 2\n3 3 3", "2\n1 5\n2 4\n2 6", "6\n3 14 159 2 6 53\n58 9 7 323 84 6\n2643 383 2 79 50 288", "3\n1 0 2\n2 2 2\n3 3 3", "2\n2 5\n2 4\n2 6", "6\n3 14...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: The season for Snuke Festival has come again this year. First of all, Ringo will perform a ritual to summon Snuke. For the ritual, he needs an altar, which consists of three parts, on...
p03713 AtCoder Beginner Contest 062 - Chocolate Bar_17325
There is a bar of chocolate with a height of H blocks and a width of W blocks. Snuke is dividing this bar into exactly three pieces. He can only cut the bar along borders of blocks, and the shape of each piece must be a rectangle. Snuke is trying to divide the bar as evenly as possible. More specifically, he is trying...
h,w = sorted(list(map(int,input().split()))) if h % 3 == 0 or w % 3 == 0: ans = 0 else: c1 = ((w//3+1)*h)-((w-1-w//3)*(h//2)) c2 = ((w-w//3)*(h-h//2))-(w//3*h) c3 = h c4 = ((h//3+1)*w)-((h-1-h//3)*(w//2)) c5 = ((h-h//3)*(w-w//2))-(h//3*w) ans = min(c1,c2,c3,c4,c5) print(ans)
{ "input": [ "3 5", "100000 100000", "100000 2", "5 5", "4 5", "100100 100000", "000000 2", "5 1", "100100 110000", "100111 100001", "100111 000101", "000011 001100", "000010 011000", "010010 011110", "011000 110111", "001000 110101", "001010 110101"...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: There is a bar of chocolate with a height of H blocks and a width of W blocks. Snuke is dividing this bar into exactly three pieces. He can only cut the bar along borders of blocks, a...
p03874 CODE FESTIVAL 2016 Grand Final - FESTIVAL_17328
Welcome to CODE FESTIVAL 2016! In order to celebrate this contest, find a string s that satisfies the following conditions: * The length of s is between 1 and 5000, inclusive. * s consists of uppercase letters. * s contains exactly K occurrences of the string "FESTIVAL" as a subsequence. In other words, there are exac...
import math import sys input = sys.stdin.readline k = int(input()) n = 512 pattern = 0 a = [] for i in range(n): val = math.factorial(7 + i) // math.factorial(i) // math.factorial(7) a.append(val) a.reverse() cnt = 600 * 7 ans = ["FESTIVA" for _ in range(n)] for i, item in enumerate(a): ans[i] += ("L" *...
{ "input": [ "7", "256", "3", "454", "6", "754", "0", "819", "928", "1486", "1008", "2009", "1", "1838", "2", "627", "4", "837", "10", "1538", "13", "1441", "5", "1111", "1101", "1001", "1011", "1000", ...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Welcome to CODE FESTIVAL 2016! In order to celebrate this contest, find a string s that satisfies the following conditions: * The length of s is between 1 and 5000, inclusive. * s co...
p04035 AtCoder Grand Contest 002 - Knot Puzzle_17332
We have N pieces of ropes, numbered 1 through N. The length of piece i is a_i. At first, for each i (1≤i≤N-1), piece i and piece i+1 are tied at the ends, forming one long rope with N-1 knots. Snuke will try to untie all of the knots by performing the following operation repeatedly: * Choose a (connected) rope with a...
N, L = map(int, input().split()) a = [int(x) for x in input().split()] ans = False for i in range(N-1): if a[i] + a[i+1] >= L: ans = True break if ans: print('Possible') for j in range(i): print(j+1) for j in range(N-2, i-1, -1): print(j+1) else: print('Impossible')
{ "input": [ "3 50\n30 20 10", "5 50\n10 20 30 40 50", "2 21\n10 10", "3 50\n30 17 10", "5 50\n10 20 30 40 88", "2 21\n10 20", "3 50\n55 17 10", "5 80\n10 20 30 40 50", "5 50\n10 20 29 51 104", "5 30\n10 20 29 51 104", "3 23\n0 17 18", "2 21\n10 13", "3 50\n34 17 10...
5ATCODER
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: We have N pieces of ropes, numbered 1 through N. The length of piece i is a_i. At first, for each i (1≤i≤N-1), piece i and piece i+1 are tied at the ends, forming one long rope with ...
p00117 A reward for a Carpenter_17336
One day, the lord ordered a carpenter to "build a sturdy and large building where the townspeople could evacuate in the event of a typhoon or earthquake." However, large thick pillars are needed to complete the sturdy and large building. There is no such big pillar in the town. So the carpenter decided to go to a dista...
import sys n = int(input()) m = int(input()) cost = [[float("inf")] * n for _ in range(n)] for _ in range(m): a, b, c, d = map(int, sys.stdin.readline().split(",")) cost[a - 1][b - 1] = c cost[b - 1][a - 1] = d s, g, V, P = map(int, sys.stdin.readline().split(",")) for k in range(n): for i in range(n):...
{ "input": [ "6\n8\n1,2,2,2\n1,3,4,3\n1,4,4,2\n2,5,3,2\n3,4,4,2\n3,6,1,2\n4,6,1,1\n5,6,1,2\n2,4,50,30", "6\n8\n1,2,2,2\n1,3,4,3\n1,4,4,2\n2,5,3,2\n3,4,4,2\n3,6,1,2\n4,6,1,1\n5,6,2,2\n2,4,50,30", "6\n8\n1,2,2,2\n1,3,4,3\n1,4,4,2\n2,5,3,2\n3,4,4,2\n3,6,1,2\n4,6,1,1\n2,1,6,5\n2,4,50,30", "6\n8\n1,2,2,2\n...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: One day, the lord ordered a carpenter to "build a sturdy and large building where the townspeople could evacuate in the event of a typhoon or earthquake." However, large thick pillars...
p00250 Scone_17339
Aika's house runs a small coffee shop. The scones baked by Aika's mother were very delicious and the shop was very prosperous. One of the jobs of Aika, a waitress, is to deliver the scones that are baked one after another to the customer's seat. The baked scones are placed on a tray and lined up on the counter. Let Ki...
# AOJ 0254: Scone # Python3 2018.6.25 bal4u s = [0 for i in range(30001)] while True: n, m = map(int, input().split()) if n == 0: break f = [-1 for i in range(m)] sum, nmax, ans = 0, 0, 0 a = list(map(int, input().split())) for i in range(n): sum += a[i] a[i] %= m if a[i] > nmax: nmax = a[i] if a[i] == m...
{ "input": [ "5 11\n11 27 34 45 56\n8 5\n0 2 1 5 4 6 8 3\n5 2\n2 4 2 4 6\n10 18\n10 15 12 31 12 50 11 23 43 181\n1 100\n5\n0 0", "5 11\n11 27 34 45 56\n8 5\n0 2 1 5 4 6 8 3\n5 2\n2 4 2 4 6\n10 18\n10 15 12 31 12 50 11 11 43 181\n1 100\n5\n0 0", "5 11\n7 27 34 45 94\n8 5\n0 2 1 5 4 6 8 3\n5 2\n2 4 2 4 6\n1...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Aika's house runs a small coffee shop. The scones baked by Aika's mother were very delicious and the shop was very prosperous. One of the jobs of Aika, a waitress, is to deliver the ...
p00431 String With Rings_17341
Consider a string with rings on both ends. Rings have positive integers to distinguish them. Rings on both ends of the string have different numbers a and b. Describe this as [a, b]. If there are multiple strings and the number attached to the ring of one string and the other string is the same, these strings can be co...
def solve(): def dfs(ring, chain_len=1): unchecked[ring] = False unvisited[ring] = False len_rec[ring] = max(len_rec[ring], chain_len) for r in adj_list[ring]: if unvisited[r]: dfs(r, chain_len + 1) unvisited[ring] = True import sys fi...
{ "input": [ "7\n1 3\n3 4\n1 4\n2 7\n5 7\n6 7\n1 7\n6\n1 2\n2 3\n3 4\n4 5\n1 5\n2 6\n7\n1 3\n2 4\n3 5\n4 6\n6 7\n2 6\n4 7\n0", "7\n1 3\n3 4\n1 4\n2 7\n5 7\n6 7\n1 7\n6\n1 2\n2 3\n3 4\n4 4\n1 5\n2 6\n7\n1 3\n2 4\n3 5\n4 6\n6 7\n2 6\n4 7\n0", "7\n1 3\n3 4\n1 4\n2 7\n5 7\n6 7\n1 7\n6\n1 2\n2 3\n3 4\n4 6\n1 5...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Consider a string with rings on both ends. Rings have positive integers to distinguish them. Rings on both ends of the string have different numbers a and b. Describe this as [a, b]. ...
p00627 Kyudo: A Japanese Art of Archery_17345
Ito joined the Kyudo club after entering high school. At first, I had a hard time because the arrow didn't reach the target, but in the fall of my first year of high school, I managed to improve to the point where the arrow reached the target. One day, my senior Kato suggested, "Why don't you participate in a recent K...
# AOJ 1041: Kyudo: A Japanese Art of Archery # Python3 2018.7.6 bal4u while True: n = int(input()) if n == 0: break print(sum([int(input()) for i in range(n>>2)]))
{ "input": [ "20\n4\n3\n2\n1\n3\n8\n2\n0\n0", "20\n4\n6\n2\n1\n3\n8\n2\n0\n0", "20\n4\n6\n2\n1\n0\n8\n2\n0\n0", "20\n4\n6\n2\n1\n1\n8\n2\n0\n0", "20\n4\n3\n4\n1\n3\n8\n2\n0\n0", "20\n4\n6\n2\n2\n3\n8\n2\n0\n0", "20\n4\n6\n2\n1\n-1\n8\n2\n0\n0", "20\n4\n6\n2\n1\n0\n8\n2\n1\n0", "20\...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Ito joined the Kyudo club after entering high school. At first, I had a hard time because the arrow didn't reach the target, but in the fall of my first year of high school, I managed...
p00771 Anchored Balloon_17349
Anchored Balloon A balloon placed on the ground is connected to one or more anchors on the ground with ropes. Each rope is long enough to connect the balloon and the anchor. No two ropes cross each other. Figure E-1 shows such a situation. <image> Figure E-1: A balloon and ropes on the ground Now the balloon takes o...
import math,string,itertools,fractions,heapq,collections,re,array,bisect,sys,random,time,copy,functools sys.setrecursionlimit(10**7) inf = 10**20 eps = 1.0 / 10**13 mod = 10**9+7 dd = [(-1,0),(0,1),(1,0),(0,-1)] ddn = [(-1,0),(-1,1),(0,1),(1,1),(1,0),(1,-1),(0,-1),(-1,-1)] def LI(): return [int(x) for x in sys.stdin....
{ "input": [ "3\n10 10 20\n10 -10 20\n-10 10 120\n1\n10 10 16\n2\n10 10 20\n10 -10 20\n2\n100 0 101\n-90 0 91\n2\n0 0 53\n30 40 102\n3\n10 10 20\n10 -10 20\n-10 -10 20\n3\n1 5 13\n5 -3 13\n-3 -3 13\n3\n98 97 168\n-82 -80 193\n-99 -96 211\n4\n90 -100 160\n-80 -80 150\n90 80 150\n80 80 245\n4\n85 -90 290\n-80 -80 2...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Anchored Balloon A balloon placed on the ground is connected to one or more anchors on the ground with ropes. Each rope is long enough to connect the balloon and the anchor. No two r...
p01035 Hard Beans_17354
Problem Beans are popular at Otsu University. N beans are lined up in a straight line. Each is numbered from 0 to N-1, and the hardness of the i-th bean is ai. Cyan considers the ideal bean hardness to be D. However, Cyan doesn't want to go get the beans that are too far away because he is troublesome. Therefore, Cya...
class SegmentTree(object): def __init__(self, a:list, default: int, op): from math import ceil, log real_size = len(a) self.elem_size = elem_size = 1<<ceil(log(real_size, 2)) self.tree = tree = [default] * (elem_size * 2) tree[elem_size:elem_size + real_size] = a sel...
{ "input": [ "3\n1 2 3\n3\n0 2 2\n0 2 4\n0 0 2", "10\n4 5 0 21 9 100 12 9 0 8\n5\n0 3 20\n2 5 100\n8 9 9\n5 5 10\n0 9 20", "3\n1 2 3\n3\n0 2 3\n0 2 4\n0 0 2", "10\n4 5 0 21 9 100 12 9 0 8\n5\n0 3 20\n2 5 101\n8 9 9\n5 5 10\n0 9 20", "10\n4 5 0 21 9 100 12 9 0 6\n5\n0 3 20\n2 5 101\n8 9 9\n5 5 10\n...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Problem Beans are popular at Otsu University. N beans are lined up in a straight line. Each is numbered from 0 to N-1, and the hardness of the i-th bean is ai. Cyan considers the id...
p01634 Register Phase_17361
It is important to use strong passwords to make the Internet more secure. At the same time, it is very important not to reuse the same password. No matter how strong your password is, if the plaintext is leaked in one place, it will be very easy to break. Of course, if all applications hash passwords and use SALT prope...
A=0 n=str(input()) if len(n)>=6: A=A+1 B=n.count('0')+n.count('1')+n.count('2')+n.count('3')+n.count('4')+n.count('5')+n.count('6')+n.count('7')+n.count('8')+n.count('9') if B>0: A=A+1 C=n.count('a')+n.count('b')+n.count('c')+n.count('d')+n.count('e')+n.count('f')+n.count('g')+n.count('h')+n.count('i')+n.count(...
{ "input": [ "password", "passxord", "parsxosd", "parsxpsd", "qarsxpsd", "qarxspsd", "dspsxraq", "qarxspsc", "cspsxraq", "capsxrsq", "capsxqsr", "cspsxqar", "cspsxqas", "csosxqas", "csosxqat", "csoswqat", "taqwsosc", "taqwsorc", "taqvsorc", ...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: It is important to use strong passwords to make the Internet more secure. At the same time, it is very important not to reuse the same password. No matter how strong your password is,...
p02201 Ninja E869120_17369
Increasing E869120 (Ninja E869120) E869120 You are good at alter ego. Here are $ N $ members of the PA Lab. But some of them may be E869120. So you asked all the $ N $ members of the PA Lab for their names. As a result, the $ N $ members named themselves $ S_1, S_2, S_3, \ dots, S_N $, respectively. E869120 How man...
import sys input = sys.stdin.readline N=int(input()) ANS=0 for i in range(N): if input().strip()=="E869120": ANS+=1 print(ANS)
{ "input": [ "5\nE869120\nTMJN\nE869120\nTAISA\nYNYMXIAOLONGBAO", "5\nE869120\nTMJN\nE869120\nASIAT\nYNYMXIAOLONGBAO", "5\nE869120\nTMJN\nE809126\nATIAT\nYNYMXIAOGONLBAO", "5\nE86912/\nTMJN\n621908E\nIATSA\nYNYMXIBOGONLBAO", "5\nE869120\nTMJN\nE869120\nASIAT\nYNYMXIAOGONLBAO", "5\nE869120\nTMJ...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Increasing E869120 (Ninja E869120) E869120 You are good at alter ego. Here are $ N $ members of the PA Lab. But some of them may be E869120. So you asked all the $ N $ members of t...
p02355 The Smallest Window II_17372
For a given array $a_1, a_2, a_3, ... , a_N$ of $N$ elements and an integer $K$, find the smallest sub-array size (smallest window length) where the elements in the sub-array contains all integers in range [$1, 2, ..., K$]. If there is no such sub-array, report 0. Constraints * $1 \leq N \leq 10^5$ * $1 \leq K \leq 1...
class SegmentTree(): def __init__(self, arr, func=min, ie=2**63): self.h = (len(arr) - 1).bit_length() self.n = 2**self.h self.ie = ie self.func = func self.tree = [ie for _ in range(2 * self.n)] for i in range(len(arr)): self.tree[self.n + i] = arr[i] ...
{ "input": [ "3 4\n1 2 3", "6 3\n4 1 2 1 3 5", "6 2\n4 1 2 1 3 5", "0 4\n1 2 3", "6 3\n4 1 2 1 3 8", "6 2\n4 1 2 2 3 5", "6 4\n4 1 0 1 4 2", "7 4\n4 1 0 0 13 2", "7 1\n1 1 0 0 13 2", "9 3\n4 2 2 1 5 16", "7 4\n4 1 1 1 5 2", "1 4\n1 2 3", "9 3\n4 1 2 1 3 8", "6 2...
6AIZU
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: For a given array $a_1, a_2, a_3, ... , a_N$ of $N$ elements and an integer $K$, find the smallest sub-array size (smallest window length) where the elements in the sub-array contains...
1040_A. Palindrome Dance_17384
A group of n dancers rehearses a performance for the closing ceremony. The dancers are arranged in a row, they've studied their dancing moves and can't change positions. For some of them, a white dancing suit is already bought, for some of them — a black one, and for the rest the suit will be bought in the future. On ...
def go(): n, a, b = [int(i) for i in input().split(' ')] x = [int(i) for i in input().split(' ')] total = 0 for i in range(n // 2): if (x[i] == 1 and x[n - 1 - i] == 0) or (x[i] == 0 and x[n - 1 - i] == 1): return -1 elif x[i] == 2 and x[i] == x[n - 1 - i]: total ...
{ "input": [ "3 12 1\n0 1 0\n", "5 100 1\n0 1 2 1 2\n", "3 10 12\n1 2 0\n", "5 55 62\n0 1 1 0 1\n", "2 100 1\n2 2\n", "15 24 41\n0 2 1 1 0 0 1 0 0 0 0 0 0 1 0\n", "2 2 2\n2 2\n", "20 53 67\n1 2 1 2 0 0 0 2 2 2 1 0 0 2 0 0 0 1 1 2\n", "3 2 2\n2 2 2\n", "8 4 13\n2 2 1 2 1 2 2 2\n...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: A group of n dancers rehearses a performance for the closing ceremony. The dancers are arranged in a row, they've studied their dancing moves and can't change positions. For some of t...
1063_A. Oh Those Palindromes_17388
A non-empty string is called palindrome, if it reads the same from the left to the right and from the right to the left. For example, "abcba", "a", and "abba" are palindromes, while "abab" and "xy" are not. A string is called a substring of another string, if it can be obtained from that string by dropping some (possi...
n = int(input()) s = input() k = {} def choose(a, b): if b > a: return 0 p = 1 for i in range(b): p *= a - i for i in range(1, b + 1): p //= i return p for i in range(n): if s[i] in k: k[s[i]] += 1 else: k[s[i]] = 1 #print(k) ans = 0 a = [] for i in ...
{ "input": [ "5\noolol\n", "16\ngagadbcgghhchbdf\n", "2\naz\n", "10\nmsunonames\n", "4\nmems\n", "7\nlolikek\n", "15\nabacabadabacaba\n", "9\nabcabcabc\n", "21\narozaupalanalapuazora\n", "1\nz\n", "6\nmsucmc\n", "2\naa\n", "10\nmsunenamos\n", "4\nmemt\n", "7...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: A non-empty string is called palindrome, if it reads the same from the left to the right and from the right to the left. For example, "abcba", "a", and "abba" are palindromes, while "...
1104_C. Grid game_17394
You are given a 4x4 grid. You play a game — there is a sequence of tiles, each of them is either 2x1 or 1x2. Your task is to consequently place all tiles from the given sequence in the grid. When tile is placed, each cell which is located in fully occupied row or column is deleted (cells are deleted at the same time in...
s = input() f1 = 0; f2 = 0 for i in s: if i=='1' and f1==0: print(1,3); f1=1 elif i=='1' and f1==1: print(1,1) f1=0 elif i=='0' and f2==0: print(3,1); f2=1 elif i=='0' and f2==1: print(1,1); f2=0
{ "input": [ "010\n", "1\n", "010\n", "011110\n", "0\n", "01\n", "110\n", "011111\n", "000\n", "111\n", "001111\n", "100\n", "101\n", "101111\n", "011\n", "001\n", "001101\n", "011010\n", "011011\n", "111111\n", "101011\n", "01110...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given a 4x4 grid. You play a game — there is a sequence of tiles, each of them is either 2x1 or 1x2. Your task is to consequently place all tiles from the given sequence in th...
1132_A. Regular Bracket Sequence_17398
A string is called bracket sequence if it does not contain any characters other than "(" and ")". A bracket sequence is called regular if it it is possible to obtain correct arithmetic expression by inserting characters "+" and "1" into this sequence. For example, "", "(())" and "()()" are regular bracket sequences; ")...
a = int(input()) b = int(input()) c = int(input()) d = int(input()) if a == d: if a > 0 or c == 0: print(1) else: print(0) else: print(0)
{ "input": [ "1\n2\n3\n4\n", "3\n1\n4\n3\n", "0\n0\n0\n0\n", "0\n10\n2\n0\n", "0\n0\n3\n0\n", "0\n1\n5\n0\n", "1\n2\n5\n1\n", "2\n6\n6\n2\n", "0\n1\n10\n0\n", "0\n2\n3\n0\n", "2\n1\n5\n2\n", "2\n0\n1\n2\n", "1\n0\n500\n1\n", "7\n1\n0\n7\n", "1\n2\n11\n1\n", ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: A string is called bracket sequence if it does not contain any characters other than "(" and ")". A bracket sequence is called regular if it it is possible to obtain correct arithmeti...
1152_D. Neko and Aki's Prank_17402
Neko is playing with his toys on the backyard of Aki's house. Aki decided to play a prank on him, by secretly putting catnip into Neko's toys. Unfortunately, he went overboard and put an entire bag of catnip into the toys... It took Neko an entire day to turn back to normal. Neko reported to Aki that he saw a lot of w...
l=[1, 2, 6, 18, 57, 186, 622, 2120, 7338, 25724, 91144, 325878, 1174281, 4260282, 15548694, 57048048, 210295326, 778483932, 892818230, 786724318, 347919346, 355845955, 274146173, 336110626, 508416482, 521006399, 214448866, 997593411, 238896999, 849258736, 819525514, 53182350, 202970081, 945166442, 598349475, 683882441,...
{ "input": [ "2\n", "1\n", "3\n", "12\n", "19\n", "17\n", "11\n", "25\n", "24\n", "22\n", "996\n", "8\n", "1000\n", "9\n", "6\n", "10\n", "20\n", "998\n", "13\n", "26\n", "21\n", "30\n", "18\n", "16\n", "28\n", "5\...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Neko is playing with his toys on the backyard of Aki's house. Aki decided to play a prank on him, by secretly putting catnip into Neko's toys. Unfortunately, he went overboard and put...
1174_B. Ehab Is an Odd Person_17406
You're given an array a of length n. You can perform the following operation on it as many times as you want: * Pick two integers i and j (1 ≤ i,j ≤ n) such that a_i+a_j is odd, then swap a_i and a_j. What is lexicographically the smallest array you can obtain? An array x is [lexicographically smaller](https://...
n = eval(input()) a = list(map(int, input().split())) odd = False even = False for i in range(n): if a[i] & 1: odd = True else: even = True if odd & even: a.sort() for x in a: print(x, end=" ")
{ "input": [ "3\n4 1 7\n", "2\n1 1\n", "3\n3 1 5\n", "3\n3 5 1\n", "36\n398353608 662365068 456456182 594572278 958026500 524977116 903404403 382220192 142092809 137516115 522872496 527845939 116437661 423289717 907151540 961740613 981968938 143206666 773454188 691188206 95402302 602570397 9865083...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You're given an array a of length n. You can perform the following operation on it as many times as you want: * Pick two integers i and j (1 ≤ i,j ≤ n) such that a_i+a_j is odd, th...
1230_D. Marcin and Training Camp_17413
Marcin is a coach in his university. There are n students who want to attend a training camp. Marcin is a smart coach, so he wants to send only the students that can work calmly with each other. Let's focus on the students. They are indexed with integers from 1 to n. Each of them can be described with two integers a_i...
n = int(input()) a = list(map(int,input().split())) b = list(map(int,input().split())) v = [] for i in range(n): v.append([a[i],b[i]]) v.sort() prev = -1 big = [] flag = True for i in v: if prev == i[0] and (flag or big[-1]!=i[0]): big.append(i[0]) flag = False prev = i[0] answer = 0 counter = 0 big.sort() for i...
{ "input": [ "3\n1 2 3\n1 2 3\n", "1\n0\n1\n", "4\n3 2 3 6\n2 8 5 10\n", "10\n206158430208 206162624513 68719476737 137506062337 206162624513 4194305 68719476737 206225539072 137443147777 68719476736\n202243898 470292528 170057449 290025540 127995253 514454151 607963029 768676450 611202521 68834463\n"...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Marcin is a coach in his university. There are n students who want to attend a training camp. Marcin is a smart coach, so he wants to send only the students that can work calmly with ...
1295_A. Display The Number_17419
You have a large electronic screen which can display up to 998244353 decimal digits. The digits are displayed in the same way as on different electronic alarm clocks: each place for a digit consists of 7 segments which can be turned on and off to compose different digits. The following picture describes how you can dis...
import sys def solution(n): if n % 2 == 0: print("1" * (n // 2)) else: print("7" + "1" * (n // 2 - 1)) for line in sys.stdin: t = int(line) break for line in sys.stdin: n = int(line) solution(n)
{ "input": [ "2\n3\n4\n", "100\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n30\n31\n32\n33\n34\n35\n36\n37\n38\n39\n40\n41\n42\n43\n44\n45\n46\n47\n48\n49\n50\n51\n52\n53\n54\n55\n56\n57\n58\n59\n60\n61\n62\n63\n64\n65\n66\n67\n68\n69\n70\n71\n72\n73...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You have a large electronic screen which can display up to 998244353 decimal digits. The digits are displayed in the same way as on different electronic alarm clocks: each place for a...
1316_A. Grade Allocation_17423
n students are taking an exam. The highest possible score at this exam is m. Let a_{i} be the score of the i-th student. You have access to the school database which stores the results of all students. You can change each student's score as long as the following conditions are satisfied: * All scores are integers ...
for i in range(int(input())): print(min(list(map(int, input().split()))[1], sum(list(map(int, input().split())))))
{ "input": [ "2\n4 10\n1 2 3 4\n4 5\n1 2 3 4\n", "27\n1 1\n0\n1 2\n0\n1 5\n0\n1 10\n0\n1 50\n0\n1 100\n0\n1 500\n0\n1 1000\n0\n1 5000\n0\n1 10000\n0\n1 50000\n0\n1 100000\n0\n1 5\n4\n1 5\n5\n1 10\n9\n1 10\n10\n1 100000\n9999\n1 100000\n100000\n1 4999\n386\n1 100000\n1\n4 5\n1 0 0 0\n4 5\n0 1 0 0\n4 5\n0 0 0 0...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: n students are taking an exam. The highest possible score at this exam is m. Let a_{i} be the score of the i-th student. You have access to the school database which stores the result...
1337_C. Linova and Kingdom_17427
Writing light novels is the most important thing in Linova's life. Last night, Linova dreamed about a fantastic kingdom. She began to write a light novel for the kingdom as soon as she woke up, and of course, she is the queen of it. <image> There are n cities and n-1 two-way roads connecting pairs of cities in the ki...
from sys import * input = stdin.readline n,k = map(int,input().split()) graph = [set([]) for _ in range(n+1)] for _ in range(n-1): x,y = map(int,input().split()) graph[x].add(y) graph[y].add(x) dep,par,cn = [0]*(n+1),[0]*(n+1),0 q,p = [1],[] vis = [0]*(n+1) vis[1] = 1 while(q): x = q.pop() dep[x...
{ "input": [ "8 5\n7 5\n1 7\n6 1\n3 7\n8 3\n2 1\n4 5\n", "7 4\n1 2\n1 3\n1 4\n3 5\n3 6\n4 7\n", "4 1\n1 2\n1 3\n2 4\n", "3 2\n1 2\n1 3\n", "3 1\n1 2\n2 3\n", "20 7\n9 7\n3 7\n15 9\n1 3\n11 9\n18 7\n17 18\n20 1\n4 11\n2 11\n12 18\n8 18\n13 2\n19 2\n10 9\n6 13\n5 8\n14 1\n16 13\n", "2 1\n1 2...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Writing light novels is the most important thing in Linova's life. Last night, Linova dreamed about a fantastic kingdom. She began to write a light novel for the kingdom as soon as sh...
135_A. Replacement_17431
Little Petya very much likes arrays consisting of n integers, where each of them is in the range from 1 to 109, inclusive. Recently he has received one such array as a gift from his mother. Petya didn't like it at once. He decided to choose exactly one element from the array and replace it with another integer that als...
n = int(input()) a = sorted(map(int, input().split())) ans = [0]*n ans[0] = 1 f = ans[0] != a[0] for i in range(1, n): ans[i] = a[i-1] if ans[i] != a[i]: f = True m = 10**9 if not f: for i in range(n-1, -1, -1): if ans[i] < m: ans[i] += 1 break print(' '.join(map(s...
{ "input": [ "5\n1 2 3 4 5\n", "5\n2 3 4 5 6\n", "3\n2 2 2\n", "1\n5\n", "4\n1000000000 234765 3485636 385634876\n", "25\n1 1 1 2 2 2 1 2 1 2 2 2 2 2 1 2 2 2 1 2 2 2 2 1 2\n", "10\n5 6 1 2 3 1 3 45 7 1000000000\n", "3\n1 2 1\n", "2\n5 5\n", "4\n1 1 2 3\n", "1\n2\n", "3\...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Little Petya very much likes arrays consisting of n integers, where each of them is in the range from 1 to 109, inclusive. Recently he has received one such array as a gift from his m...
137_B. Permutation_17435
"Hey, it's homework time" — thought Polycarpus and of course he started with his favourite subject, IT. Polycarpus managed to solve all tasks but for the last one in 20 minutes. However, as he failed to solve the last task after some considerable time, the boy asked you to help him. The sequence of n integers is calle...
n = int(input()) l = list(map(int,input().split())) cnt=0 for i in range(1,n+1): if i not in l: cnt+=1 print(cnt)
{ "input": [ "2\n2 2\n", "3\n3 1 2\n", "5\n5 3 3 3 1\n", "100\n340 14 3275 2283 2673 1107 817 2243 1226 32 2382 3638 4652 418 68 4962 387 764 4647 159 1846 225 2760 4904 3150 403 3 2439 91 4428 92 4705 75 348 1566 1465 69 6 49 4 62 4643 564 1090 3447 1871 2255 139 24 99 2669 969 86 61 4550 158 4537 39...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: "Hey, it's homework time" — thought Polycarpus and of course he started with his favourite subject, IT. Polycarpus managed to solve all tasks but for the last one in 20 minutes. Howev...
13_B. Letter A_17439
Little Petya learns how to write. The teacher gave pupils the task to write the letter A on the sheet of paper. It is required to check whether Petya really had written the letter A. You are given three segments on the plane. They form the letter A if the following conditions hold: * Two segments have common endpoi...
__author__ = 'Darren' def solve(): t = int(input()) while t: run() t -= 1 def run(): def check_condition_1(): record = {} common, first, second = None, -1, -1 found = False for i in range(3): for j in range(2): if segments[i][j]...
{ "input": [ "3\n4 4 6 0\n4 1 5 2\n4 0 4 4\n0 0 0 6\n0 6 2 -4\n1 1 0 1\n0 0 0 5\n0 5 2 -1\n1 2 0 1\n", "3\n4 4 6 0\n4 1 5 2\n4 0 4 4\n0 0 0 6\n0 6 2 -4\n1 1 0 1\n0 0 0 5\n0 2 2 -1\n1 2 0 1\n", "3\n4 4 6 -1\n4 1 5 2\n4 0 4 4\n0 0 0 6\n0 6 2 -4\n1 1 0 1\n0 0 0 5\n0 2 2 -1\n1 2 0 1\n", "3\n4 4 6 -1\n4 1 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Little Petya learns how to write. The teacher gave pupils the task to write the letter A on the sheet of paper. It is required to check whether Petya really had written the letter A. ...
1423_K. Lonely Numbers_17443
In number world, two different numbers are friends if they have a lot in common, but also each one has unique perks. More precisely, two different numbers a and b are friends if gcd(a,b), (a)/(gcd(a,b)), (b)/(gcd(a,b)) can form sides of a triangle. Three numbers a, b and c can form sides of a triangle if a + b > c, b...
# This code is contributed by Siddharth import os, io input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline # setrecursionlimit(10**6) # from sys import * import random from bisect import * import math from collections import * import operator from heapq import * from itertools import * inf=10**18 mod=10**9+7...
{ "input": [ "3\n1 5 10\n", "100\n791 303 765 671 210 999 106 489 243 635 807 104 558 628 545 926 35 3 75 196 35 460 523 621 748 45 501 143 240 318 78 908 207 369 436 6 285 200 236 864 731 786 915 672 293 563 141 708 698 646 48 128 603 716 681 329 389 489 683 616 875 510 20 493 141 176 803 106 92 928 20 762 2...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: In number world, two different numbers are friends if they have a lot in common, but also each one has unique perks. More precisely, two different numbers a and b are friends if gcd(...
1443_D. Extreme Subtraction_17447
You are given an array a of n positive integers. You can use the following operation as many times as you like: select any integer 1 ≤ k ≤ n and do one of two things: * decrement by one k of the first elements of the array. * decrement by one k of the last elements of the array. For example, if n=5 and a=[3...
#not done by myself t=int(input()) fflg=0 if t==3000: fflg=1 cnt=1 while t!=0: t-=1 n=int(input()) lst=input().split(" ") # if fflg==1 and cnt==59: print(lst) for i in range(0,n,1): lst[i]=int(lst[i]) flg=0 mini=1000000000000000 psum=[0 for i in range(0,n+1,1)] for i in ...
{ "input": [ "4\n3\n1 2 1\n5\n11 7 9 6 8\n5\n1 3 1 3 1\n4\n5 2 1 10\n", "4\n3\n1 2 1\n5\n11 7 9 6 8\n5\n0 3 1 3 1\n4\n5 2 1 10\n", "4\n3\n1 0 1\n5\n11 1 9 6 8\n5\n1 3 1 3 1\n4\n5 2 1 10\n", "4\n3\n2 4 1\n5\n3 14 7 6 8\n5\n0 3 1 4 1\n4\n5 2 1 12\n", "4\n3\n3 2 2\n5\n3 14 7 6 8\n5\n0 3 1 4 2\n4\n0 2...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given an array a of n positive integers. You can use the following operation as many times as you like: select any integer 1 ≤ k ≤ n and do one of two things: * decrement...
1468_M. Similar Sets_17451
You are given n sets of integers. The i-th set contains k_i integers. Two sets are called similar if they share at least two common elements, i. e. there exist two integers x and y such that x ≠ y, and they both belong to each of the two sets. Your task is to find two similar sets among the given ones, or report that...
def solve(n, debug=False): global curr; global seen; global last; big = []; small = [] for i in range(1,1+n): l = list(map(int, input().split())) if l[0] > 600: big.append((i,l[1:])) else: small.append((i,l[1:])) s1 = len(big); s2 = len(small) ...
{ "input": [ "3\n4\n2 1 10\n3 1 3 5\n5 5 4 3 2 1\n3 10 20 30\n3\n4 1 2 3 4\n4 2 3 4 5\n4 3 4 5 6\n2\n3 1 3 5\n3 4 3 2\n", "7\n2\n2 1 2\n2 2 1\n3\n4 4 5 6 7\n3 1 2 3\n3 2 3 4\n3\n3 1 2 3\n3 2 3 4\n3 3 4 5\n2\n3 10 20 30\n2 40 50\n4\n2 500 100\n2 500 100\n2 500 100\n2 499 100\n2\n3 1 3 2\n2 1 4\n2\n2 1 5\n2 3 2...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given n sets of integers. The i-th set contains k_i integers. Two sets are called similar if they share at least two common elements, i. e. there exist two integers x and y s...
1494_A. ABC String_17455
You are given a string a, consisting of n characters, n is even. For each i from 1 to n a_i is one of 'A', 'B' or 'C'. A bracket sequence is a string containing only characters "(" and ")". A regular bracket sequence is a bracket sequence that can be transformed into a correct arithmetic expression by inserting charac...
from typing import Callable, Iterator, TypeVar, cast _F = TypeVar("_F", bound=Callable[[], None]) def repeater(func: _F) -> _F: def wrapper(): for _ in range(int(input())): func() return cast(_F, wrapper) def get_num_input() -> Iterator[int]: return map(int, input().split()) @rep...
{ "input": [ "4\nAABBAC\nCACA\nBBBBAC\nABCA\n", "12\nCA\nBA\nCC\nAC\nCA\nCB\nAC\nBB\nAB\nCB\nBA\nCA\n", "17\nAABBCCAAAA\nAABBCCABBA\nAABBBBAAAA\nBBBBCCAAAA\nAABBBCAAAA\nABBBCCAAAA\nAABBCCABAA\nAABBBCAAAA\nBABBCCAAAA\nAABBCCABBA\nABBBCAAAAA\nBABBCAAAAA\nABBBCCAACA\nAABACCAACA\nAABBACAAAB\nAABACCAAAA\nAAABA...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: You are given a string a, consisting of n characters, n is even. For each i from 1 to n a_i is one of 'A', 'B' or 'C'. A bracket sequence is a string containing only characters "(" a...
1516_D. Cut_17459
This time Baby Ehab will only cut and not stick. He starts with a piece of paper with an array a of length n written on it, and then he does the following: * he picks a range (l, r) and cuts the subsegment a_l, a_{l + 1}, …, a_r out, removing the rest of the array. * he then cuts this range into multiple subrange...
mod = 1000000007 eps = 10**-9 def main(): import sys from math import gcd input = sys.stdin.buffer.readline V = 10**5 minfactor = list(range(V+1)) for d in range(2, V+1): for x in range(2, V+1): if d*x > V: break if minfactor[d*x] == d*x: ...
{ "input": [ "6 3\n2 3 10 7 5 14\n1 6\n2 4\n3 5\n", "1 1\n100000\n1 1\n", "6 3\n1 3 10 7 5 14\n1 6\n2 4\n3 5\n", "6 3\n1 3 10 6 5 14\n1 6\n2 4\n3 5\n", "6 3\n1 3 10 6 5 11\n1 6\n2 4\n3 5\n", "6 3\n2 3 10 12 5 14\n1 6\n2 4\n3 5\n", "6 2\n1 3 10 6 5 14\n1 6\n2 4\n3 5\n", "6 3\n1 3 10 6 5...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: This time Baby Ehab will only cut and not stick. He starts with a piece of paper with an array a of length n written on it, and then he does the following: * he picks a range (l, r...
171_F. ucyhf_17465
qd ucyhf yi q fhycu dkcruh mxeiu huluhiu yi q tyvvuhudj fhycu dkcruh. oekh jqia yi je vydt jxu djx ucyhf. Input jxu ydfkj sediyiji ev q iydwbu ydjuwuh d (1 ≤ d ≤ 11184) — jxu edu-rqiut ydtun ev jxu ucyhf je vydt. Output ekjfkj q iydwbu dkcruh. Examples Input 1 Output 13
#!/usr/bin/env python from __future__ import division, print_function import math import os import sys from fractions import * from sys import * from io import BytesIO, IOBase from itertools import * from collections import * # sys.setrecursionlimit(10**5) if sys.version_info[0] < 3: from __builtin__ import xran...
{ "input": [ "1\n", "5273\n", "2279\n", "4020\n", "10526\n", "7779\n", "4859\n", "5\n", "1438\n", "6\n", "8\n", "6848\n", "10\n", "8216\n", "4168\n", "11183\n", "6327\n", "10107\n", "3\n", "10476\n", "10962\n", "6826\n", "1118...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: qd ucyhf yi q fhycu dkcruh mxeiu huluhiu yi q tyvvuhudj fhycu dkcruh. oekh jqia yi je vydt jxu djx ucyhf. Input jxu ydfkj sediyiji ev q iydwbu ydjuwuh d (1 ≤ d ≤ 11184) — jxu edu-rq...
215_D. Hot Days_17471
The official capital and the cultural capital of Berland are connected by a single road running through n regions. Each region has a unique climate, so the i-th (1 ≤ i ≤ n) region has a stable temperature of ti degrees in summer. This summer a group of m schoolchildren wants to get from the official capital to the cul...
import sys n, m = map(int, sys.stdin.readline().split()) ans = 0 for _ in range(n): ti, Ti, xi, ci = map(int, sys.stdin.readline().split()) cost = xi * m * (ti + m > Ti) + ci if ti < Ti: cost2 = ci * ((m - 1) // (Ti - ti) + 1) cost = min(cost, cost2) ans += cost print(ans) ...
{ "input": [ "3 100\n10 30 1000 1\n5 10 1000 3\n10 40 1000 100000\n", "2 10\n30 35 1 100\n20 35 10 10\n", "1 1000000\n4 4 6 2\n", "10 1\n8 6 3 4\n9 10 7 7\n1 3 9 5\n10 9 4 2\n1 10 2 10\n1 1 8 5\n5 5 9 2\n5 8 4 3\n4 4 9 7\n5 7 5 10\n", "20 102\n73 79 75 27\n13 15 62 47\n74 75 85 86\n49 81 23 69\n43...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: The official capital and the cultural capital of Berland are connected by a single road running through n regions. Each region has a unique climate, so the i-th (1 ≤ i ≤ n) region has...
264_B. Good Sequences_17478
Squirrel Liss is interested in sequences. She also has preferences of integers. She thinks n integers a1, a2, ..., an are good. Now she is interested in good sequences. A sequence x1, x2, ..., xk is called good if it satisfies the following three conditions: * The sequence is strictly increasing, i.e. xi < xi + 1 f...
###### ### ####### ####### ## # ##### ### ##### # # # # # # # # # # # # # ### # # # # # # # # # # # # # ### ###### ######### # # # # # # ...
{ "input": [ "5\n2 3 4 6 9\n", "9\n1 2 3 5 6 7 8 9 10\n", "2\n1009 2018\n", "10\n2 4 8 67 128 324 789 1296 39877 98383\n", "1\n1\n", "10\n2 3 45 67 89 101 234 567 890 1234\n", "2\n5101 10202\n", "3\n150 358 382\n", "44\n1 5 37 97 107 147 185 187 195 241 249 295 311 323 341 345 363 ...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Squirrel Liss is interested in sequences. She also has preferences of integers. She thinks n integers a1, a2, ..., an are good. Now she is interested in good sequences. A sequence x1...
288_B. Polo the Penguin and Houses _17482
Little penguin Polo loves his home village. The village has n houses, indexed by integers from 1 to n. Each house has a plaque containing an integer, the i-th house has a plaque containing integer pi (1 ≤ pi ≤ n). Little penguin Polo loves walking around this village. The walk looks like that. First he stands by a hou...
import sys,math,heapq,copy from collections import defaultdict,deque from bisect import bisect_left,bisect_right from functools import cmp_to_key from itertools import permutations,combinations,combinations_with_replacement # sys.setrecursionlimit(10**6) # sys.stdin=open('Input.txt','r') # sys.stdout=open('Output.txt',...
{ "input": [ "7 4\n", "5 2\n", "8 5\n", "975 8\n", "50 2\n", "999 7\n", "2 2\n", "876 8\n", "1000 2\n", "12 8\n", "227 6\n", "3 3\n", "2 1\n", "1 1\n", "137 5\n", "1000 1\n", "1000 8\n", "1000 3\n", "473 4\n", "8 1\n", "8 8\n", "9...
2CODEFORCES
Below is a problem description that describes the problem. Write code in Python that appropriately solves the problem. ### Description: Little penguin Polo loves his home village. The village has n houses, indexed by integers from 1 to n. Each house has a plaque containing an integer, the i-th house has a plaque conta...