contestId
int64
0
1.01k
index
stringclasses
57 values
name
stringlengths
2
58
type
stringclasses
2 values
rating
int64
0
3.5k
tags
listlengths
0
11
title
stringclasses
522 values
time-limit
stringclasses
8 values
memory-limit
stringclasses
8 values
problem-description
stringlengths
0
7.15k
input-specification
stringlengths
0
2.05k
output-specification
stringlengths
0
1.5k
demo-input
listlengths
0
7
demo-output
listlengths
0
7
note
stringlengths
0
5.24k
points
float64
0
425k
test_cases
listlengths
0
402
creationTimeSeconds
int64
1.37B
1.7B
relativeTimeSeconds
int64
8
2.15B
programmingLanguage
stringclasses
3 values
verdict
stringclasses
14 values
testset
stringclasses
12 values
passedTestCount
int64
0
1k
timeConsumedMillis
int64
0
15k
memoryConsumedBytes
int64
0
805M
code
stringlengths
3
65.5k
prompt
stringlengths
262
8.2k
response
stringlengths
17
65.5k
score
float64
-1
3.99
305
A
Strange Addition
PROGRAMMING
1,600
[ "brute force", "constructive algorithms", "implementation" ]
null
null
Unfortunately, Vasya can only sum pairs of integers (*a*, *b*), such that for any decimal place at least one number has digit 0 in this place. For example, Vasya can sum numbers 505 and 50, but he cannot sum 1 and 4. Vasya has a set of *k* distinct non-negative integers *d*1,<=*d*2,<=...,<=*d**k*. Vasya wants to choo...
The first input line contains integer *k* (1<=≤<=*k*<=≤<=100) — the number of integers. The second line contains *k* distinct space-separated integers *d*1,<=*d*2,<=...,<=*d**k* (0<=≤<=*d**i*<=≤<=100).
In the first line print a single integer *n* the maximum number of the chosen integers. In the second line print *n* distinct non-negative integers — the required integers. If there are multiple solutions, print any of them. You can print the numbers in any order.
[ "4\n100 10 1 0\n", "3\n2 70 3\n" ]
[ "4\n0 1 10 100 ", "2\n2 70 " ]
none
500
[ { "input": "4\n100 10 1 0", "output": "4\n0 1 10 100 " }, { "input": "3\n2 70 3", "output": "2\n2 70 " }, { "input": "39\n16 72 42 70 17 36 32 40 47 94 27 30 100 55 23 77 67 28 49 50 53 83 38 33 60 65 62 64 6 66 69 86 96 75 85 0 89 73 29", "output": "4\n0 6 30 100 " }, { "inp...
1,665,469,507
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
92
0
#list(map(int,input().split())) #for times in range(int(input())): n = int(input()) l = list(map(int,input().split())) l.sort(); i=0 f=0 while i<len(l): for j in range(i+1,len(l)): s1 = str(l[i])[::-1] s2 = str(l[j])[::-1] f=0 #print(s1,s2) for it in range(min(len(s1),len(s2))): if int(s1[it...
Title: Strange Addition Time Limit: None seconds Memory Limit: None megabytes Problem Description: Unfortunately, Vasya can only sum pairs of integers (*a*, *b*), such that for any decimal place at least one number has digit 0 in this place. For example, Vasya can sum numbers 505 and 50, but he cannot sum 1 and 4. ...
```python #list(map(int,input().split())) #for times in range(int(input())): n = int(input()) l = list(map(int,input().split())) l.sort(); i=0 f=0 while i<len(l): for j in range(i+1,len(l)): s1 = str(l[i])[::-1] s2 = str(l[j])[::-1] f=0 #print(s1,s2) for it in range(min(len(s1),len(s2))): if...
0
430
A
Points and Segments (easy)
PROGRAMMING
1,600
[ "constructive algorithms", "sortings" ]
null
null
Iahub isn't well prepared on geometry problems, but he heard that this year there will be a lot of geometry problems on the IOI selection camp. Scared, Iahub locked himself in the basement and started thinking of new problems of this kind. One of them is the following. Iahub wants to draw *n* distinct points and *m* s...
The first line of input contains two integers: *n* (1<=≤<=*n*<=≤<=100) and *m* (1<=≤<=*m*<=≤<=100). The next line contains *n* space-separated integers *x*1,<=*x*2,<=...,<=*x**n* (0<=≤<=*x**i*<=≤<=100) — the coordinates of the points. The following *m* lines contain the descriptions of the *m* segments. Each line conta...
If there is no good drawing for a given test, output a single integer -1. Otherwise output *n* integers, each integer must be 0 or 1. The *i*-th number denotes the color of the *i*-th point (0 is red, and 1 is blue). If there are multiple good drawings you can output any of them.
[ "3 3\n3 7 14\n1 5\n6 10\n11 15\n", "3 4\n1 2 3\n1 2\n2 3\n5 6\n2 2\n" ]
[ "0 0 0", "1 0 1 " ]
none
500
[ { "input": "3 3\n3 7 14\n1 5\n6 10\n11 15", "output": "0 0 0" }, { "input": "3 4\n1 2 3\n1 2\n2 3\n5 6\n2 2", "output": "1 0 1 " }, { "input": "10 10\n3 4 2 6 1 9 0 5 8 7\n5 7\n2 6\n0 1\n5 6\n3 4\n2 5\n2 10\n4 6\n3 6\n3 7", "output": "0 1 1 1 0 0 1 0 1 0 " }, { "input": "3 3\...
1,399,827,609
4,808
Python 3
WRONG_ANSWER
PRETESTS
2
61
0
import sys count = sys.stdin.readline().split(" ") # n & m points = sys.stdin.readline().split(" ") # all points isAnswerExists = False end = True printing = "" for i in range(0,int(count[1])): arr = sys.stdin.readline().split(" ") otrezokNachalo = arr[0] otrKonec = arr[1] for j in range(0...
Title: Points and Segments (easy) Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub isn't well prepared on geometry problems, but he heard that this year there will be a lot of geometry problems on the IOI selection camp. Scared, Iahub locked himself in the basement and started thinkin...
```python import sys count = sys.stdin.readline().split(" ") # n & m points = sys.stdin.readline().split(" ") # all points isAnswerExists = False end = True printing = "" for i in range(0,int(count[1])): arr = sys.stdin.readline().split(" ") otrezokNachalo = arr[0] otrKonec = arr[1] for j ...
0
215
A
Bicycle Chain
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
Vasya's bicycle chain drive consists of two parts: *n* stars are attached to the pedal axle, *m* stars are attached to the rear wheel axle. The chain helps to rotate the rear wheel by transmitting the pedal rotation. We know that the *i*-th star on the pedal axle has *a**i* (0<=&lt;<=*a*1<=&lt;<=*a*2<=&lt;<=...<=&lt;<...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=50) — the number of stars on the bicycle's pedal axle. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=104) in the order of strict increasing. The third input line contains integer *m* (1<=≤<=*m*<=≤<=50) — the number of stars o...
Print the number of "integer" gears with the maximum ratio among all "integer" gears.
[ "2\n4 5\n3\n12 13 15\n", "4\n1 2 3 4\n5\n10 11 12 13 14\n" ]
[ "2\n", "1\n" ]
In the first sample the maximum "integer" gear ratio equals 3. There are two gears that have such gear ratio. For one of them *a*<sub class="lower-index">1</sub> = 4, *b*<sub class="lower-index">1</sub> = 12, and for the other *a*<sub class="lower-index">2</sub> = 5, *b*<sub class="lower-index">3</sub> = 15.
500
[ { "input": "2\n4 5\n3\n12 13 15", "output": "2" }, { "input": "4\n1 2 3 4\n5\n10 11 12 13 14", "output": "1" }, { "input": "1\n1\n1\n1", "output": "1" }, { "input": "2\n1 2\n1\n1", "output": "1" }, { "input": "1\n1\n2\n1 2", "output": "1" }, { "input":...
1,643,267,371
2,147,483,647
PyPy 3
OK
TESTS
57
154
1,945,600
import math n=int(input()) arr=[int(x) for x in input().split()] m=int(input()) brr=[int(x) for x in input().split()] mx=0 for i in range(n): for j in range(m): if int(math.ceil(brr[j]/arr[i]))==brr[j]//arr[i]: if brr[j]//arr[i]>mx: mx=brr[j]//arr[i] c=0 for i in rang...
Title: Bicycle Chain Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya's bicycle chain drive consists of two parts: *n* stars are attached to the pedal axle, *m* stars are attached to the rear wheel axle. The chain helps to rotate the rear wheel by transmitting the pedal rotation. We ...
```python import math n=int(input()) arr=[int(x) for x in input().split()] m=int(input()) brr=[int(x) for x in input().split()] mx=0 for i in range(n): for j in range(m): if int(math.ceil(brr[j]/arr[i]))==brr[j]//arr[i]: if brr[j]//arr[i]>mx: mx=brr[j]//arr[i] c=0 for...
3
617
A
Elephant
PROGRAMMING
800
[ "math" ]
null
null
An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2, 3, 4 or 5 positions forward. Determine, what is the minimum number of steps he need to make ...
The first line of the input contains an integer *x* (1<=≤<=*x*<=≤<=1<=000<=000) — The coordinate of the friend's house.
Print the minimum number of steps that elephant needs to make to get from point 0 to point *x*.
[ "5\n", "12\n" ]
[ "1\n", "3\n" ]
In the first sample the elephant needs to make one step of length 5 to reach the point *x*. In the second sample the elephant can get to point *x* if he moves by 3, 5 and 4. There are other ways to get the optimal answer but the elephant cannot reach *x* in less than three moves.
500
[ { "input": "5", "output": "1" }, { "input": "12", "output": "3" }, { "input": "999999", "output": "200000" }, { "input": "41", "output": "9" }, { "input": "1000000", "output": "200000" }, { "input": "1", "output": "1" }, { "input": "2", ...
1,699,241,796
2,147,483,647
PyPy 3-64
OK
TESTS
34
140
1,331,200
n = int(input()) moves = 0 while n >0 : if n >=5: n-=5 elif n>=4: n-=4 elif n>=3: n-=3 elif n>=2: n-=2 elif n>= 1: n-=1 moves+=1 print(moves)
Title: Elephant Time Limit: None seconds Memory Limit: None megabytes Problem Description: An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2...
```python n = int(input()) moves = 0 while n >0 : if n >=5: n-=5 elif n>=4: n-=4 elif n>=3: n-=3 elif n>=2: n-=2 elif n>= 1: n-=1 moves+=1 print(moves) ```
3
337
A
Puzzles
PROGRAMMING
900
[ "greedy" ]
null
null
The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, as wikipedia states, is a tiling puzzle that requires the assembly of numerous small, often od...
The first line contains space-separated integers *n* and *m* (2<=≤<=*n*<=≤<=*m*<=≤<=50). The second line contains *m* space-separated integers *f*1,<=*f*2,<=...,<=*f**m* (4<=≤<=*f**i*<=≤<=1000) — the quantities of pieces in the puzzles sold in the shop.
Print a single integer — the least possible difference the teacher can obtain.
[ "4 6\n10 12 10 7 5 22\n" ]
[ "5\n" ]
Sample 1. The class has 4 students. The shop sells 6 puzzles. If Ms. Manana buys the first four puzzles consisting of 10, 12, 10 and 7 pieces correspondingly, then the difference between the sizes of the largest and the smallest puzzle will be equal to 5. It is impossible to obtain a smaller difference. Note that the t...
500
[ { "input": "4 6\n10 12 10 7 5 22", "output": "5" }, { "input": "2 2\n4 4", "output": "0" }, { "input": "2 10\n4 5 6 7 8 9 10 11 12 12", "output": "0" }, { "input": "4 5\n818 136 713 59 946", "output": "759" }, { "input": "3 20\n446 852 783 313 549 965 40 88 86 617...
1,679,862,966
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
62
0
n = list(map(int, input().split())) x = sorted(list(map(int, input().split()))) if (x[n[0]-1]-x[0]) < (x[-1]-x[len(x)-n[0]]): print(x[n[0]-1]-x[0]) else: print(x[-1]-x[len(x)-n[0]])
Title: Puzzles Time Limit: None seconds Memory Limit: None megabytes Problem Description: The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, a...
```python n = list(map(int, input().split())) x = sorted(list(map(int, input().split()))) if (x[n[0]-1]-x[0]) < (x[-1]-x[len(x)-n[0]]): print(x[n[0]-1]-x[0]) else: print(x[-1]-x[len(x)-n[0]]) ```
0
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,660,236,779
2,147,483,647
Python 3
OK
TESTS
20
46
0
from math import ceil p=input() a = p.split(' ') m=int(a[0]) n=int(a[1]) a=int(a[2]) print(ceil(m/a)*ceil(n/a))
Title: Theatre Square Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each ...
```python from math import ceil p=input() a = p.split(' ') m=int(a[0]) n=int(a[1]) a=int(a[2]) print(ceil(m/a)*ceil(n/a)) ```
3.977
1,009
B
Minimum Ternary String
PROGRAMMING
1,400
[ "greedy", "implementation" ]
null
null
You are given a ternary string (it is a string which consists only of characters '0', '1' and '2'). You can swap any two adjacent (consecutive) characters '0' and '1' (i.e. replace "01" with "10" or vice versa) or any two adjacent (consecutive) characters '1' and '2' (i.e. replace "12" with "21" or vice versa). For e...
The first line of the input contains the string $s$ consisting only of characters '0', '1' and '2', its length is between $1$ and $10^5$ (inclusive).
Print a single string — the minimum possible (lexicographically) string you can obtain by using the swaps described above arbitrary number of times (possibly, zero).
[ "100210\n", "11222121\n", "20\n" ]
[ "001120\n", "11112222\n", "20\n" ]
none
0
[ { "input": "100210", "output": "001120" }, { "input": "11222121", "output": "11112222" }, { "input": "20", "output": "20" }, { "input": "1002", "output": "0012" }, { "input": "10", "output": "01" }, { "input": "000021", "output": "000012" }, { ...
1,617,575,374
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
61
0
x = input() while '21' in x or '10' in x : x=x.replace('21','12') x=x.replace('10','01') print(x)
Title: Minimum Ternary String Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a ternary string (it is a string which consists only of characters '0', '1' and '2'). You can swap any two adjacent (consecutive) characters '0' and '1' (i.e. replace "01" with "10" or vice versa) ...
```python x = input() while '21' in x or '10' in x : x=x.replace('21','12') x=x.replace('10','01') print(x) ```
0
6
E
Exposition
PROGRAMMING
1,900
[ "binary search", "data structures", "dsu", "trees", "two pointers" ]
E. Exposition
1
64
There are several days left before the fiftieth birthday of a famous Berland's writer Berlbury. In this connection the local library decided to make an exposition of the works of this famous science-fiction writer. It was decided as well that it is necessary to include into the exposition only those books that were pub...
The first line of the input data contains two integer numbers separated by a space *n* (1<=≤<=*n*<=≤<=105) and *k* (0<=≤<=*k*<=≤<=106) — the amount of books by Berlbury in the library, and the maximum allowed height difference between the lowest and the highest books. The second line contains *n* integer numbers separa...
In the first line of the output data print two numbers *a* and *b* (separate them by a space), where *a* is the maximum amount of books the organizers can include into the exposition, and *b* — the amount of the time periods, during which Berlbury published *a* books, and the height difference between the lowest and th...
[ "3 3\n14 12 10\n", "2 0\n10 10\n", "4 5\n8 19 10 13\n" ]
[ "2 2\n1 2\n2 3\n", "2 1\n1 2\n", "2 1\n3 4\n" ]
none
0
[ { "input": "3 3\n14 12 10", "output": "2 2\n1 2\n2 3" }, { "input": "2 0\n10 10", "output": "2 1\n1 2" }, { "input": "4 5\n8 19 10 13", "output": "2 1\n3 4" }, { "input": "1 1\n1", "output": "1 1\n1 1" }, { "input": "2 10\n35 45", "output": "2 1\n1 2" }, {...
1,459,947,796
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
5,324,800
from collections import deque import copy n,k=map(int,input().split()) a=map(int,input().split()) Line=deque() N=0 Result=(deque([[0]])) #智障!!犯了deepcopy的错误! for i in a: N+=1 if not Line or abs(i-Line[0][0])<=k: Line.append([i,N]) continue else: if len(Line)>=len(Resul...
Title: Exposition Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: There are several days left before the fiftieth birthday of a famous Berland's writer Berlbury. In this connection the local library decided to make an exposition of the works of this famous science-fiction writer. It was decided...
```python from collections import deque import copy n,k=map(int,input().split()) a=map(int,input().split()) Line=deque() N=0 Result=(deque([[0]])) #智障!!犯了deepcopy的错误! for i in a: N+=1 if not Line or abs(i-Line[0][0])<=k: Line.append([i,N]) continue else: if len(Line)>...
0
177
A2
Good Matrix Elements
PROGRAMMING
800
[ "implementation" ]
null
null
The Smart Beaver from ABBYY got hooked on square matrices. Now he is busy studying an *n*<=×<=*n* size matrix, where *n* is odd. The Smart Beaver considers the following matrix elements good: - Elements of the main diagonal. - Elements of the secondary diagonal. - Elements of the "middle" row — the row which ha...
The first line of input data contains a single odd integer *n*. Each of the next *n* lines contains *n* integers *a**ij* (0<=≤<=*a**ij*<=≤<=100) separated by single spaces — the elements of the given matrix. The input limitations for getting 30 points are: - 1<=≤<=*n*<=≤<=5 The input limitations for getting 100 po...
Print a single integer — the sum of good matrix elements.
[ "3\n1 2 3\n4 5 6\n7 8 9\n", "5\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n" ]
[ "45\n", "17\n" ]
In the first sample all matrix elements will be good. Good elements in the second sample are shown on the figure.
70
[ { "input": "3\n1 2 3\n4 5 6\n7 8 9", "output": "45" }, { "input": "5\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1", "output": "17" }, { "input": "1\n3", "output": "3" }, { "input": "5\n27 7 3 11 72\n19 49 68 19 59\n41 25 37 64 65\n8 39 96 62 90\n13 37 43 26 33", ...
1,382,472,902
2,147,483,647
Python 3
OK
TESTS2
33
124
307,200
n = int(input()) s, k = 0, n // 2 a, b, c = k - 1, k + 1, n - 1 for i in range(k): t = tuple(map(int, input().split())) s += t[i] + t[k] + t[c - i] s += sum(map(int, input().split())) for i in range(k): t = tuple(map(int, input().split())) s += t[b + i] + t[k] + t[a - i] print(s)
Title: Good Matrix Elements Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Smart Beaver from ABBYY got hooked on square matrices. Now he is busy studying an *n*<=×<=*n* size matrix, where *n* is odd. The Smart Beaver considers the following matrix elements good: - Elements of the ...
```python n = int(input()) s, k = 0, n // 2 a, b, c = k - 1, k + 1, n - 1 for i in range(k): t = tuple(map(int, input().split())) s += t[i] + t[k] + t[c - i] s += sum(map(int, input().split())) for i in range(k): t = tuple(map(int, input().split())) s += t[b + i] + t[k] + t[a - i] print(s) ```
3
0
none
none
none
0
[ "none" ]
null
null
Профиль горного хребта схематично задан в виде прямоугольной таблицы из символов «.» (пустое пространство) и «*» (часть горы). Каждый столбец таблицы содержит хотя бы одну «звёздочку». Гарантируется, что любой из символов «*» либо находится в нижней строке матрицы, либо непосредственно под ним находится другой символ «...
В первой строке входных данных записаны два целых числа *n* и *m* (1<=≤<=*n*,<=*m*<=≤<=100) — количество строк и столбцов в схематичном изображении соответственно. Далее следуют *n* строк по *m* символов в каждой — схематичное изображение горного хребта. Каждый символ схематичного изображения — это либо «.», либо «*»....
Выведите через пробел два целых числа: - величину наибольшего подъёма за день (или 0, если в профиле горного хребта нет ни одного подъёма), - величину наибольшего спуска за день (или 0, если в профиле горного хребта нет ни одного спуска).
[ "6 11\n...........\n.........*.\n.*.......*.\n**.......*.\n**..*...**.\n***********\n", "5 5\n....*\n...**\n..***\n.****\n*****\n", "8 7\n.......\n.*.....\n.*.....\n.**....\n.**.*..\n.****.*\n.******\n*******\n" ]
[ "3 4\n", "1 0\n", "6 2\n" ]
В первом тестовом примере высоты гор равны: 3, 4, 1, 1, 2, 1, 1, 1, 2, 5, 1. Наибольший подъем равен 3 и находится между горой номер 9 (её высота равна 2) и горой номер 10 (её высота равна 5). Наибольший спуск равен 4 и находится между горой номер 10 (её высота равна 5) и горой номер 11 (её высота равна 1). Во втором ...
0
[ { "input": "6 11\n...........\n.........*.\n.*.......*.\n**.......*.\n**..*...**.\n***********", "output": "3 4" }, { "input": "5 5\n....*\n...**\n..***\n.****\n*****", "output": "1 0" }, { "input": "8 7\n.......\n.*.....\n.*.....\n.**....\n.**.*..\n.****.*\n.******\n*******", "outpu...
1,458,752,288
7,088
Python 3
RUNTIME_ERROR
PRETESTS
0
46
4,812,800
v=input() n=int(v[0]) m=int(v[2]) a=[] pod=0 spusk=0 for i in range(n): a.append(input()) k=0 l=n-2 y1=0 y2=0 while k != m: while l > -1: r=a[l] if r[k]=='.': y1=l+1 k+=1 l=n-2 while l > -1: r=a[l] ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Профиль горного хребта схематично задан в виде прямоугольной таблицы из символов «.» (пустое пространство) и «*» (часть горы). Каждый столбец таблицы содержит хотя бы одну «звёздочку». Гарантируется, что любой из символов «*» либо...
```python v=input() n=int(v[0]) m=int(v[2]) a=[] pod=0 spusk=0 for i in range(n): a.append(input()) k=0 l=n-2 y1=0 y2=0 while k != m: while l > -1: r=a[l] if r[k]=='.': y1=l+1 k+=1 l=n-2 while l > -1: r=a[l] ...
-1
259
B
Little Elephant and Magic Square
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
Little Elephant loves magic squares very much. A magic square is a 3<=×<=3 table, each cell contains some positive integer. At that the sums of integers in all rows, columns and diagonals of the table are equal. The figure below shows the magic square, the sum of integers in all its rows, columns and diagonals equals ...
The first three lines of the input contain the Little Elephant's notes. The first line contains elements of the first row of the magic square. The second line contains the elements of the second row, the third line is for the third row. The main diagonal elements that have been forgotten by the Elephant are represented...
Print three lines, in each line print three integers — the Little Elephant's magic square. If there are multiple magic squares, you are allowed to print any of them. Note that all numbers you print must be positive and not exceed 105. It is guaranteed that there exists at least one magic square that meets the conditio...
[ "0 1 1\n1 0 1\n1 1 0\n", "0 3 6\n5 0 5\n4 7 0\n" ]
[ "1 1 1\n1 1 1\n1 1 1\n", "6 3 6\n5 5 5\n4 7 4\n" ]
none
1,000
[ { "input": "0 1 1\n1 0 1\n1 1 0", "output": "1 1 1\n1 1 1\n1 1 1" }, { "input": "0 3 6\n5 0 5\n4 7 0", "output": "6 3 6\n5 5 5\n4 7 4" }, { "input": "0 4 4\n4 0 4\n4 4 0", "output": "4 4 4\n4 4 4\n4 4 4" }, { "input": "0 54 48\n36 0 78\n66 60 0", "output": "69 54 48\n36 5...
1,602,572,860
2,147,483,647
PyPy 3
OK
TESTS
24
280
0
#sys.setrecursionlimit(300000) import sys import math as m def main(): pass def binary(n): #decimal to binary return (bin(n).replace("0b", "")) def decimal(s): #binary to decimal return (int(s, 2)) def pow2(n): #power of a number base 2 p = 0 while n > 1: n //= 2 ...
Title: Little Elephant and Magic Square Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Elephant loves magic squares very much. A magic square is a 3<=×<=3 table, each cell contains some positive integer. At that the sums of integers in all rows, columns and diagonals of the table ...
```python #sys.setrecursionlimit(300000) import sys import math as m def main(): pass def binary(n): #decimal to binary return (bin(n).replace("0b", "")) def decimal(s): #binary to decimal return (int(s, 2)) def pow2(n): #power of a number base 2 p = 0 while n > 1: ...
3
878
A
Short Program
PROGRAMMING
1,600
[ "bitmasks", "constructive algorithms" ]
null
null
Petya learned a new programming language CALPAS. A program in this language always takes one non-negative integer and returns one non-negative integer as well. In the language, there are only three commands: apply a bitwise operation AND, OR or XOR with a given constant to the current integer. A program can contain an...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=5·105) — the number of lines. Next *n* lines contain commands. A command consists of a character that represents the operation ("&amp;", "|" or "^" for AND, OR or XOR respectively), and the constant *x**i* 0<=≤<=*x**i*<=≤<=1023.
Output an integer *k* (0<=≤<=*k*<=≤<=5) — the length of your program. Next *k* lines must contain commands in the same format as in the input.
[ "3\n| 3\n^ 2\n| 1\n", "3\n&amp; 1\n&amp; 3\n&amp; 5\n", "3\n^ 1\n^ 2\n^ 3\n" ]
[ "2\n| 3\n^ 2\n", "1\n&amp; 1\n", "0\n" ]
You can read about bitwise operations in [https://en.wikipedia.org/wiki/Bitwise_operation](https://en.wikipedia.org/wiki/Bitwise_operation). Second sample: Let *x* be an input of the Petya's program. It's output is ((*x*&amp;1)&amp;3)&amp;5 = *x*&amp;(1&amp;3&amp;5) = *x*&amp;1. So these two programs always give the ...
500
[ { "input": "3\n| 3\n^ 2\n| 1", "output": "2\n| 3\n^ 2" }, { "input": "3\n& 1\n& 3\n& 5", "output": "1\n& 1" }, { "input": "3\n^ 1\n^ 2\n^ 3", "output": "0" }, { "input": "2\n| 999\n^ 689", "output": "2\n| 999\n^ 689" }, { "input": "3\n& 242\n^ 506\n^ 522", "ou...
1,685,268,191
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
6
46
0
n = int(input()) l1 = [] l2 = [] l3 = [] for i in range(n) : x, y = input().split() if x == '|' : l1.append(int(y)) elif x == '&' : l2.append(int(y)) else : l3.append(int(y)) for i in range(1,len(l1)) : l1[0] |= l1[i] for i in range(1,len(l2)) : l2[0] &= l2...
Title: Short Program Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya learned a new programming language CALPAS. A program in this language always takes one non-negative integer and returns one non-negative integer as well. In the language, there are only three commands: apply a bitw...
```python n = int(input()) l1 = [] l2 = [] l3 = [] for i in range(n) : x, y = input().split() if x == '|' : l1.append(int(y)) elif x == '&' : l2.append(int(y)) else : l3.append(int(y)) for i in range(1,len(l1)) : l1[0] |= l1[i] for i in range(1,len(l2)) : l...
0
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,696,330,393
2,147,483,647
Python 3
OK
TESTS
30
92
0
a = input() s = 0 k = 0 for i in a: if i == i.upper(): s += 1 else: k += 1 if s > k: print(a.upper()) else: print(a.lower())
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python a = input() s = 0 k = 0 for i in a: if i == i.upper(): s += 1 else: k += 1 if s > k: print(a.upper()) else: print(a.lower()) ```
3.977
964
B
Messages
PROGRAMMING
1,300
[ "math" ]
null
null
There are *n* incoming messages for Vasya. The *i*-th message is going to be received after *t**i* minutes. Each message has a cost, which equals to *A* initially. After being received, the cost of a message decreases by *B* each minute (it can become negative). Vasya can read any message after receiving it at any mome...
The first line contains five integers *n*, *A*, *B*, *C* and *T* (1<=≤<=*n*,<=*A*,<=*B*,<=*C*,<=*T*<=≤<=1000). The second string contains *n* integers *t**i* (1<=≤<=*t**i*<=≤<=*T*).
Output one integer  — the answer to the problem.
[ "4 5 5 3 5\n1 5 5 4\n", "5 3 1 1 3\n2 2 2 1 1\n", "5 5 3 4 5\n1 2 3 4 5\n" ]
[ "20\n", "15\n", "35\n" ]
In the first sample the messages must be read immediately after receiving, Vasya receives *A* points for each message, *n*·*A* = 20 in total. In the second sample the messages can be read at any integer moment. In the third sample messages must be read at the moment T. This way Vasya has 1, 2, 3, 4 and 0 unread messa...
1,000
[ { "input": "4 5 5 3 5\n1 5 5 4", "output": "20" }, { "input": "5 3 1 1 3\n2 2 2 1 1", "output": "15" }, { "input": "5 5 3 4 5\n1 2 3 4 5", "output": "35" }, { "input": "1 6 4 3 9\n2", "output": "6" }, { "input": "10 9 7 5 3\n3 3 3 3 2 3 2 2 3 3", "output": "90...
1,523,978,166
4,266
Python 3
OK
TESTS
60
93
7,065,600
n,a,b,c,t=[int(i) for i in (input().split(" "))] ans=0 lis=[int(i) for i in input().split(" ")] if(b>=c): ans=n*a else: for i in lis: ans+=(c*(t-i)+a-b*(t-i)) print(ans)
Title: Messages Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* incoming messages for Vasya. The *i*-th message is going to be received after *t**i* minutes. Each message has a cost, which equals to *A* initially. After being received, the cost of a message decreases by *B* e...
```python n,a,b,c,t=[int(i) for i in (input().split(" "))] ans=0 lis=[int(i) for i in input().split(" ")] if(b>=c): ans=n*a else: for i in lis: ans+=(c*(t-i)+a-b*(t-i)) print(ans) ```
3
514
A
Chewbaсca and Number
PROGRAMMING
1,200
[ "greedy", "implementation" ]
null
null
Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform the initial number *x* to the minimum possible positive number by inverting some (possibly, zero) digits....
The first line contains a single integer *x* (1<=≤<=*x*<=≤<=1018) — the number that Luke Skywalker gave to Chewbacca.
Print the minimum possible positive number that Chewbacca can obtain after inverting some digits. The number shouldn't contain leading zeroes.
[ "27\n", "4545\n" ]
[ "22\n", "4444\n" ]
none
500
[ { "input": "27", "output": "22" }, { "input": "4545", "output": "4444" }, { "input": "1", "output": "1" }, { "input": "9", "output": "9" }, { "input": "8772", "output": "1222" }, { "input": "81", "output": "11" }, { "input": "71723447", ...
1,678,461,916
2,147,483,647
Python 3
OK
TESTS
43
46
0
s=input() ss="" for i in range(len(s)): if i==0 and s[i]=='9': ss+=s[i] continue if int(s[i])>9-int(s[i]): ss+=str(9-int(s[i])) else: ss+=s[i] print(ss)
Title: Chewbaсca and Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform...
```python s=input() ss="" for i in range(len(s)): if i==0 and s[i]=='9': ss+=s[i] continue if int(s[i])>9-int(s[i]): ss+=str(9-int(s[i])) else: ss+=s[i] print(ss) ```
3
6
C
Alice, Bob and Chocolate
PROGRAMMING
1,200
[ "greedy", "two pointers" ]
C. Alice, Bob and Chocolate
2
64
Alice and Bob like games. And now they are ready to start a new game. They have placed *n* chocolate bars in a line. Alice starts to eat chocolate bars one by one from left to right, and Bob — from right to left. For each chocololate bar the time, needed for the player to consume it, is known (Alice and Bob eat them wi...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=105) — the amount of bars on the table. The second line contains a sequence *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=1000), where *t**i* is the time (in seconds) needed to consume the *i*-th bar (in the order from left to right).
Print two numbers *a* and *b*, where *a* is the amount of bars consumed by Alice, and *b* is the amount of bars consumed by Bob.
[ "5\n2 9 8 2 7\n" ]
[ "2 3\n" ]
none
0
[ { "input": "5\n2 9 8 2 7", "output": "2 3" }, { "input": "1\n1", "output": "1 0" }, { "input": "2\n1 1", "output": "1 1" }, { "input": "3\n1 1 1", "output": "2 1" }, { "input": "4\n1 1 1 1", "output": "2 2" }, { "input": "1\n6", "output": "1 0" }...
1,575,810,276
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
1
186
307,200
n=int(input()) p=[int(x) for x in input().split()] s=sum(p) t=0 e=0 for i in range (0,n): t=t+p[i] if t<s/2 and t+p[i+1]>=s/2: e=i break if s/2-t<t+p[e+1]-s/2: print(e+1,n-e-1) else: print(e+2,n-e-2)
Title: Alice, Bob and Chocolate Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Alice and Bob like games. And now they are ready to start a new game. They have placed *n* chocolate bars in a line. Alice starts to eat chocolate bars one by one from left to right, and Bob — from right to left. Fo...
```python n=int(input()) p=[int(x) for x in input().split()] s=sum(p) t=0 e=0 for i in range (0,n): t=t+p[i] if t<s/2 and t+p[i+1]>=s/2: e=i break if s/2-t<t+p[e+1]-s/2: print(e+1,n-e-1) else: print(e+2,n-e-2) ```
-1
996
A
Hit the Lottery
PROGRAMMING
800
[ "dp", "greedy" ]
null
null
Allen has a LOT of money. He has $n$ dollars in the bank. For security reasons, he wants to withdraw it in cash (we will not disclose the reasons here). The denominations for dollar bills are $1$, $5$, $10$, $20$, $100$. What is the minimum number of bills Allen could receive after withdrawing his entire balance?
The first and only line of input contains a single integer $n$ ($1 \le n \le 10^9$).
Output the minimum number of bills that Allen could receive.
[ "125\n", "43\n", "1000000000\n" ]
[ "3\n", "5\n", "10000000\n" ]
In the first sample case, Allen can withdraw this with a $100$ dollar bill, a $20$ dollar bill, and a $5$ dollar bill. There is no way for Allen to receive $125$ dollars in one or two bills. In the second sample case, Allen can withdraw two $20$ dollar bills and three $1$ dollar bills. In the third sample case, Allen...
500
[ { "input": "125", "output": "3" }, { "input": "43", "output": "5" }, { "input": "1000000000", "output": "10000000" }, { "input": "4", "output": "4" }, { "input": "5", "output": "1" }, { "input": "1", "output": "1" }, { "input": "74", "o...
1,684,835,482
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
30
0
n=int(input()) cnt=0 while(n>0): if n>=100: cnt+=n/100 n=n%100 if n>=20: cnt+=n/20 n=n%20 if n>=10: cnt+=n/10 n=n%10 if n>=5: cnt+=n/5 n=n%5 if n>=1: cnt+=n/1 n=n%1 print(int(cnt))
Title: Hit the Lottery Time Limit: None seconds Memory Limit: None megabytes Problem Description: Allen has a LOT of money. He has $n$ dollars in the bank. For security reasons, he wants to withdraw it in cash (we will not disclose the reasons here). The denominations for dollar bills are $1$, $5$, $10$, $20$, $100$...
```python n=int(input()) cnt=0 while(n>0): if n>=100: cnt+=n/100 n=n%100 if n>=20: cnt+=n/20 n=n%20 if n>=10: cnt+=n/10 n=n%10 if n>=5: cnt+=n/5 n=n%5 if n>=1: cnt+=n/1 n=n%1 print(int(cnt)) ```
0
886
B
Vlad and Cafes
PROGRAMMING
1,000
[]
null
null
Vlad likes to eat in cafes very much. During his life, he has visited cafes *n* times. Unfortunately, Vlad started to feel that his last visits are not any different from each other. To fix that Vlad had a small research. First of all, Vlad assigned individual indices to all cafes. Then, he wrote down indices of cafes...
In first line there is one integer *n* (1<=≤<=*n*<=≤<=2·105) — number of cafes indices written by Vlad. In second line, *n* numbers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=2·105) are written — indices of cafes in order of being visited by Vlad. Vlad could visit some cafes more than once. Note that in numeration, ...
Print one integer — index of the cafe that Vlad hasn't visited for as long as possible.
[ "5\n1 3 2 1 2\n", "6\n2 1 2 2 4 1\n" ]
[ "3\n", "2\n" ]
In first test, there are three cafes, and the last visits to cafes with indices 1 and 2 were after the last visit to cafe with index 3; so this cafe is the answer. In second test case, there are also three cafes, but with indices 1, 2 and 4. Cafes with indices 1 and 4 were visited after the last visit of cafe with in...
1,000
[ { "input": "5\n1 3 2 1 2", "output": "3" }, { "input": "6\n2 1 2 2 4 1", "output": "2" }, { "input": "1\n0", "output": "0" }, { "input": "1\n200000", "output": "200000" }, { "input": "2\n2018 2017", "output": "2018" }, { "input": "5\n100 1000 1000 1000...
1,510,507,849
5,149
Python 3
TIME_LIMIT_EXCEEDED
PRETESTS
4
2,000
11,673,600
a = [] n = int(input()) a = input().split() sett = set(a) stri = ''.join(a) maxik = 0 max_i = 0 for i in sett: l = stri.rfind(i) raz = n - l if raz > maxik: maxik=raz max_i=a[l] print(max_i)
Title: Vlad and Cafes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vlad likes to eat in cafes very much. During his life, he has visited cafes *n* times. Unfortunately, Vlad started to feel that his last visits are not any different from each other. To fix that Vlad had a small research...
```python a = [] n = int(input()) a = input().split() sett = set(a) stri = ''.join(a) maxik = 0 max_i = 0 for i in sett: l = stri.rfind(i) raz = n - l if raz > maxik: maxik=raz max_i=a[l] print(max_i) ```
0
717
E
Paint it really, really dark gray
PROGRAMMING
1,900
[ "dfs and similar" ]
null
null
I see a pink boar and I want it painted black. Black boars look much more awesome and mighty than the pink ones. Since Jaggy became the ruler of the forest, he has been trying his best to improve the diplomatic relations between the forest region and the nearby ones. Some other rulers, however, have requested too muc...
The first line of input contains integer *n* (2<=≤<=*n*<=≤<=200<=000), denoting the number of vertices in the tree. The following *n* lines contains *n* integers, which represent the color of the nodes. If the *i*-th integer is 1, if the *i*-th vertex is black and <=-<=1 if the *i*-th vertex is pink. Each of the next...
Output path of a squirrel: output a sequence of visited nodes' indexes in order of visiting. In case of all the nodes are initially black, you should print 1. Solution is guaranteed to exist. If there are multiple solutions to the problem you can output any of them provided length of sequence is not longer than 107.
[ "5\n1\n1\n-1\n1\n-1\n2 5\n4 3\n2 4\n4 1\n" ]
[ "1 4 2 5 2 4 3 4 1 4 1\n" ]
At the beginning squirrel is at node 1 and its color is black. Next steps are as follows: - From node 1 we walk to node 4 and change its color to pink. - From node 4 we walk to node 2 and change its color to pink. - From node 2 we walk to node 5 and change its color to black. - From node 5 we return to node 2 and...
0
[ { "input": "5\n1\n1\n-1\n1\n-1\n2 5\n4 3\n2 4\n4 1", "output": "1 4 2 5 2 4 3 4 1 4 1" }, { "input": "2\n-1\n1\n2 1", "output": "1 2 1 2 1 2 1 2" }, { "input": "12\n-1\n-1\n1\n-1\n1\n1\n-1\n1\n1\n-1\n1\n-1\n1 3\n1 2\n2 5\n2 4\n3 7\n3 6\n4 9\n4 8\n5 11\n5 10\n12 11", "output": "1 2 4 ...
1,532,387,066
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
93
102,400
from collections import defaultdict import sys input = sys.stdin.readline adj = {} path = [] # Paints the subtree of x def paint(x, p): if x != 0: state[x] *= -1 path.append(x) for neigh in adj[x]: # Not retracting if neigh != p: # Recursively paint tree # You reach this node agai...
Title: Paint it really, really dark gray Time Limit: None seconds Memory Limit: None megabytes Problem Description: I see a pink boar and I want it painted black. Black boars look much more awesome and mighty than the pink ones. Since Jaggy became the ruler of the forest, he has been trying his best to improve the d...
```python from collections import defaultdict import sys input = sys.stdin.readline adj = {} path = [] # Paints the subtree of x def paint(x, p): if x != 0: state[x] *= -1 path.append(x) for neigh in adj[x]: # Not retracting if neigh != p: # Recursively paint tree # You reach this...
-1
723
A
The New Year: Meeting Friends
PROGRAMMING
800
[ "implementation", "math", "sortings" ]
null
null
There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They plan to celebrate the New Year together, so they need to meet at one point. What is the minimum total distance they...
The first line of the input contains three distinct integers *x*1, *x*2 and *x*3 (1<=≤<=*x*1,<=*x*2,<=*x*3<=≤<=100) — the coordinates of the houses of the first, the second and the third friends respectively.
Print one integer — the minimum total distance the friends need to travel in order to meet together.
[ "7 1 4\n", "30 20 10\n" ]
[ "6\n", "20\n" ]
In the first sample, friends should meet at the point 4. Thus, the first friend has to travel the distance of 3 (from the point 7 to the point 4), the second friend also has to travel the distance of 3 (from the point 1 to the point 4), while the third friend should not go anywhere because he lives at the point 4.
500
[ { "input": "7 1 4", "output": "6" }, { "input": "30 20 10", "output": "20" }, { "input": "1 4 100", "output": "99" }, { "input": "100 1 91", "output": "99" }, { "input": "1 45 100", "output": "99" }, { "input": "1 2 3", "output": "2" }, { "...
1,678,681,193
2,147,483,647
Python 3
OK
TESTS
48
46
0
result=list(map(int,input().split())) result.sort() print(result[-1]-result[0])
Title: The New Year: Meeting Friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They ...
```python result=list(map(int,input().split())) result.sort() print(result[-1]-result[0]) ```
3
467
A
George and Accommodation
PROGRAMMING
800
[ "implementation" ]
null
null
George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into a dormitory. George and Alex want to live in the same room. The dormitory has *n* rooms in total. At the moment the *i*-th room has *p**i* peopl...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of rooms. The *i*-th of the next *n* lines contains two integers *p**i* and *q**i* (0<=≤<=*p**i*<=≤<=*q**i*<=≤<=100) — the number of people who already live in the *i*-th room and the room's capacity.
Print a single integer — the number of rooms where George and Alex can move in.
[ "3\n1 1\n2 2\n3 3\n", "3\n1 10\n0 10\n10 10\n" ]
[ "0\n", "2\n" ]
none
500
[ { "input": "3\n1 1\n2 2\n3 3", "output": "0" }, { "input": "3\n1 10\n0 10\n10 10", "output": "2" }, { "input": "2\n36 67\n61 69", "output": "2" }, { "input": "3\n21 71\n10 88\n43 62", "output": "3" }, { "input": "3\n1 2\n2 3\n3 4", "output": "0" }, { "...
1,699,255,749
2,147,483,647
Python 3
OK
TESTS
27
46
0
n = int(input()) accomodation = [] available = 0 for i in range(n): inhabitants, capacity = list(map(int, input().split())) accomodation.append((inhabitants, capacity)) if capacity - inhabitants >= 2: available += 1 else: continue print(available)
Title: George and Accommodation Time Limit: None seconds Memory Limit: None megabytes Problem Description: George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into a dormitory. George and Alex want ...
```python n = int(input()) accomodation = [] available = 0 for i in range(n): inhabitants, capacity = list(map(int, input().split())) accomodation.append((inhabitants, capacity)) if capacity - inhabitants >= 2: available += 1 else: continue print(available) ```
3
189
A
Cut Ribbon
PROGRAMMING
1,300
[ "brute force", "dp" ]
null
null
Polycarpus has a ribbon, its length is *n*. He wants to cut the ribbon in a way that fulfils the following two conditions: - After the cutting each ribbon piece should have length *a*, *b* or *c*. - After the cutting the number of ribbon pieces should be maximum. Help Polycarpus and find the number of ribbon piece...
The first line contains four space-separated integers *n*, *a*, *b* and *c* (1<=≤<=*n*,<=*a*,<=*b*,<=*c*<=≤<=4000) — the length of the original ribbon and the acceptable lengths of the ribbon pieces after the cutting, correspondingly. The numbers *a*, *b* and *c* can coincide.
Print a single number — the maximum possible number of ribbon pieces. It is guaranteed that at least one correct ribbon cutting exists.
[ "5 5 3 2\n", "7 5 5 2\n" ]
[ "2\n", "2\n" ]
In the first example Polycarpus can cut the ribbon in such way: the first piece has length 2, the second piece has length 3. In the second example Polycarpus can cut the ribbon in such way: the first piece has length 5, the second piece has length 2.
500
[ { "input": "5 5 3 2", "output": "2" }, { "input": "7 5 5 2", "output": "2" }, { "input": "4 4 4 4", "output": "1" }, { "input": "1 1 1 1", "output": "1" }, { "input": "4000 1 2 3", "output": "4000" }, { "input": "4000 3 4 5", "output": "1333" }, ...
1,696,489,473
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
61
0
n, a, b, c = [int(x) for x in input().split()] arr = [a, b, c] count = 0 arr.sort() while n >= arr[0]: if a + b <= n: if a + b + c <= n: count += 3 n -= a + b + c else: count += 2 n -= a + b elif b + c <= n: count += 2 ...
Title: Cut Ribbon Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus has a ribbon, its length is *n*. He wants to cut the ribbon in a way that fulfils the following two conditions: - After the cutting each ribbon piece should have length *a*, *b* or *c*. - After the cutting the...
```python n, a, b, c = [int(x) for x in input().split()] arr = [a, b, c] count = 0 arr.sort() while n >= arr[0]: if a + b <= n: if a + b + c <= n: count += 3 n -= a + b + c else: count += 2 n -= a + b elif b + c <= n: count += ...
0
268
A
Games
PROGRAMMING
800
[ "brute force" ]
null
null
Manao works on a sports TV. He's spent much time watching the football games of some country. After a while he began to notice different patterns. For example, each team has two sets of uniforms: home uniform and guest uniform. When a team plays a game at home, the players put on the home uniform. When a team plays as ...
The first line contains an integer *n* (2<=≤<=*n*<=≤<=30). Each of the following *n* lines contains a pair of distinct space-separated integers *h**i*, *a**i* (1<=≤<=*h**i*,<=*a**i*<=≤<=100) — the colors of the *i*-th team's home and guest uniforms, respectively.
In a single line print the number of games where the host team is going to play in the guest uniform.
[ "3\n1 2\n2 4\n3 4\n", "4\n100 42\n42 100\n5 42\n100 5\n", "2\n1 2\n1 2\n" ]
[ "1\n", "5\n", "0\n" ]
In the first test case the championship consists of 6 games. The only game with the event in question is the game between teams 2 and 1 on the stadium of team 2. In the second test sample the host team will have to wear guest uniform in the games between teams: 1 and 2, 2 and 1, 2 and 3, 3 and 4, 4 and 2 (the host tea...
500
[ { "input": "3\n1 2\n2 4\n3 4", "output": "1" }, { "input": "4\n100 42\n42 100\n5 42\n100 5", "output": "5" }, { "input": "2\n1 2\n1 2", "output": "0" }, { "input": "7\n4 7\n52 55\n16 4\n55 4\n20 99\n3 4\n7 52", "output": "6" }, { "input": "10\n68 42\n1 35\n25 70\n...
1,693,739,546
2,147,483,647
Python 3
OK
TESTS
31
92
0
n = int(input()) ho = [] gst = [] for i in range(n): team = input().split() ho.append(team[0]) gst.append(team[1]) count = 0 for c in ho: count += gst.count(c) print(count)
Title: Games Time Limit: None seconds Memory Limit: None megabytes Problem Description: Manao works on a sports TV. He's spent much time watching the football games of some country. After a while he began to notice different patterns. For example, each team has two sets of uniforms: home uniform and guest uniform. W...
```python n = int(input()) ho = [] gst = [] for i in range(n): team = input().split() ho.append(team[0]) gst.append(team[1]) count = 0 for c in ho: count += gst.count(c) print(count) ```
3
315
A
Sereja and Bottles
PROGRAMMING
1,400
[ "brute force" ]
null
null
Sereja and his friends went to a picnic. The guys had *n* soda bottles just for it. Sereja forgot the bottle opener as usual, so the guys had to come up with another way to open bottles. Sereja knows that the *i*-th bottle is from brand *a**i*, besides, you can use it to open other bottles of brand *b**i*. You can use...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of bottles. The next *n* lines contain the bottles' description. The *i*-th line contains two integers *a**i*,<=*b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=1000) — the description of the *i*-th bottle.
In a single line print a single integer — the answer to the problem.
[ "4\n1 1\n2 2\n3 3\n4 4\n", "4\n1 2\n2 3\n3 4\n4 1\n" ]
[ "4\n", "0\n" ]
none
500
[ { "input": "4\n1 1\n2 2\n3 3\n4 4", "output": "4" }, { "input": "4\n1 2\n2 3\n3 4\n4 1", "output": "0" }, { "input": "3\n2 828\n4 392\n4 903", "output": "3" }, { "input": "4\n2 3\n1 772\n3 870\n3 668", "output": "2" }, { "input": "5\n1 4\n6 6\n4 3\n3 4\n4 758", ...
1,587,652,066
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include<bits/stdc++.h> using namespace std; long long debug_counter=0; #define debug(x) cerr<<#x<<" is "<<x<<"\n"; #define debug2(x,y) cerr<<"key "<<#x<<" is "<<x<<" value "<<#y<<" is "<<y<<"\n"; #define error() cerr<<debug_counter<<"\n"; #define real() cout<<"\n"; void logic() { int n; cin>>n;...
Title: Sereja and Bottles Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja and his friends went to a picnic. The guys had *n* soda bottles just for it. Sereja forgot the bottle opener as usual, so the guys had to come up with another way to open bottles. Sereja knows that the *i*-th...
```python #include<bits/stdc++.h> using namespace std; long long debug_counter=0; #define debug(x) cerr<<#x<<" is "<<x<<"\n"; #define debug2(x,y) cerr<<"key "<<#x<<" is "<<x<<" value "<<#y<<" is "<<y<<"\n"; #define error() cerr<<debug_counter<<"\n"; #define real() cout<<"\n"; void logic() { int n; ...
-1
119
A
Epic Game
PROGRAMMING
800
[ "implementation" ]
null
null
Simon and Antisimon play a game. Initially each player receives one fixed positive integer that doesn't change throughout the game. Simon receives number *a* and Antisimon receives number *b*. They also have a heap of *n* stones. The players take turns to make a move and Simon starts. During a move a player should take...
The only string contains space-separated integers *a*, *b* and *n* (1<=≤<=*a*,<=*b*,<=*n*<=≤<=100) — the fixed numbers Simon and Antisimon have received correspondingly and the initial number of stones in the pile.
If Simon wins, print "0" (without the quotes), otherwise print "1" (without the quotes).
[ "3 5 9\n", "1 1 100\n" ]
[ "0", "1" ]
The greatest common divisor of two non-negative integers *a* and *b* is such maximum positive integer *k*, that *a* is divisible by *k* without remainder and similarly, *b* is divisible by *k* without remainder. Let *gcd*(*a*, *b*) represent the operation of calculating the greatest common divisor of numbers *a* and *b...
500
[ { "input": "3 5 9", "output": "0" }, { "input": "1 1 100", "output": "1" }, { "input": "23 12 16", "output": "1" }, { "input": "95 26 29", "output": "1" }, { "input": "73 32 99", "output": "1" }, { "input": "1 1 1", "output": "0" }, { "inpu...
1,542,272,915
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
186
0
s=[int(x) for x in input().split()] m=n a=s[0] b=s[1] n=s[2] def f(x,y): while x!=y: x=min(x,y) y=max(x,y) t=y%x y=x x=t return x for i in range(n): a1=f(a,m) b1=f(b,m) if a1>m: print(0) break elif b1>m: print(1)...
Title: Epic Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Simon and Antisimon play a game. Initially each player receives one fixed positive integer that doesn't change throughout the game. Simon receives number *a* and Antisimon receives number *b*. They also have a heap of *n* sto...
```python s=[int(x) for x in input().split()] m=n a=s[0] b=s[1] n=s[2] def f(x,y): while x!=y: x=min(x,y) y=max(x,y) t=y%x y=x x=t return x for i in range(n): a1=f(a,m) b1=f(b,m) if a1>m: print(0) break elif b1>m: ...
-1
369
B
Valera and Contest
PROGRAMMING
1,400
[ "constructive algorithms", "implementation", "math" ]
null
null
Valera loves to participate in competitions. Especially in programming contests. Today he has participated in the contest with his team, consisting of *n* students (including Valera). This contest was an individual competition, so each student in the team solved problems individually. After the contest was over, Valer...
The first line of the input contains exactly six integers *n*,<=*k*,<=*l*,<=*r*,<=*s**all*,<=*s**k* (1<=≤<=*n*,<=*k*,<=*l*,<=*r*<=≤<=1000; *l*<=≤<=*r*; *k*<=≤<=*n*; 1<=≤<=*s**k*<=≤<=*s**all*<=≤<=106). It's guaranteed that the input is such that the answer exists.
Print exactly *n* integers *a*1,<=*a*2,<=...,<=*a**n* — the number of points each student scored. If there are multiple solutions, you can print any of them. You can print the distribution of points in any order.
[ "5 3 1 3 13 9\n", "5 3 1 3 15 9\n" ]
[ "2 3 2 3 3 ", "3 3 3 3 3 " ]
none
1,000
[ { "input": "5 3 1 3 13 9", "output": "2 3 2 3 3 " }, { "input": "5 3 1 3 15 9", "output": "3 3 3 3 3 " }, { "input": "50 25 1 1 50 25", "output": "1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 " }, { "input": "1000 700 782...
1,572,276,699
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
10
202
2,355,200
def f(sk, k): q, m = divmod(sk, k) for i in range(m): print(q + 1) for i in range(k - m): print(q) n, k, l, r, sa, sk = map(int, input().split()) f(sk, k) f(sa - sk, n - k)
Title: Valera and Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera loves to participate in competitions. Especially in programming contests. Today he has participated in the contest with his team, consisting of *n* students (including Valera). This contest was an individual c...
```python def f(sk, k): q, m = divmod(sk, k) for i in range(m): print(q + 1) for i in range(k - m): print(q) n, k, l, r, sa, sk = map(int, input().split()) f(sk, k) f(sa - sk, n - k) ```
-1
750
A
New Year and Hurry
PROGRAMMING
800
[ "binary search", "brute force", "implementation", "math" ]
null
null
Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem 1 is the easiest and problem *n* is the hardest. Limak knows it will take him 5·*i* minutes to solve th...
The only line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=10, 1<=≤<=*k*<=≤<=240) — the number of the problems in the contest and the number of minutes Limak needs to get to the party from his house.
Print one integer, denoting the maximum possible number of problems Limak can solve so that he could get to the party at midnight or earlier.
[ "3 222\n", "4 190\n", "7 1\n" ]
[ "2\n", "4\n", "7\n" ]
In the first sample, there are 3 problems and Limak needs 222 minutes to get to the party. The three problems require 5, 10 and 15 minutes respectively. Limak can spend 5 + 10 = 15 minutes to solve first two problems. Then, at 20:15 he can leave his house to get to the party at 23:57 (after 222 minutes). In this scenar...
500
[ { "input": "3 222", "output": "2" }, { "input": "4 190", "output": "4" }, { "input": "7 1", "output": "7" }, { "input": "10 135", "output": "6" }, { "input": "10 136", "output": "5" }, { "input": "1 1", "output": "1" }, { "input": "1 240", ...
1,688,147,977
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
46
0
n,k=map(int,input().strip().split()) t=0 v=240-k ans=1 while t<v: ans+=1 t+=(5*ans) # if t<v: # ans+=1 print(min(ans-1,n))
Title: New Year and Hurry Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem...
```python n,k=map(int,input().strip().split()) t=0 v=240-k ans=1 while t<v: ans+=1 t+=(5*ans) # if t<v: # ans+=1 print(min(ans-1,n)) ```
0
798
A
Mike and palindrome
PROGRAMMING
1,000
[ "brute force", "constructive algorithms", "strings" ]
null
null
Mike has a string *s* consisting of only lowercase English letters. He wants to change exactly one character from the string so that the resulting one is a palindrome. A palindrome is a string that reads the same backward as forward, for example strings "z", "aaa", "aba", "abccba" are palindromes, but strings "codefo...
The first and single line contains string *s* (1<=≤<=|*s*|<=≤<=15).
Print "YES" (without quotes) if Mike can change exactly one character so that the resulting string is palindrome or "NO" (without quotes) otherwise.
[ "abccaa\n", "abbcca\n", "abcda\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
500
[ { "input": "abccaa", "output": "YES" }, { "input": "abbcca", "output": "NO" }, { "input": "abcda", "output": "YES" }, { "input": "kyw", "output": "YES" }, { "input": "fccf", "output": "NO" }, { "input": "mnlm", "output": "YES" }, { "input":...
1,637,046,500
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
s=input() n=len(s) count=0 for i in range(n-1): if(s[i]==!s[n-i-1]): count=count+1 if(count==1)or(count==0): print("YES") else: print("NO")
Title: Mike and palindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mike has a string *s* consisting of only lowercase English letters. He wants to change exactly one character from the string so that the resulting one is a palindrome. A palindrome is a string that reads the same ...
```python s=input() n=len(s) count=0 for i in range(n-1): if(s[i]==!s[n-i-1]): count=count+1 if(count==1)or(count==0): print("YES") else: print("NO") ```
-1
6
A
Triangle
PROGRAMMING
900
[ "brute force", "geometry" ]
A. Triangle
2
64
Johnny has a younger sister Anne, who is very clever and smart. As she came home from the kindergarten, she told his brother about the task that her kindergartener asked her to solve. The task was just to construct a triangle out of four sticks of different colours. Naturally, one of the sticks is extra. It is not allo...
The first line of the input contains four space-separated positive integer numbers not exceeding 100 — lengthes of the sticks.
Output TRIANGLE if it is possible to construct a non-degenerate triangle. Output SEGMENT if the first case cannot take place and it is possible to construct a degenerate triangle. Output IMPOSSIBLE if it is impossible to construct any triangle. Remember that you are to use three sticks. It is not allowed to break the s...
[ "4 2 1 3\n", "7 2 2 4\n", "3 5 9 1\n" ]
[ "TRIANGLE\n", "SEGMENT\n", "IMPOSSIBLE\n" ]
none
0
[ { "input": "4 2 1 3", "output": "TRIANGLE" }, { "input": "7 2 2 4", "output": "SEGMENT" }, { "input": "3 5 9 1", "output": "IMPOSSIBLE" }, { "input": "3 1 5 1", "output": "IMPOSSIBLE" }, { "input": "10 10 10 10", "output": "TRIANGLE" }, { "input": "11 ...
1,614,270,219
2,147,483,647
Python 3
OK
TESTS
83
154
0
import sys input = sys.stdin.readline a = [int(x) for x in input().split()] a.sort() if a[0] + a[1] > a[2] or a[1] + a[2] > a[3]: print("TRIANGLE") elif a[0] + a[1] == a[2] or a[1] + a[2] == a[3]: print("SEGMENT") else: print("IMPOSSIBLE")
Title: Triangle Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Johnny has a younger sister Anne, who is very clever and smart. As she came home from the kindergarten, she told his brother about the task that her kindergartener asked her to solve. The task was just to construct a triangle out o...
```python import sys input = sys.stdin.readline a = [int(x) for x in input().split()] a.sort() if a[0] + a[1] > a[2] or a[1] + a[2] > a[3]: print("TRIANGLE") elif a[0] + a[1] == a[2] or a[1] + a[2] == a[3]: print("SEGMENT") else: print("IMPOSSIBLE") ```
3.9615
796
A
Buying A House
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Zane the wizard had never loved anyone before, until he fell in love with a girl, whose name remains unknown to us. The girl lives in house *m* of a village. There are *n* houses in that village, lining in a straight line from left to right: house 1, house 2, ..., house *n*. The village is also well-structured: house ...
The first line contains three integers *n*, *m*, and *k* (2<=≤<=*n*<=≤<=100, 1<=≤<=*m*<=≤<=*n*, 1<=≤<=*k*<=≤<=100) — the number of houses in the village, the house where the girl lives, and the amount of money Zane has (in dollars), respectively. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=...
Print one integer — the minimum distance, in meters, from the house where the girl Zane likes lives to the house Zane can buy.
[ "5 1 20\n0 27 32 21 19\n", "7 3 50\n62 0 0 0 99 33 22\n", "10 5 100\n1 0 1 0 0 0 0 0 1 1\n" ]
[ "40", "30", "20" ]
In the first sample, with *k* = 20 dollars, Zane can buy only house 5. The distance from house *m* = 1 to house 5 is 10 + 10 + 10 + 10 = 40 meters. In the second sample, Zane can buy houses 6 and 7. It is better to buy house 6 than house 7, since house *m* = 3 and house 6 are only 30 meters away, while house *m* = 3 a...
500
[ { "input": "5 1 20\n0 27 32 21 19", "output": "40" }, { "input": "7 3 50\n62 0 0 0 99 33 22", "output": "30" }, { "input": "10 5 100\n1 0 1 0 0 0 0 0 1 1", "output": "20" }, { "input": "5 3 1\n1 1 0 0 1", "output": "10" }, { "input": "5 5 5\n1 0 5 6 0", "outpu...
1,566,119,868
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
109
0
n,m,k=map(int,input().split()) a=list(map(int,input().split())) c=[] for i in range(m+1,n): if a[i]>0 and a[i]<=k: c.append(i-m+1) for i in range(1,m-1): if a[i]>0 and a[i]<=k: c.append(i) print(10*min(c))
Title: Buying A House Time Limit: None seconds Memory Limit: None megabytes Problem Description: Zane the wizard had never loved anyone before, until he fell in love with a girl, whose name remains unknown to us. The girl lives in house *m* of a village. There are *n* houses in that village, lining in a straight li...
```python n,m,k=map(int,input().split()) a=list(map(int,input().split())) c=[] for i in range(m+1,n): if a[i]>0 and a[i]<=k: c.append(i-m+1) for i in range(1,m-1): if a[i]>0 and a[i]<=k: c.append(i) print(10*min(c)) ```
0
263
A
Beautiful Matrix
PROGRAMMING
800
[ "implementation" ]
null
null
You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to right. In one move, you are allowed to apply one of the two following transformations to the matrix: 1....
The input consists of five lines, each line contains five integers: the *j*-th integer in the *i*-th line of the input represents the element of the matrix that is located on the intersection of the *i*-th row and the *j*-th column. It is guaranteed that the matrix consists of 24 zeroes and a single number one.
Print a single integer — the minimum number of moves needed to make the matrix beautiful.
[ "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n", "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n" ]
[ "3\n", "1\n" ]
none
500
[ { "input": "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "3" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "1" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 0 1 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "0" }, { "input": "0 0 0 0 0...
1,694,290,611
2,147,483,647
Python 3
OK
TESTS
25
92
0
if __name__ == '__main__': m, steps = [], 0 for r in range(5): row = input().split() if '1' in row: steps += abs(2-r) + abs(2-row.index('1')) break print(steps)
Title: Beautiful Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to ri...
```python if __name__ == '__main__': m, steps = [], 0 for r in range(5): row = input().split() if '1' in row: steps += abs(2-r) + abs(2-row.index('1')) break print(steps) ```
3
21
B
Intersection
PROGRAMMING
2,000
[ "implementation", "math" ]
B. Intersection
1
256
You are given two set of points. The first set is determined by the equation *A*1*x*<=+<=*B*1*y*<=+<=*C*1<==<=0, and the second one is determined by the equation *A*2*x*<=+<=*B*2*y*<=+<=*C*2<==<=0. Write the program which finds the number of points in the intersection of two given sets.
The first line of the input contains three integer numbers *A*1,<=*B*1,<=*C*1 separated by space. The second line contains three integer numbers *A*2,<=*B*2,<=*C*2 separated by space. All the numbers are between -100 and 100, inclusive.
Print the number of points in the intersection or -1 if there are infinite number of points.
[ "1 1 0\n2 2 0\n", "1 1 0\n2 -2 0\n" ]
[ "-1\n", "1\n" ]
none
1,000
[ { "input": "1 1 0\n2 2 0", "output": "-1" }, { "input": "1 1 0\n2 -2 0", "output": "1" }, { "input": "0 0 0\n0 0 0", "output": "-1" }, { "input": "1 1 1\n1 1 1", "output": "-1" }, { "input": "8 3 -4\n-5 2 7", "output": "1" }, { "input": "-1 -1 0\n0 -1 ...
1,691,633,666
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
31
0
# LUOGU_RID: 120004273 def gtof(a, b, c): if b != 0: return -a / b, -c / b else: return 101, -c / a k1, b1 = gtof(*map(int, input().split())) k2, b2 = gtof(*map(int, input().split())) if k1 == k2: if b1 == b2: print(-1) else: print(0) else: print(1)
Title: Intersection Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: You are given two set of points. The first set is determined by the equation *A*1*x*<=+<=*B*1*y*<=+<=*C*1<==<=0, and the second one is determined by the equation *A*2*x*<=+<=*B*2*y*<=+<=*C*2<==<=0. Write the program which fin...
```python # LUOGU_RID: 120004273 def gtof(a, b, c): if b != 0: return -a / b, -c / b else: return 101, -c / a k1, b1 = gtof(*map(int, input().split())) k2, b2 = gtof(*map(int, input().split())) if k1 == k2: if b1 == b2: print(-1) else: print(0) else: print(1) ```
-1
698
A
Vacations
PROGRAMMING
1,400
[ "dp" ]
null
null
Vasya has *n* days of vacations! So he decided to improve his IT skills and do sport. Vasya knows the following information about each of this *n* days: whether that gym opened and whether a contest was carried out in the Internet on that day. For the *i*-th day there are four options: 1. on this day the gym is close...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100) — the number of days of Vasya's vacations. The second line contains the sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=3) separated by space, where: - *a**i* equals 0, if on the *i*-th day of vacations the gym is closed and the co...
Print the minimum possible number of days on which Vasya will have a rest. Remember that Vasya refuses: - to do sport on any two consecutive days, - to write the contest on any two consecutive days.
[ "4\n1 3 2 0\n", "7\n1 3 3 2 1 2 3\n", "2\n2 2\n" ]
[ "2\n", "0\n", "1\n" ]
In the first test Vasya can write the contest on the day number 1 and do sport on the day number 3. Thus, he will have a rest for only 2 days. In the second test Vasya should write contests on days number 1, 3, 5 and 7, in other days do sport. Thus, he will not have a rest for a single day. In the third test Vasya ca...
500
[ { "input": "4\n1 3 2 0", "output": "2" }, { "input": "7\n1 3 3 2 1 2 3", "output": "0" }, { "input": "2\n2 2", "output": "1" }, { "input": "1\n0", "output": "1" }, { "input": "10\n0 0 1 1 0 0 0 0 1 0", "output": "8" }, { "input": "100\n3 2 3 3 3 2 3 1 ...
1,671,039,358
2,147,483,647
PyPy 3-64
MEMORY_LIMIT_EXCEEDED
TESTS
0
62
268,390,400
import os import sys from io import BytesIO, IOBase import collections sys.setrecursionlimit(10**9) # sys.stdin = open('Input.txt','r') # sys.stdout = open('Output.txt','w') BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() s...
Title: Vacations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has *n* days of vacations! So he decided to improve his IT skills and do sport. Vasya knows the following information about each of this *n* days: whether that gym opened and whether a contest was carried out in the Int...
```python import os import sys from io import BytesIO, IOBase import collections sys.setrecursionlimit(10**9) # sys.stdin = open('Input.txt','r') # sys.stdout = open('Output.txt','w') BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() ...
0
798
A
Mike and palindrome
PROGRAMMING
1,000
[ "brute force", "constructive algorithms", "strings" ]
null
null
Mike has a string *s* consisting of only lowercase English letters. He wants to change exactly one character from the string so that the resulting one is a palindrome. A palindrome is a string that reads the same backward as forward, for example strings "z", "aaa", "aba", "abccba" are palindromes, but strings "codefo...
The first and single line contains string *s* (1<=≤<=|*s*|<=≤<=15).
Print "YES" (without quotes) if Mike can change exactly one character so that the resulting string is palindrome or "NO" (without quotes) otherwise.
[ "abccaa\n", "abbcca\n", "abcda\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
500
[ { "input": "abccaa", "output": "YES" }, { "input": "abbcca", "output": "NO" }, { "input": "abcda", "output": "YES" }, { "input": "kyw", "output": "YES" }, { "input": "fccf", "output": "NO" }, { "input": "mnlm", "output": "YES" }, { "input":...
1,682,870,366
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
46
0
s = list(input()) r = list(reversed(s)) c = 0 for i, j in zip(s, r): if i != j: c += 1 print("NO" if c > 2 else "YES")
Title: Mike and palindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mike has a string *s* consisting of only lowercase English letters. He wants to change exactly one character from the string so that the resulting one is a palindrome. A palindrome is a string that reads the same ...
```python s = list(input()) r = list(reversed(s)) c = 0 for i, j in zip(s, r): if i != j: c += 1 print("NO" if c > 2 else "YES") ```
0
361
B
Levko and Permutation
PROGRAMMING
1,200
[ "constructive algorithms", "math", "number theory" ]
null
null
Levko loves permutations very much. A permutation of length *n* is a sequence of distinct positive integers, each is at most *n*. Let’s assume that value *gcd*(*a*,<=*b*) shows the greatest common divisor of numbers *a* and *b*. Levko assumes that element *p**i* of permutation *p*1,<=*p*2,<=... ,<=*p**n* is good if *g...
The single line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=105, 0<=≤<=*k*<=≤<=*n*).
In a single line print either any beautiful permutation or -1, if such permutation doesn’t exist. If there are multiple suitable permutations, you are allowed to print any of them.
[ "4 2\n", "1 1\n" ]
[ "2 4 3 1", "-1\n" ]
In the first sample elements 4 and 3 are good because *gcd*(2, 4) = 2 &gt; 1 and *gcd*(3, 3) = 3 &gt; 1. Elements 2 and 1 are not good because *gcd*(1, 2) = 1 and *gcd*(4, 1) = 1. As there are exactly 2 good elements, the permutation is beautiful. The second sample has no beautiful permutations.
1,000
[ { "input": "4 2", "output": "2 1 3 4 " }, { "input": "1 1", "output": "-1" }, { "input": "7 4", "output": "3 1 2 4 5 6 7 " }, { "input": "10 9", "output": "1 2 3 4 5 6 7 8 9 10 " }, { "input": "10000 5000", "output": "5000 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1...
1,627,417,792
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
6,963,200
num = str(input()).split() if (num[0] == num[1]): print("-1") else: a = int(num[0]) b = int(num[1]) saida = str((b + 1) % (a+1)) + " " for x in range(2, int(num[0]) + 1): if(x-1 <= b): saida += str(x) + " " else: saida += str((x)%(a+1)) + " " print (said...
Title: Levko and Permutation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Levko loves permutations very much. A permutation of length *n* is a sequence of distinct positive integers, each is at most *n*. Let’s assume that value *gcd*(*a*,<=*b*) shows the greatest common divisor of numb...
```python num = str(input()).split() if (num[0] == num[1]): print("-1") else: a = int(num[0]) b = int(num[1]) saida = str((b + 1) % (a+1)) + " " for x in range(2, int(num[0]) + 1): if(x-1 <= b): saida += str(x) + " " else: saida += str((x)%(a+1)) + " " p...
0
681
C
Heap Operations
PROGRAMMING
1,600
[ "constructive algorithms", "data structures", "greedy" ]
null
null
Petya has recently learned data structure named "Binary heap". The heap he is now operating with allows the following operations: - put the given number into the heap; - get the value of the minimum element in the heap; - extract the minimum element from the heap; Thus, at any moment of time the heap contains se...
The first line of the input contains the only integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of the records left in Petya's journal. Each of the following *n* lines describe the records in the current log in the order they are applied. Format described in the statement is used. All numbers in the input are integers...
The first line of the output should contain a single integer *m* — the minimum possible number of records in the modified sequence of operations. Next *m* lines should contain the corrected sequence of records following the format of the input (described in the statement), one per line and in the order they are applie...
[ "2\ninsert 3\ngetMin 4\n", "4\ninsert 1\ninsert 1\nremoveMin\ngetMin 2\n" ]
[ "4\ninsert 3\nremoveMin\ninsert 4\ngetMin 4\n", "6\ninsert 1\ninsert 1\nremoveMin\nremoveMin\ninsert 2\ngetMin 2\n" ]
In the first sample, after number 3 is inserted into the heap, the minimum number is 3. To make the result of the first getMin equal to 4 one should firstly remove number 3 from the heap and then add number 4 into the heap. In the second sample case number 1 is inserted two times, so should be similarly removed twice.
1,500
[ { "input": "2\ninsert 3\ngetMin 4", "output": "4\ninsert 3\nremoveMin\ninsert 4\ngetMin 4" }, { "input": "4\ninsert 1\ninsert 1\nremoveMin\ngetMin 2", "output": "6\ninsert 1\ninsert 1\nremoveMin\nremoveMin\ninsert 2\ngetMin 2" }, { "input": "1\ninsert 1", "output": "1\ninsert 1" },...
1,651,183,061
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
3
46
409,600
import heapq from pprint import pprint def pop_till_receive(heap, num, seq): while heap[0] != num: seq.append(seq[-1]) seq[-2] = "removeMin" heapq.heappop(heap) return if __name__ == '__main__': heap = [] n = int(input()) seq = [] for i in range(n): ...
Title: Heap Operations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya has recently learned data structure named "Binary heap". The heap he is now operating with allows the following operations: - put the given number into the heap; - get the value of the minimum element in the ...
```python import heapq from pprint import pprint def pop_till_receive(heap, num, seq): while heap[0] != num: seq.append(seq[-1]) seq[-2] = "removeMin" heapq.heappop(heap) return if __name__ == '__main__': heap = [] n = int(input()) seq = [] for i in ra...
-1
460
A
Vasya and Socks
PROGRAMMING
900
[ "brute force", "implementation", "math" ]
null
null
Vasya has *n* pairs of socks. In the morning of each day Vasya has to put on a pair of socks before he goes to school. When he comes home in the evening, Vasya takes off the used socks and throws them away. Every *m*-th day (at days with numbers *m*,<=2*m*,<=3*m*,<=...) mom buys a pair of socks to Vasya. She does it la...
The single line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=100; 2<=≤<=*m*<=≤<=100), separated by a space.
Print a single integer — the answer to the problem.
[ "2 2\n", "9 3\n" ]
[ "3\n", "13\n" ]
In the first sample Vasya spends the first two days wearing the socks that he had initially. Then on day three he puts on the socks that were bought on day two. In the second sample Vasya spends the first nine days wearing the socks that he had initially. Then he spends three days wearing the socks that were bought on...
500
[ { "input": "2 2", "output": "3" }, { "input": "9 3", "output": "13" }, { "input": "1 2", "output": "1" }, { "input": "2 3", "output": "2" }, { "input": "1 99", "output": "1" }, { "input": "4 4", "output": "5" }, { "input": "10 2", "outp...
1,643,437,508
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
109
2,048,000
import math def solve(): l1 = [int(x) for x in input().split()] add = l1[0] n = l1[0] p = l1[1] while (n): add += n / p n = n / p print(math.floor(add)) if _name_ == '_main_': solve()
Title: Vasya and Socks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has *n* pairs of socks. In the morning of each day Vasya has to put on a pair of socks before he goes to school. When he comes home in the evening, Vasya takes off the used socks and throws them away. Every *m*-th...
```python import math def solve(): l1 = [int(x) for x in input().split()] add = l1[0] n = l1[0] p = l1[1] while (n): add += n / p n = n / p print(math.floor(add)) if _name_ == '_main_': solve() ```
-1
620
B
Grandfather Dovlet’s calculator
PROGRAMMING
1,000
[ "implementation" ]
null
null
Once Max found an electronic calculator from his grandfather Dovlet's chest. He noticed that the numbers were written with seven-segment indicators ([https://en.wikipedia.org/wiki/Seven-segment_display](https://en.wikipedia.org/wiki/Seven-segment_display)). Max starts to type all the values from *a* to *b*. After typi...
The only line contains two integers *a*,<=*b* (1<=≤<=*a*<=≤<=*b*<=≤<=106) — the first and the last number typed by Max.
Print the only integer *a* — the total number of printed segments.
[ "1 3\n", "10 15\n" ]
[ "12\n", "39\n" ]
none
0
[ { "input": "1 3", "output": "12" }, { "input": "10 15", "output": "39" }, { "input": "1 100", "output": "928" }, { "input": "100 10000", "output": "188446" }, { "input": "213 221442", "output": "5645356" }, { "input": "1 1000000", "output": "287333...
1,453,403,206
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
1,000
0
def find(n): result = 0 for i in n: result += dic[i] return result dic = {'0':6, '1':2, '2':5, '3':5, '4':4, '5':5, '6':6, '7':3, '8':7, '9':6} if __name__ == '__main__': a, b = list(map(int, input().split())) answer = 0 i = a while i <= b: answer += find(str(i)) i += 1 print (answer)
Title: Grandfather Dovlet’s calculator Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once Max found an electronic calculator from his grandfather Dovlet's chest. He noticed that the numbers were written with seven-segment indicators ([https://en.wikipedia.org/wiki/Seven-segment_display](...
```python def find(n): result = 0 for i in n: result += dic[i] return result dic = {'0':6, '1':2, '2':5, '3':5, '4':4, '5':5, '6':6, '7':3, '8':7, '9':6} if __name__ == '__main__': a, b = list(map(int, input().split())) answer = 0 i = a while i <= b: answer += find(str(i)) i += 1 print (answer) ```
0
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,696,224,243
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n=int(input()) a=list(map(int,input().split()) ec=0 oc=0 ei=0 oi=0 for i,j in enumerate(a): if j%2==0: ec+=1 ei=i+1 else: oc+=1 oi=i+1 if ec>1 and oc==1: print(oi) else: oc>1 and ec==1: print(ei)
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python n=int(input()) a=list(map(int,input().split()) ec=0 oc=0 ei=0 oi=0 for i,j in enumerate(a): if j%2==0: ec+=1 ei=i+1 else: oc+=1 oi=i+1 if ec>1 and oc==1: print(oi) else: oc>1 and ec==1: print(ei) ```
-1
148
A
Insomnia cure
PROGRAMMING
800
[ "constructive algorithms", "implementation", "math" ]
null
null
«One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entertained herself at best she could. Tonight she imagined that all dragons were here to steal her, and ...
Input data contains integer numbers *k*,<=*l*,<=*m*,<=*n* and *d*, each number in a separate line (1<=≤<=*k*,<=*l*,<=*m*,<=*n*<=≤<=10, 1<=≤<=*d*<=≤<=105).
Output the number of damaged dragons.
[ "1\n2\n3\n4\n12\n", "2\n3\n4\n5\n24\n" ]
[ "12\n", "17\n" ]
In the first case every first dragon got punched with a frying pan. Some of the dragons suffered from other reasons as well, but the pan alone would be enough. In the second case dragons 1, 7, 11, 13, 17, 19 and 23 escaped unharmed.
1,000
[ { "input": "1\n2\n3\n4\n12", "output": "12" }, { "input": "2\n3\n4\n5\n24", "output": "17" }, { "input": "1\n1\n1\n1\n100000", "output": "100000" }, { "input": "10\n9\n8\n7\n6", "output": "0" }, { "input": "8\n4\n4\n3\n65437", "output": "32718" }, { "i...
1,695,733,302
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
92
0
k = int(input()) l = int(input()) m = int(input()) n = int(input()) d = int(input()) a = [i for i in range(1,d+1)] s = 0 for i in a: if i%k == 0 or i%l == 0 or i%m == 0 or i%n == 0: s += 1 print(i, end=' ') print('\n') print(s)
Title: Insomnia cure Time Limit: None seconds Memory Limit: None megabytes Problem Description: «One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entert...
```python k = int(input()) l = int(input()) m = int(input()) n = int(input()) d = int(input()) a = [i for i in range(1,d+1)] s = 0 for i in a: if i%k == 0 or i%l == 0 or i%m == 0 or i%n == 0: s += 1 print(i, end=' ') print('\n') print(s) ```
0
760
A
Petr and a calendar
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Petr wants to make a calendar for current month. For this purpose he draws a table in which columns correspond to weeks (a week is seven consequent days from Monday to Sunday), rows correspond to weekdays, and cells contain dates. For example, a calendar for January 2017 should look like on the picture: Petr wants to ...
The only line contain two integers *m* and *d* (1<=≤<=*m*<=≤<=12, 1<=≤<=*d*<=≤<=7) — the number of month (January is the first month, December is the twelfth) and the weekday of the first date of this month (1 is Monday, 7 is Sunday).
Print single integer: the number of columns the table should have.
[ "1 7\n", "1 1\n", "11 6\n" ]
[ "6\n", "5\n", "5\n" ]
The first example corresponds to the January 2017 shown on the picture in the statements. In the second example 1-st January is Monday, so the whole month fits into 5 columns. In the third example 1-st November is Saturday and 5 columns is enough.
500
[ { "input": "1 7", "output": "6" }, { "input": "1 1", "output": "5" }, { "input": "11 6", "output": "5" }, { "input": "2 7", "output": "5" }, { "input": "2 1", "output": "4" }, { "input": "8 6", "output": "6" }, { "input": "1 1", "output...
1,592,471,145
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
124
0
m,d=map(int,input().split()) total=0 if m in [1,3,5,7,8,10,12]: total=31 elif m==2: total=30 else: total=28 total-=8-d c=1 if total%7==0: c+=total//7 else: c+=total//7+1 print(c)
Title: Petr and a calendar Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petr wants to make a calendar for current month. For this purpose he draws a table in which columns correspond to weeks (a week is seven consequent days from Monday to Sunday), rows correspond to weekdays, and cells...
```python m,d=map(int,input().split()) total=0 if m in [1,3,5,7,8,10,12]: total=31 elif m==2: total=30 else: total=28 total-=8-d c=1 if total%7==0: c+=total//7 else: c+=total//7+1 print(c) ```
0
777
E
Hanoi Factory
PROGRAMMING
2,000
[ "brute force", "data structures", "dp", "greedy", "sortings" ]
null
null
Of course you have heard the famous task about Hanoi Towers, but did you know that there is a special factory producing the rings for this wonderful game? Once upon a time, the ruler of the ancient Egypt ordered the workers of Hanoi Factory to create as high tower as possible. They were not ready to serve such a strang...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of rings in factory's stock. The *i*-th of the next *n* lines contains three integers *a**i*, *b**i* and *h**i* (1<=≤<=*a**i*,<=*b**i*,<=*h**i*<=≤<=109, *b**i*<=&gt;<=*a**i*) — inner radius, outer radius and the height of t...
Print one integer — the maximum height of the tower that can be obtained.
[ "3\n1 5 1\n2 6 2\n3 7 3\n", "4\n1 2 1\n1 3 3\n4 6 2\n5 7 1\n" ]
[ "6\n", "4\n" ]
In the first sample, the optimal solution is to take all the rings and put them on each other in order 3, 2, 1. In the second sample, one can put the ring 3 on the ring 4 and get the tower of height 3, or put the ring 1 on the ring 2 and get the tower of height 4.
2,500
[ { "input": "3\n1 5 1\n2 6 2\n3 7 3", "output": "6" }, { "input": "4\n1 2 1\n1 3 3\n4 6 2\n5 7 1", "output": "4" }, { "input": "1\n1 2 1", "output": "1" }, { "input": "5\n6 10 4\n9 20 19\n8 11 18\n18 20 1\n19 20 8", "output": "50" }, { "input": "5\n21 25 26\n14 30 ...
1,633,229,670
2,147,483,647
Python 3
OK
TESTS
54
499
21,606,400
read = input n = int(read()) c = [] for i in range(n): a, b, h = map(int, read().split()) c.append((b, a, h)) c.append((1e18, 0, 0)) c.sort() c.reverse() s, p = [0], [0] * (n + 1) for i in range(1, n + 1): while c[s[-1]][1] >= c[i][0]: s.pop() p[i] = p[s[-1]] + c[i][2] s.append(i) print(max(p)) ...
Title: Hanoi Factory Time Limit: None seconds Memory Limit: None megabytes Problem Description: Of course you have heard the famous task about Hanoi Towers, but did you know that there is a special factory producing the rings for this wonderful game? Once upon a time, the ruler of the ancient Egypt ordered the worke...
```python read = input n = int(read()) c = [] for i in range(n): a, b, h = map(int, read().split()) c.append((b, a, h)) c.append((1e18, 0, 0)) c.sort() c.reverse() s, p = [0], [0] * (n + 1) for i in range(1, n + 1): while c[s[-1]][1] >= c[i][0]: s.pop() p[i] = p[s[-1]] + c[i][2] s.append(i) prin...
3
355
A
Vasya and Digital Root
PROGRAMMING
1,100
[ "constructive algorithms", "implementation" ]
null
null
Vasya has recently found out what a digital root of a number is and he decided to share his knowledge with you. Let's assume that *S*(*n*) is the sum of digits of number *n*, for example, *S*(4098)<==<=4<=+<=0<=+<=9<=+<=8<==<=21. Then the digital root of number *n* equals to: 1. *dr*(*n*)<==<=*S*(*n*), if *S*(*n*)<...
The first line contains two integers *k* and *d* (1<=≤<=*k*<=≤<=1000; 0<=≤<=*d*<=≤<=9).
In a single line print either any number that meets the requirements (without the leading zeroes) or "No solution" (without the quotes), if the corresponding number does not exist. The chosen number must consist of exactly *k* digits. We assume that number 0 doesn't contain any leading zeroes.
[ "4 4\n", "5 1\n", "1 0\n" ]
[ "5881\n", "36172\n", "0\n" ]
For the first test sample *dr*(5881)  =  *dr*(22)  =  4. For the second test sample *dr*(36172)  =  *dr*(19)  =  *dr*(10)  =  1.
500
[ { "input": "4 4", "output": "5881" }, { "input": "5 1", "output": "36172" }, { "input": "1 0", "output": "0" }, { "input": "8 7", "output": "49722154" }, { "input": "487 0", "output": "No solution" }, { "input": "1000 5", "output": "854193955406789...
1,616,233,542
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
0
k,d=map(int,input().split()) if d==0: print("No solution") else: number="0"*(k) number=number.replace('0',str(d),1) print((number))
Title: Vasya and Digital Root Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has recently found out what a digital root of a number is and he decided to share his knowledge with you. Let's assume that *S*(*n*) is the sum of digits of number *n*, for example, *S*(4098)<==<=4<=+<=0<=...
```python k,d=map(int,input().split()) if d==0: print("No solution") else: number="0"*(k) number=number.replace('0',str(d),1) print((number)) ```
0
551
A
GukiZ and Contest
PROGRAMMING
800
[ "brute force", "implementation", "sortings" ]
null
null
Professor GukiZ likes programming contests. He especially likes to rate his students on the contests he prepares. Now, he has decided to prepare a new contest. In total, *n* students will attend, and before the start, every one of them has some positive integer rating. Students are indexed from 1 to *n*. Let's denote...
The first line contains integer *n* (1<=≤<=*n*<=≤<=2000), number of GukiZ's students. The second line contains *n* numbers *a*1,<=*a*2,<=... *a**n* (1<=≤<=*a**i*<=≤<=2000) where *a**i* is the rating of *i*-th student (1<=≤<=*i*<=≤<=*n*).
In a single line, print the position after the end of the contest for each of *n* students in the same order as they appear in the input.
[ "3\n1 3 3\n", "1\n1\n", "5\n3 5 3 4 5\n" ]
[ "3 1 1\n", "1\n", "4 1 4 3 1\n" ]
In the first sample, students 2 and 3 are positioned first (there is no other student with higher rating), and student 1 is positioned third since there are two students with higher rating. In the second sample, first student is the only one on the contest. In the third sample, students 2 and 5 share the first positi...
500
[ { "input": "3\n1 3 3", "output": "3 1 1" }, { "input": "1\n1", "output": "1" }, { "input": "5\n3 5 3 4 5", "output": "4 1 4 3 1" }, { "input": "7\n1 3 5 4 2 2 1", "output": "6 3 1 2 4 4 6" }, { "input": "11\n5 6 4 2 9 7 6 6 6 6 7", "output": "9 4 10 11 1 2 4 4...
1,441,574,716
2,147,483,647
Python 3
OK
TESTS
36
343
512,000
wwe=int(input()) s=list(map(int,input().split())) p=sorted(s,reverse=True) k={} for i in s: if i in k: print(k[i],end=' ') else: for j in range(len(p)): if p[j]==i: print(j+1,end=' ') k[i]=j+1 ...
Title: GukiZ and Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Professor GukiZ likes programming contests. He especially likes to rate his students on the contests he prepares. Now, he has decided to prepare a new contest. In total, *n* students will attend, and before the star...
```python wwe=int(input()) s=list(map(int,input().split())) p=sorted(s,reverse=True) k={} for i in s: if i in k: print(k[i],end=' ') else: for j in range(len(p)): if p[j]==i: print(j+1,end=' ') k[i]=j+1 ...
3
932
E
Team Work
PROGRAMMING
2,400
[ "combinatorics", "dp", "math" ]
null
null
You have a team of *N* people. For a particular task, you can pick any non-empty subset of people. The cost of having *x* people for the task is *x**k*. Output the sum of costs over all non-empty subsets of people.
Only line of input contains two integers *N* (1<=≤<=*N*<=≤<=109) representing total number of people and *k* (1<=≤<=*k*<=≤<=5000).
Output the sum of costs for all non empty subsets modulo 109<=+<=7.
[ "1 1\n", "3 2\n" ]
[ "1\n", "24\n" ]
In the first example, there is only one non-empty subset {1} with cost 1<sup class="upper-index">1</sup> = 1. In the second example, there are seven non-empty subsets. - {1} with cost 1<sup class="upper-index">2</sup> = 1 - {2} with cost 1<sup class="upper-index">2</sup> = 1 - {1, 2} with cost 2<sup class="upper-in...
2,500
[ { "input": "1 1", "output": "1" }, { "input": "3 2", "output": "24" }, { "input": "5 3", "output": "800" }, { "input": "12 4", "output": "8067072" }, { "input": "20 5", "output": "87486873" }, { "input": "522 4575", "output": "558982611" }, { ...
1,518,710,016
4,716
Python 3
RUNTIME_ERROR
PRETESTS
5
46
5,632,000
def c(n, k): if(k > n - k): k = n - k ans = 1 for i in range(k): ans *= n - i ans /= i + 1 return ans n, k = map(int, input().split()) ans=0 for i in range(n+1): ans+=(c(n, i)*(i**k)%(10**9+7)) ans%=(10**9+7) print(int(ans)%(10**9+7))
Title: Team Work Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have a team of *N* people. For a particular task, you can pick any non-empty subset of people. The cost of having *x* people for the task is *x**k*. Output the sum of costs over all non-empty subsets of people. Input S...
```python def c(n, k): if(k > n - k): k = n - k ans = 1 for i in range(k): ans *= n - i ans /= i + 1 return ans n, k = map(int, input().split()) ans=0 for i in range(n+1): ans+=(c(n, i)*(i**k)%(10**9+7)) ans%=(10**9+7) print(int(ans)%(10**9+7)) ```
-1
688
B
Lovely Palindromes
PROGRAMMING
1,000
[ "constructive algorithms", "math" ]
null
null
Pari has a friend who loves palindrome numbers. A palindrome number is a number that reads the same forward or backward. For example 12321, 100001 and 1 are palindrome numbers, while 112 and 1021 are not. Pari is trying to love them too, but only very special and gifted people can understand the beauty behind palindro...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=10100<=000).
Print the *n*-th even-length palindrome number.
[ "1\n", "10\n" ]
[ "11\n", "1001\n" ]
The first 10 even-length palindrome numbers are 11, 22, 33, ... , 88, 99 and 1001.
1,000
[ { "input": "1", "output": "11" }, { "input": "10", "output": "1001" }, { "input": "11", "output": "1111" }, { "input": "12", "output": "1221" }, { "input": "100", "output": "100001" }, { "input": "1321", "output": "13211231" }, { "input": "...
1,622,129,159
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
7
1,000
11,264,000
# https://codeforces.com/contest/688/problem/B n = input() m=len(n) # for i in range(len(s)): # s[i] = int(s[i]) x = n for i in range(m): x = x+n[m-1-i] print(x)
Title: Lovely Palindromes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pari has a friend who loves palindrome numbers. A palindrome number is a number that reads the same forward or backward. For example 12321, 100001 and 1 are palindrome numbers, while 112 and 1021 are not. Pari is tr...
```python # https://codeforces.com/contest/688/problem/B n = input() m=len(n) # for i in range(len(s)): # s[i] = int(s[i]) x = n for i in range(m): x = x+n[m-1-i] print(x) ```
0
706
B
Interesting drink
PROGRAMMING
1,100
[ "binary search", "dp", "implementation" ]
null
null
Vasiliy likes to rest after a hard work, so you may often meet him in some bar nearby. As all programmers do, he loves the famous drink "Beecola", which can be bought in *n* different shops in the city. It's known that the price of one bottle in the shop *i* is equal to *x**i* coins. Vasiliy plans to buy his favorite ...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of shops in the city that sell Vasiliy's favourite drink. The second line contains *n* integers *x**i* (1<=≤<=*x**i*<=≤<=100<=000) — prices of the bottles of the drink in the *i*-th shop. The third line contains a single i...
Print *q* integers. The *i*-th of them should be equal to the number of shops where Vasiliy will be able to buy a bottle of the drink on the *i*-th day.
[ "5\n3 10 8 6 11\n4\n1\n10\n3\n11\n" ]
[ "0\n4\n1\n5\n" ]
On the first day, Vasiliy won't be able to buy a drink in any of the shops. On the second day, Vasiliy can buy a drink in the shops 1, 2, 3 and 4. On the third day, Vasiliy can buy a drink only in the shop number 1. Finally, on the last day Vasiliy can buy a drink in any shop.
1,000
[ { "input": "5\n3 10 8 6 11\n4\n1\n10\n3\n11", "output": "0\n4\n1\n5" }, { "input": "5\n868 987 714 168 123\n10\n424\n192\n795\n873\n117\n914\n735\n158\n631\n471", "output": "2\n2\n3\n4\n0\n4\n3\n1\n2\n2" }, { "input": "3\n435 482 309\n7\n245\n241\n909\n745\n980\n29\n521", "output": "...
1,694,353,301
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
10
2,000
13,516,800
d=int(input()) t=list(map(int,input().split())) w=int(input()) for i in range(w): e=int(input()) n=0 for j in t: if j<=e: n+=1 print(n)
Title: Interesting drink Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasiliy likes to rest after a hard work, so you may often meet him in some bar nearby. As all programmers do, he loves the famous drink "Beecola", which can be bought in *n* different shops in the city. It's known tha...
```python d=int(input()) t=list(map(int,input().split())) w=int(input()) for i in range(w): e=int(input()) n=0 for j in t: if j<=e: n+=1 print(n) ```
0
49
A
Sleuth
PROGRAMMING
800
[ "implementation" ]
A. Sleuth
2
256
Vasya plays the sleuth with his friends. The rules of the game are as follows: those who play for the first time, that is Vasya is the sleuth, he should investigate a "crime" and find out what is happening. He can ask any questions whatsoever that can be answered with "Yes" or "No". All the rest agree beforehand to ans...
The single line contains a question represented by a non-empty line consisting of large and small Latin letters, spaces and a question mark. The line length does not exceed 100. It is guaranteed that the question mark occurs exactly once in the line — as the last symbol and that the line contains at least one letter.
Print answer for the question in a single line: YES if the answer is "Yes", NO if the answer is "No". Remember that in the reply to the question the last letter, not the last character counts. I. e. the spaces and the question mark do not count as letters.
[ "Is it a melon?\n", "Is it an apple?\n", "Is it a banana ?\n", "Is it an apple and a banana simultaneouSLY?\n" ]
[ "NO\n", "YES\n", "YES\n", "YES\n" ]
none
500
[ { "input": "Is it a melon?", "output": "NO" }, { "input": "Is it an apple?", "output": "YES" }, { "input": " Is it a banana ?", "output": "YES" }, { "input": "Is it an apple and a banana simultaneouSLY?", "output": "YES" }, { "input": "oHtSbDwzHb?", ...
1,647,547,127
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
60
0
a = input().lower()[:-1] a = a.replace(" ", "") arr = ['a','e','i','o','u'] print('YES' if a[-1:] in arr else 'NO')
Title: Sleuth Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya plays the sleuth with his friends. The rules of the game are as follows: those who play for the first time, that is Vasya is the sleuth, he should investigate a "crime" and find out what is happening. He can ask any questions ...
```python a = input().lower()[:-1] a = a.replace(" ", "") arr = ['a','e','i','o','u'] print('YES' if a[-1:] in arr else 'NO') ```
0
12
A
Super Agent
PROGRAMMING
800
[ "implementation" ]
A. Super Agent
2
256
There is a very secret base in Potatoland where potato mash is made according to a special recipe. The neighbours from Porridgia decided to seize this recipe and to sell it to Pilauland. For this mission they have been preparing special agent Pearlo for many years. When, finally, Pearlo learned all secrets of espionage...
Input contains the matrix of three rows of three symbols each. Symbol «X» means that the corresponding button was pressed, and «.» means that is was not pressed. The matrix may contain no «X», also it may contain no «.».
Print YES if the password is symmetric with respect to the central button of the terminal and NO otherwise.
[ "XX.\n...\n.XX\n", "X.X\nX..\n...\n" ]
[ "YES\n", "NO\n" ]
If you are not familiar with the term «central symmetry», you may look into http://en.wikipedia.org/wiki/Central_symmetry
0
[ { "input": "XX.\n...\n.XX", "output": "YES" }, { "input": ".X.\n.X.\n.X.", "output": "YES" }, { "input": "XXX\nXXX\nXXX", "output": "YES" }, { "input": "XXX\nX.X\nXXX", "output": "YES" }, { "input": "X..\n.X.\n..X", "output": "YES" }, { "input": "...\n...
1,642,592,999
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
60
0
a,b,c = input().split() d,e,f = input().split() g,h,i = input().split() ans = 'no' while a == i and b == h and c == g and d == f: ans = 'yes' break print(ans)
Title: Super Agent Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: There is a very secret base in Potatoland where potato mash is made according to a special recipe. The neighbours from Porridgia decided to seize this recipe and to sell it to Pilauland. For this mission they have been preparin...
```python a,b,c = input().split() d,e,f = input().split() g,h,i = input().split() ans = 'no' while a == i and b == h and c == g and d == f: ans = 'yes' break print(ans) ```
-1
605
A
Sorting Railway Cars
PROGRAMMING
1,600
[ "constructive algorithms", "greedy" ]
null
null
An infinitely long railway has a train consisting of *n* cars, numbered from 1 to *n* (the numbers of all the cars are distinct) and positioned in arbitrary order. David Blaine wants to sort the railway cars in the order of increasing numbers. In one move he can make one of the cars disappear from its place and telepor...
The first line of the input contains integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of cars in the train. The second line contains *n* integers *p**i* (1<=≤<=*p**i*<=≤<=*n*, *p**i*<=≠<=*p**j* if *i*<=≠<=*j*) — the sequence of the numbers of the cars in the train.
Print a single integer — the minimum number of actions needed to sort the railway cars.
[ "5\n4 1 2 5 3\n", "4\n4 1 3 2\n" ]
[ "2\n", "2\n" ]
In the first sample you need first to teleport the 4-th car, and then the 5-th car to the end of the train.
500
[ { "input": "5\n4 1 2 5 3", "output": "2" }, { "input": "4\n4 1 3 2", "output": "2" }, { "input": "1\n1", "output": "0" }, { "input": "2\n1 2", "output": "0" }, { "input": "2\n2 1", "output": "1" }, { "input": "6\n5 3 6 1 4 2", "output": "4" }, ...
1,633,750,985
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
77
20,172,800
n=int(input()) ar=list(map(int,input().split())) a=ar.index(ar[-1]) print(n-a+1)
Title: Sorting Railway Cars Time Limit: None seconds Memory Limit: None megabytes Problem Description: An infinitely long railway has a train consisting of *n* cars, numbered from 1 to *n* (the numbers of all the cars are distinct) and positioned in arbitrary order. David Blaine wants to sort the railway cars in the...
```python n=int(input()) ar=list(map(int,input().split())) a=ar.index(ar[-1]) print(n-a+1) ```
0
445
A
DZY Loves Chessboard
PROGRAMMING
1,200
[ "dfs and similar", "implementation" ]
null
null
DZY loves chessboard, and he enjoys playing with it. He has a chessboard of *n* rows and *m* columns. Some cells of the chessboard are bad, others are good. For every good cell, DZY wants to put a chessman on it. Each chessman is either white or black. After putting all chessmen, DZY wants that no two chessmen with th...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100). Each of the next *n* lines contains a string of *m* characters: the *j*-th character of the *i*-th string is either "." or "-". A "." means that the corresponding cell (in the *i*-th row and the *j*-th column) is good, while a ...
Output must contain *n* lines, each line must contain a string of *m* characters. The *j*-th character of the *i*-th string should be either "W", "B" or "-". Character "W" means the chessman on the cell is white, "B" means it is black, "-" means the cell is a bad cell. If multiple answers exist, print any of them. It ...
[ "1 1\n.\n", "2 2\n..\n..\n", "3 3\n.-.\n---\n--." ]
[ "B\n", "BW\nWB\n", "B-B\n---\n--B" ]
In the first sample, DZY puts a single black chessman. Of course putting a white one is also OK. In the second sample, all 4 cells are good. No two same chessmen share an edge in the sample output. In the third sample, no good cells are adjacent. So you can just put 3 chessmen, no matter what their colors are.
500
[ { "input": "1 1\n.", "output": "B" }, { "input": "2 2\n..\n..", "output": "BW\nWB" }, { "input": "3 3\n.-.\n---\n--.", "output": "B-B\n---\n--B" }, { "input": "3 1\n-\n.\n.", "output": "-\nW\nB" }, { "input": "11 11\n-----------\n-----------\n-----------\n--------...
1,678,382,280
2,147,483,647
Python 3
OK
TESTS
37
46
0
n, m = map(int, input().split()) board = [] for i in range(n): board.append(input()) for i in range(n): ans = [] for j in range(m): if board[i][j] == "-": ans.append("-") elif i % 2 == 0 and j % 2 == 0: ans.append("B") elif i % 2 == 0: ...
Title: DZY Loves Chessboard Time Limit: None seconds Memory Limit: None megabytes Problem Description: DZY loves chessboard, and he enjoys playing with it. He has a chessboard of *n* rows and *m* columns. Some cells of the chessboard are bad, others are good. For every good cell, DZY wants to put a chessman on it. ...
```python n, m = map(int, input().split()) board = [] for i in range(n): board.append(input()) for i in range(n): ans = [] for j in range(m): if board[i][j] == "-": ans.append("-") elif i % 2 == 0 and j % 2 == 0: ans.append("B") elif i % 2 == 0: ...
3
981
A
Antipalindrome
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" are not. A substring $s[l \ldots r]$ ($1<=\leq<=l<=\leq<=r<=\leq<=|s|$) of a string $s<==<=s_{1}s_{2}...
The first line contains a non-empty string $s$ with length at most $50$ characters, containing lowercase English letters only.
If there is such a substring in $s$ that is not a palindrome, print the maximum length of such a substring. Otherwise print $0$. Note that there can be multiple longest substrings that are not palindromes, but their length is unique.
[ "mew\n", "wuffuw\n", "qqqqqqqq\n" ]
[ "3\n", "5\n", "0\n" ]
"mew" is not a palindrome, so the longest substring of it that is not a palindrome, is the string "mew" itself. Thus, the answer for the first example is $3$. The string "uffuw" is one of the longest non-palindrome substrings (of length $5$) of the string "wuffuw", so the answer for the second example is $5$. All sub...
500
[ { "input": "mew", "output": "3" }, { "input": "wuffuw", "output": "5" }, { "input": "qqqqqqqq", "output": "0" }, { "input": "ijvji", "output": "4" }, { "input": "iiiiiii", "output": "0" }, { "input": "wobervhvvkihcuyjtmqhaaigvvgiaahqmtjyuchikvvhvrebow"...
1,527,433,536
936
Python 3
OK
TESTS
133
93
0
def is_pal(S): for i in range(0, len(S)): if S[i] != S[-(i+1)]: return False return True while True: S = input() if not is_pal(S): print(len(S)) else: if S.count(S[0]) == len(S): print(0) else: print(len(S)-1) ...
Title: Antipalindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" ar...
```python def is_pal(S): for i in range(0, len(S)): if S[i] != S[-(i+1)]: return False return True while True: S = input() if not is_pal(S): print(len(S)) else: if S.count(S[0]) == len(S): print(0) else: print(...
3
186
A
Comparing Strings
PROGRAMMING
1,100
[ "implementation", "strings" ]
null
null
Some dwarves that are finishing the StUDY (State University for Dwarven Youngsters) Bachelor courses, have been told "no genome, no degree". That means that all dwarves should write a thesis on genome. Dwarven genome is far from simple. It is represented by a string that consists of lowercase Latin letters. Dwarf Mish...
The first line contains the first dwarf's genome: a non-empty string, consisting of lowercase Latin letters. The second line contains the second dwarf's genome: a non-empty string, consisting of lowercase Latin letters. The number of letters in each genome doesn't exceed 105. It is guaranteed that the strings that co...
Print "YES", if the dwarves belong to the same race. Otherwise, print "NO".
[ "ab\nba\n", "aa\nab\n" ]
[ "YES\n", "NO\n" ]
- First example: you can simply swap two letters in string "ab". So we get "ba". - Second example: we can't change string "aa" into string "ab", because "aa" does not contain letter "b".
500
[ { "input": "ab\nba", "output": "YES" }, { "input": "aa\nab", "output": "NO" }, { "input": "a\nza", "output": "NO" }, { "input": "vvea\nvvae", "output": "YES" }, { "input": "rtfabanpc\natfabrnpc", "output": "YES" }, { "input": "mt\ntm", "output": "Y...
1,692,539,251
2,147,483,647
PyPy 3
COMPILATION_ERROR
TESTS
0
0
0
first = input() second = input() if len(first) != len(second): print("NO") elif first == second: print("YES") else: _1 = [] _2 = [] length = len(first) flag = 0 for i in range(length): if(first[i]!=second[i]): _1.append(first[i]) _2.append(second...
Title: Comparing Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Some dwarves that are finishing the StUDY (State University for Dwarven Youngsters) Bachelor courses, have been told "no genome, no degree". That means that all dwarves should write a thesis on genome. Dwarven genome ...
```python first = input() second = input() if len(first) != len(second): print("NO") elif first == second: print("YES") else: _1 = [] _2 = [] length = len(first) flag = 0 for i in range(length): if(first[i]!=second[i]): _1.append(first[i]) _2.app...
-1
581
A
Vasya the Hipster
PROGRAMMING
800
[ "implementation", "math" ]
null
null
One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red one on the left foot, a blue one on the right foot. Every day Vasya puts on new socks in the morning ...
The single line of the input contains two positive integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=100) — the number of red and blue socks that Vasya's got.
Print two space-separated integers — the maximum number of days when Vasya can wear different socks and the number of days when he can wear the same socks until he either runs out of socks or cannot make a single pair from the socks he's got. Keep in mind that at the end of the day Vasya throws away the socks that he'...
[ "3 1\n", "2 3\n", "7 3\n" ]
[ "1 1\n", "2 0\n", "3 2\n" ]
In the first sample Vasya can first put on one pair of different socks, after that he has two red socks left to wear on the second day.
500
[ { "input": "3 1", "output": "1 1" }, { "input": "2 3", "output": "2 0" }, { "input": "7 3", "output": "3 2" }, { "input": "100 100", "output": "100 0" }, { "input": "4 10", "output": "4 3" }, { "input": "6 10", "output": "6 2" }, { "input":...
1,668,532,079
2,147,483,647
Python 3
OK
TESTS
30
61
0
def main(): (red_socks, blue_socks) = input().split() count = 0 (red_socks, blue_socks) = int(red_socks), int(blue_socks) while int(red_socks) > 0 and int(blue_socks) > 0: count += 1 (red_socks, blue_socks) = red_socks - 1, blue_socks - 1 print(count, red_socks // 2 + blue_soc...
Title: Vasya the Hipster Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red...
```python def main(): (red_socks, blue_socks) = input().split() count = 0 (red_socks, blue_socks) = int(red_socks), int(blue_socks) while int(red_socks) > 0 and int(blue_socks) > 0: count += 1 (red_socks, blue_socks) = red_socks - 1, blue_socks - 1 print(count, red_socks // 2 ...
3
0
none
none
none
0
[ "none" ]
null
null
A family consisting of father bear, mother bear and son bear owns three cars. Father bear can climb into the largest car and he likes it. Also, mother bear can climb into the middle car and she likes it. Moreover, son bear can climb into the smallest car and he likes it. It's known that the largest car is strictly larg...
You are given four integers *V*1, *V*2, *V*3, *V**m*(1<=≤<=*V**i*<=≤<=100) — sizes of father bear, mother bear, son bear and Masha, respectively. It's guaranteed that *V*1<=&gt;<=*V*2<=&gt;<=*V*3.
Output three integers — sizes of father bear's car, mother bear's car and son bear's car, respectively. If there are multiple possible solutions, print any. If there is no solution, print "-1" (without quotes).
[ "50 30 10 10\n", "100 50 10 21\n" ]
[ "50\n30\n10\n", "-1\n" ]
In first test case all conditions for cars' sizes are satisfied. In second test case there is no answer, because Masha should be able to climb into smallest car (so size of smallest car in not less than 21), but son bear should like it, so maximum possible size of it is 20.
0
[ { "input": "50 30 10 10", "output": "50\n30\n10" }, { "input": "100 50 10 21", "output": "-1" }, { "input": "100 50 19 10", "output": "100\n50\n19" }, { "input": "99 50 25 49", "output": "100\n99\n49" }, { "input": "3 2 1 1", "output": "4\n3\n1" }, { "...
1,514,044,763
6,863
Python 3
WRONG_ANSWER
PRETESTS
3
717
5,529,600
def tachki(v1,v2,v3,vm): for m1 in range(1,101): for m2 in range(1, 101): for m3 in range(1, 101): b1= (m1>=v1 and m1<=v1*2) b2= (m2>=v2 and m2<=v2*2) b3= (m3>=v3 and m3<=v3*2) bm1=not(m1>=vm and m1<=vm*2) ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: A family consisting of father bear, mother bear and son bear owns three cars. Father bear can climb into the largest car and he likes it. Also, mother bear can climb into the middle car and she likes it. Moreover, son bear can cli...
```python def tachki(v1,v2,v3,vm): for m1 in range(1,101): for m2 in range(1, 101): for m3 in range(1, 101): b1= (m1>=v1 and m1<=v1*2) b2= (m2>=v2 and m2<=v2*2) b3= (m3>=v3 and m3<=v3*2) bm1=not(m1>=vm and m1<=vm*2) ...
0
120
B
Quiz League
PROGRAMMING
1,100
[ "implementation" ]
null
null
A team quiz game called "What? Where? When?" is very popular in Berland. The game is centered on two teams competing. They are the team of six Experts versus the team of the Audience. A person from the audience asks a question and the experts are allowed a minute on brainstorming and finding the right answer to the que...
The first line contains two positive integers *n* and *k* (1<=≤<=*n*<=≤<=1000 and 1<=≤<=*k*<=≤<=*n*) — the numbers of sectors on the table and the number of the sector where the arrow is pointing. The second line contains *n* numbers: *a**i*<==<=0 if the question from sector *i* has already been asked and *a**i*<==<=1 ...
Print the single number — the number of the sector containing the question the experts will be asked. It is guaranteed that the answer exists, that is that not all the questions have already been asked.
[ "5 5\n0 1 0 1 0\n", "2 1\n1 1\n" ]
[ "2\n", "1\n" ]
none
0
[ { "input": "5 5\n0 1 0 1 0", "output": "2" }, { "input": "2 1\n1 1", "output": "1" }, { "input": "3 2\n1 0 0", "output": "1" }, { "input": "3 3\n0 1 0", "output": "2" }, { "input": "1 1\n1", "output": "1" }, { "input": "6 3\n0 0 1 1 0 1", "output":...
1,381,726,816
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
92
307,200
f = open('input.txt','r') a = f.readline() n = int(a[0]) k = int(a[2]) a = f.read().replace("\n", " ").split(" ") for i in range(len(a)): a[i] = int(a[i]) f.close() p = open('output.txt','w') tree = False for i in range(k,n+1): if a[i-1] == 1: p.write(str(i)) tree = True br...
Title: Quiz League Time Limit: None seconds Memory Limit: None megabytes Problem Description: A team quiz game called "What? Where? When?" is very popular in Berland. The game is centered on two teams competing. They are the team of six Experts versus the team of the Audience. A person from the audience asks a quest...
```python f = open('input.txt','r') a = f.readline() n = int(a[0]) k = int(a[2]) a = f.read().replace("\n", " ").split(" ") for i in range(len(a)): a[i] = int(a[i]) f.close() p = open('output.txt','w') tree = False for i in range(k,n+1): if a[i-1] == 1: p.write(str(i)) tree = True ...
-1
886
B
Vlad and Cafes
PROGRAMMING
1,000
[]
null
null
Vlad likes to eat in cafes very much. During his life, he has visited cafes *n* times. Unfortunately, Vlad started to feel that his last visits are not any different from each other. To fix that Vlad had a small research. First of all, Vlad assigned individual indices to all cafes. Then, he wrote down indices of cafes...
In first line there is one integer *n* (1<=≤<=*n*<=≤<=2·105) — number of cafes indices written by Vlad. In second line, *n* numbers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=2·105) are written — indices of cafes in order of being visited by Vlad. Vlad could visit some cafes more than once. Note that in numeration, ...
Print one integer — index of the cafe that Vlad hasn't visited for as long as possible.
[ "5\n1 3 2 1 2\n", "6\n2 1 2 2 4 1\n" ]
[ "3\n", "2\n" ]
In first test, there are three cafes, and the last visits to cafes with indices 1 and 2 were after the last visit to cafe with index 3; so this cafe is the answer. In second test case, there are also three cafes, but with indices 1, 2 and 4. Cafes with indices 1 and 4 were visited after the last visit of cafe with in...
1,000
[ { "input": "5\n1 3 2 1 2", "output": "3" }, { "input": "6\n2 1 2 2 4 1", "output": "2" }, { "input": "1\n0", "output": "0" }, { "input": "1\n200000", "output": "200000" }, { "input": "2\n2018 2017", "output": "2018" }, { "input": "5\n100 1000 1000 1000...
1,510,506,333
3,633
Python 3
OK
TESTS
33
342
31,539,200
n = input() stol = input() stol = stol.split(' ') nums = {} for i in range(0,len(stol)): nums[stol[i]] = [i, len(stol)-i] dif = [] max = -1 imax = 0 fl = 0 for num in nums: if max<nums[num][1]: max = nums[num][1] imax = num print(imax)
Title: Vlad and Cafes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vlad likes to eat in cafes very much. During his life, he has visited cafes *n* times. Unfortunately, Vlad started to feel that his last visits are not any different from each other. To fix that Vlad had a small research...
```python n = input() stol = input() stol = stol.split(' ') nums = {} for i in range(0,len(stol)): nums[stol[i]] = [i, len(stol)-i] dif = [] max = -1 imax = 0 fl = 0 for num in nums: if max<nums[num][1]: max = nums[num][1] imax = num print(imax) ```
3
416
A
Guess a number!
PROGRAMMING
1,400
[ "greedy", "implementation", "two pointers" ]
null
null
A TV show called "Guess a number!" is gathering popularity. The whole Berland, the old and the young, are watching the show. The rules are simple. The host thinks of an integer *y* and the participants guess it by asking questions to the host. There are four types of acceptable questions: - Is it true that *y* is st...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=10000) — the number of questions (and answers). Next *n* lines each contain one question and one answer to it. The format of each line is like that: "sign x answer", where the sign is: - "&gt;" (for the first type queries), - "&lt;" (for the se...
Print any of such integers *y*, that the answers to all the queries are correct. The printed number *y* must meet the inequation <=-<=2·109<=≤<=*y*<=≤<=2·109. If there are many answers, print any of them. If such value doesn't exist, print word "Impossible" (without the quotes).
[ "4\n&gt;= 1 Y\n&lt; 3 N\n&lt;= -3 N\n&gt; 55 N\n", "2\n&gt; 100 Y\n&lt; -100 Y\n" ]
[ "17\n", "Impossible\n" ]
none
500
[ { "input": "4\n>= 1 Y\n< 3 N\n<= -3 N\n> 55 N", "output": "17" }, { "input": "2\n> 100 Y\n< -100 Y", "output": "Impossible" }, { "input": "4\n< 1 N\n> 1 N\n> 1 N\n> 1 N", "output": "1" }, { "input": "4\n<= 1 Y\n>= 1 Y\n>= 1 Y\n<= 1 Y", "output": "1" }, { "input": ...
1,674,117,657
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
61
0
n=int(input()) lbl=[] ubl=[] for i in range(n): s=input() l=s.split(" ") if(l[0]==">="): if(l[2]=="Y"): lb=int(l[1]) lbl.append(lb) else: ub=int(l[1])-1 ubl.append(ub) if(l[0]=="<="): if(l[2]=="Y"): ub=int...
Title: Guess a number! Time Limit: None seconds Memory Limit: None megabytes Problem Description: A TV show called "Guess a number!" is gathering popularity. The whole Berland, the old and the young, are watching the show. The rules are simple. The host thinks of an integer *y* and the participants guess it by aski...
```python n=int(input()) lbl=[] ubl=[] for i in range(n): s=input() l=s.split(" ") if(l[0]==">="): if(l[2]=="Y"): lb=int(l[1]) lbl.append(lb) else: ub=int(l[1])-1 ubl.append(ub) if(l[0]=="<="): if(l[2]=="Y"): ...
0
859
C
Pie Rules
PROGRAMMING
1,500
[ "dp", "games" ]
null
null
You may have heard of the pie rule before. It states that if two people wish to fairly share a slice of pie, one person should cut the slice in half, and the other person should choose who gets which slice. Alice and Bob have many slices of pie, and rather than cutting the slices in half, each individual slice will be ...
Input will begin with an integer *N* (1<=≤<=*N*<=≤<=50), the number of slices of pie. Following this is a line with *N* integers indicating the sizes of the slices (each between 1 and 100000, inclusive), in the order in which they must be handed out.
Print two integers. First, the sum of the sizes of slices eaten by Alice, then the sum of the sizes of the slices eaten by Bob, assuming both players make their decisions optimally.
[ "3\n141 592 653\n", "5\n10 21 10 21 10\n" ]
[ "653 733\n", "31 41\n" ]
In the first example, Bob takes the size 141 slice for himself and gives the decider token to Alice. Then Alice gives the size 592 slice to Bob and keeps the decider token for herself, so that she can then give the size 653 slice to herself.
1,000
[ { "input": "3\n141 592 653", "output": "653 733" }, { "input": "5\n10 21 10 21 10", "output": "31 41" }, { "input": "1\n100000", "output": "0 100000" }, { "input": "50\n100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 10...
1,505,585,505
2,205
Python 3
OK
TESTS
70
78
921,600
import math from random import random def getInt(): return(int(input())) def getInts(): line = input().split() return [int(l) for l in line] def getFloat(): return(float(input())) def getFloats(): line = input().split() return [float(l) for l in line] def getStrings(): ...
Title: Pie Rules Time Limit: None seconds Memory Limit: None megabytes Problem Description: You may have heard of the pie rule before. It states that if two people wish to fairly share a slice of pie, one person should cut the slice in half, and the other person should choose who gets which slice. Alice and Bob have...
```python import math from random import random def getInt(): return(int(input())) def getInts(): line = input().split() return [int(l) for l in line] def getFloat(): return(float(input())) def getFloats(): line = input().split() return [float(l) for l in line] def getStrin...
3
318
A
Even Odds
PROGRAMMING
900
[ "math" ]
null
null
Being a nonconformist, Volodya is displeased with the current state of things, particularly with the order of natural numbers (natural number is positive integer number). He is determined to rearrange them. But there are too many natural numbers, so Volodya decided to start with the first *n*. He writes down the follow...
The only line of input contains integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=1012). Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.
Print the number that will stand at the position number *k* after Volodya's manipulations.
[ "10 3\n", "7 7\n" ]
[ "5", "6" ]
In the first sample Volodya's sequence will look like this: {1, 3, 5, 7, 9, 2, 4, 6, 8, 10}. The third place in the sequence is therefore occupied by the number 5.
500
[ { "input": "10 3", "output": "5" }, { "input": "7 7", "output": "6" }, { "input": "7 1", "output": "1" }, { "input": "7 2", "output": "3" }, { "input": "8 5", "output": "2" }, { "input": "8 3", "output": "5" }, { "input": "8 4", "output...
1,697,819,490
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
7
1,000
97,996,800
p = input().split() a =[int(x) for x in p] l = [] i = 1 j = 1 while i<=a[0]: if i%2 == 1: l.append(i) i += 1 while j<=a[0]: if j%2 == 0: l.append(j) j += 1 print(l[a[1]-1])
Title: Even Odds Time Limit: None seconds Memory Limit: None megabytes Problem Description: Being a nonconformist, Volodya is displeased with the current state of things, particularly with the order of natural numbers (natural number is positive integer number). He is determined to rearrange them. But there are too ...
```python p = input().split() a =[int(x) for x in p] l = [] i = 1 j = 1 while i<=a[0]: if i%2 == 1: l.append(i) i += 1 while j<=a[0]: if j%2 == 0: l.append(j) j += 1 print(l[a[1]-1]) ```
0
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,661,317,175
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
154
0
s,q=map(int,input().split()) p=(s/2)*q; if(p%2==1): p=p+(q/2) print(p)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python s,q=map(int,input().split()) p=(s/2)*q; if(p%2==1): p=p+(q/2) print(p) ```
0
66
B
Petya and Countryside
PROGRAMMING
1,100
[ "brute force", "implementation" ]
B. Petya and Countryside
2
256
Little Petya often travels to his grandmother in the countryside. The grandmother has a large garden, which can be represented as a rectangle 1<=×<=*n* in size, when viewed from above. This rectangle is divided into *n* equal square sections. The garden is very unusual as each of the square sections possesses its own f...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=1000). The second line contains *n* positive integers which are the height of the sections. All the numbers are no less than 1 and not more than 1000.
Print a single number, the maximal number of watered sections if we create artificial rain above exactly one section.
[ "1\n2\n", "5\n1 2 1 2 1\n", "8\n1 2 1 1 1 3 3 4\n" ]
[ "1\n", "3\n", "6\n" ]
none
1,000
[ { "input": "1\n2", "output": "1" }, { "input": "5\n1 2 1 2 1", "output": "3" }, { "input": "8\n1 2 1 1 1 3 3 4", "output": "6" }, { "input": "10\n1 2 3 4 5 6 7 8 9 10", "output": "10" }, { "input": "10\n10 9 8 7 6 5 4 3 2 1", "output": "10" }, { "input...
1,615,883,330
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
122
307,200
n = int(input()) arr = list(map(int, input().split())) levels=[] for i in range(n): count = 1 for j in range(i+1, n): print(arr[j],arr[j-1]) if arr[j] <= arr[j-1]: count+=1 else: break for j in range(i-1, -1, -1): print(arr[j],arr[j+1]) ...
Title: Petya and Countryside Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Petya often travels to his grandmother in the countryside. The grandmother has a large garden, which can be represented as a rectangle 1<=×<=*n* in size, when viewed from above. This rectangle is divided into *...
```python n = int(input()) arr = list(map(int, input().split())) levels=[] for i in range(n): count = 1 for j in range(i+1, n): print(arr[j],arr[j-1]) if arr[j] <= arr[j-1]: count+=1 else: break for j in range(i-1, -1, -1): print(arr[j],arr...
0
811
A
Vladik and Courtesy
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
At regular competition Vladik and Valera won *a* and *b* candies respectively. Vladik offered 1 his candy to Valera. After that Valera gave Vladik 2 his candies, so that no one thought that he was less generous. Vladik for same reason gave 3 candies to Valera in next turn. More formally, the guys take turns giving eac...
Single line of input data contains two space-separated integers *a*, *b* (1<=≤<=*a*,<=*b*<=≤<=109) — number of Vladik and Valera candies respectively.
Pring a single line "Vladik’’ in case, if Vladik first who can’t give right amount of candy, or "Valera’’ otherwise.
[ "1 1\n", "7 6\n" ]
[ "Valera\n", "Vladik\n" ]
Illustration for first test case: <img class="tex-graphics" src="https://espresso.codeforces.com/ad9b7d0e481208de8e3a585aa1d96b9e1dda4fd7.png" style="max-width: 100.0%;max-height: 100.0%;"/> Illustration for second test case: <img class="tex-graphics" src="https://espresso.codeforces.com/9f4836d2ccdffaee5a63898e5d4e...
500
[ { "input": "1 1", "output": "Valera" }, { "input": "7 6", "output": "Vladik" }, { "input": "25 38", "output": "Vladik" }, { "input": "8311 2468", "output": "Valera" }, { "input": "250708 857756", "output": "Vladik" }, { "input": "957985574 24997558", ...
1,551,266,447
2,147,483,647
Python 3
OK
TESTS
42
109
0
import math while True: try: a,b=map(int,input().split()) except: break n=math.sqrt(a) n=int(n) bt=(n+1)*n if b>=bt: print("Vladik") else: print("Valera")
Title: Vladik and Courtesy Time Limit: None seconds Memory Limit: None megabytes Problem Description: At regular competition Vladik and Valera won *a* and *b* candies respectively. Vladik offered 1 his candy to Valera. After that Valera gave Vladik 2 his candies, so that no one thought that he was less generous. Vla...
```python import math while True: try: a,b=map(int,input().split()) except: break n=math.sqrt(a) n=int(n) bt=(n+1)*n if b>=bt: print("Vladik") else: print("Valera") ```
3
545
D
Queue
PROGRAMMING
1,300
[ "greedy", "implementation", "sortings" ]
null
null
Little girl Susie went shopping with her mom and she wondered how to improve service quality. There are *n* people in the queue. For each person we know time *t**i* needed to serve him. A person will be disappointed if the time he waits is more than the time needed to serve him. The time a person waits is the total t...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105). The next line contains *n* integers *t**i* (1<=≤<=*t**i*<=≤<=109), separated by spaces.
Print a single number — the maximum number of not disappointed people in the queue.
[ "5\n15 2 1 5 3\n" ]
[ "4\n" ]
Value 4 is achieved at such an arrangement, for example: 1, 2, 3, 5, 15. Thus, you can make everything feel not disappointed except for the person with time 5.
1,750
[ { "input": "5\n15 2 1 5 3", "output": "4" }, { "input": "15\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1", "output": "2" }, { "input": "10\n13 2 5 55 21 34 1 8 1 3", "output": "6" }, { "input": "10\n8 256 16 1 2 1 64 4 128 32", "output": "10" }, { "input": "10\n10000 40000 1000...
1,698,569,703
2,147,483,647
Python 3
OK
TESTS
61
108
13,619,200
n = int(input()) tlist = list(map(int, input().split())) tlist.sort() count = 0 sum1 = tlist[0] for i in range(1,n): if sum1 <= tlist[i]: count += 1 sum1 += tlist[i] print(count+1)
Title: Queue Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little girl Susie went shopping with her mom and she wondered how to improve service quality. There are *n* people in the queue. For each person we know time *t**i* needed to serve him. A person will be disappointed if the time...
```python n = int(input()) tlist = list(map(int, input().split())) tlist.sort() count = 0 sum1 = tlist[0] for i in range(1,n): if sum1 <= tlist[i]: count += 1 sum1 += tlist[i] print(count+1) ```
3
490
A
Team Olympiad
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The School №0 of the capital of Berland has *n* children studying in it. All the children in this school are gifted: some of them are good at programming, some are good at maths, others are good at PE (Physical Education). Hence, for each child we know value *t**i*: - *t**i*<==<=1, if the *i*-th child is good at prog...
The first line contains integer *n* (1<=≤<=*n*<=≤<=5000) — the number of children in the school. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=3), where *t**i* describes the skill of the *i*-th child.
In the first line output integer *w* — the largest possible number of teams. Then print *w* lines, containing three numbers in each line. Each triple represents the indexes of the children forming the team. You can print both the teams, and the numbers in the triplets in any order. The children are numbered from 1 to...
[ "7\n1 3 1 3 2 1 2\n", "4\n2 1 1 2\n" ]
[ "2\n3 5 2\n6 7 4\n", "0\n" ]
none
500
[ { "input": "7\n1 3 1 3 2 1 2", "output": "2\n3 5 2\n6 7 4" }, { "input": "4\n2 1 1 2", "output": "0" }, { "input": "1\n2", "output": "0" }, { "input": "2\n3 1", "output": "0" }, { "input": "3\n2 1 2", "output": "0" }, { "input": "3\n1 2 3", "output...
1,676,982,755
2,147,483,647
Python 3
OK
TESTS
41
46
0
n = int(input()) x = list(map(int, input().split())) a = [i + 1 for i, j in enumerate(x) if j == 1] b = [i + 1 for i, j in enumerate(x) if j == 2] c = [i + 1 for i, j in enumerate(x) if j == 3] if not a or not b or not c: print(0) else: print(min(len(a), len(b), len(c))) for i, j, k in zip(a, b, c)...
Title: Team Olympiad Time Limit: None seconds Memory Limit: None megabytes Problem Description: The School №0 of the capital of Berland has *n* children studying in it. All the children in this school are gifted: some of them are good at programming, some are good at maths, others are good at PE (Physical Education)...
```python n = int(input()) x = list(map(int, input().split())) a = [i + 1 for i, j in enumerate(x) if j == 1] b = [i + 1 for i, j in enumerate(x) if j == 2] c = [i + 1 for i, j in enumerate(x) if j == 3] if not a or not b or not c: print(0) else: print(min(len(a), len(b), len(c))) for i, j, k in zi...
3
222
A
Shooshuns and Sequence
PROGRAMMING
1,200
[ "brute force", "implementation" ]
null
null
One day shooshuns found a sequence of *n* integers, written on a blackboard. The shooshuns can perform one operation with it, the operation consists of two steps: 1. Find the number that goes *k*-th in the current sequence and add the same number to the end of the sequence; 1. Delete the first number of the current ...
The first line contains two space-separated integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=105). The second line contains *n* space-separated integers: *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=105) — the sequence that the shooshuns found.
Print the minimum number of operations, required for all numbers on the blackboard to become the same. If it is impossible to achieve, print -1.
[ "3 2\n3 1 1\n", "3 1\n3 1 1\n" ]
[ "1\n", "-1\n" ]
In the first test case after the first operation the blackboard will have sequence [1, 1, 1]. So, one operation is enough to make all numbers the same. Thus, the answer equals one. In the second test case the sequence will never consist of the same numbers. It will always contain at least two distinct numbers 3 and 1....
500
[ { "input": "3 2\n3 1 1", "output": "1" }, { "input": "3 1\n3 1 1", "output": "-1" }, { "input": "1 1\n1", "output": "0" }, { "input": "2 1\n1 1", "output": "0" }, { "input": "2 1\n2 1", "output": "-1" }, { "input": "4 4\n1 2 3 4", "output": "3" }...
1,641,191,237
2,147,483,647
Python 3
OK
TESTS
47
184
7,372,800
n,k=map(int,input().split()) a=list(map(int,input().split())) while n and a[n-1]==a[-1]: n-=1 if k>n: print(n) else: print(-1)
Title: Shooshuns and Sequence Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day shooshuns found a sequence of *n* integers, written on a blackboard. The shooshuns can perform one operation with it, the operation consists of two steps: 1. Find the number that goes *k*-th in the cur...
```python n,k=map(int,input().split()) a=list(map(int,input().split())) while n and a[n-1]==a[-1]: n-=1 if k>n: print(n) else: print(-1) ```
3
746
B
Decoding
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
Polycarp is mad about coding, that is why he writes Sveta encoded messages. He calls the median letter in a word the letter which is in the middle of the word. If the word's length is even, the median letter is the left of the two middle letters. In the following examples, the median letter is highlighted: contest, inf...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=2000) — the length of the encoded word. The second line contains the string *s* of length *n* consisting of lowercase English letters — the encoding.
Print the word that Polycarp encoded.
[ "5\nlogva\n", "2\nno\n", "4\nabba\n" ]
[ "volga\n", "no\n", "baba\n" ]
In the first example Polycarp encoded the word volga. At first, he wrote down the letter l from the position 3, after that his word looked like voga. After that Polycarp wrote down the letter o from the position 2, his word became vga. Then Polycarp wrote down the letter g which was at the second position, the word bec...
1,000
[ { "input": "5\nlogva", "output": "volga" }, { "input": "2\nno", "output": "no" }, { "input": "4\nabba", "output": "baba" }, { "input": "51\nkfsmpaeviowvkdbuhdagquxxqniselafnfbrgbhmsugcbbnlrvv", "output": "vlbcumbrfflsnxugdudvovamfkspeiwkbhaqxqieanbghsgbnrv" }, { "...
1,672,507,004
2,147,483,647
Python 3
OK
TESTS
34
46
0
n = int(input()) a=input() if (n-1)%2==0: c = '' i = n - 2 while i % 2 != 0 and i > 0: c = c + a[i] i = i - 2 i = 0 while i % 2 == 0 and i < n: c = c + a[i] i = i + 2 else: c = '' i = n - 2 while i % 2 == 0 and i >= 0: c = c + a[i] ...
Title: Decoding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp is mad about coding, that is why he writes Sveta encoded messages. He calls the median letter in a word the letter which is in the middle of the word. If the word's length is even, the median letter is the left of the...
```python n = int(input()) a=input() if (n-1)%2==0: c = '' i = n - 2 while i % 2 != 0 and i > 0: c = c + a[i] i = i - 2 i = 0 while i % 2 == 0 and i < n: c = c + a[i] i = i + 2 else: c = '' i = n - 2 while i % 2 == 0 and i >= 0: c =...
3
131
A
cAPS lOCK
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in the first passage. Let's consider that a word has been typed with the Caps lock key accidentall...
The first line of the input data contains a word consisting of uppercase and lowercase Latin letters. The word's length is from 1 to 100 characters, inclusive.
Print the result of the given word's processing.
[ "cAPS\n", "Lock\n" ]
[ "Caps", "Lock\n" ]
none
500
[ { "input": "cAPS", "output": "Caps" }, { "input": "Lock", "output": "Lock" }, { "input": "cAPSlOCK", "output": "cAPSlOCK" }, { "input": "CAPs", "output": "CAPs" }, { "input": "LoCK", "output": "LoCK" }, { "input": "OOPS", "output": "oops" }, { ...
1,690,002,740
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
s=input() s=s.lower() x=s[0].upper() print(x+s[1: ])
Title: cAPS lOCK Time Limit: None seconds Memory Limit: None megabytes Problem Description: wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in th...
```python s=input() s=s.lower() x=s[0].upper() print(x+s[1: ]) ```
0
203
A
Two Problems
PROGRAMMING
1,200
[ "brute force", "implementation" ]
null
null
A boy Valera registered on site Codeforces as Valera, and wrote his first Codeforces Round #300. He boasted to a friend Arkady about winning as much as *x* points for his first contest. But Arkady did not believe his friend's words and decided to check whether Valera could have shown such a result. He knows that the c...
The single line of the input contains six integers *x*,<=*t*,<=*a*,<=*b*,<=*d**a*,<=*d**b* (0<=≤<=*x*<=≤<=600; 1<=≤<=*t*,<=*a*,<=*b*,<=*d**a*,<=*d**b*<=≤<=300) — Valera's result, the contest's duration, the initial cost of the first problem, the initial cost of the second problem, the number of points that the first an...
If Valera could have earned exactly *x* points at a contest, print "YES", otherwise print "NO" (without the quotes).
[ "30 5 20 20 3 5\n", "10 4 100 5 5 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample Valera could have acted like this: he could have submitted the first problem at minute 0 and the second problem — at minute 2. Then the first problem brings him 20 points and the second problem brings him 10 points, that in total gives the required 30 points.
500
[ { "input": "30 5 20 20 3 5", "output": "YES" }, { "input": "10 4 100 5 5 1", "output": "NO" }, { "input": "0 7 30 50 3 4", "output": "YES" }, { "input": "50 10 30 20 1 2", "output": "YES" }, { "input": "40 1 40 5 11 2", "output": "YES" }, { "input": "3...
1,690,503,843
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
60
0
print("_RANDOM_GUESS_1690503843.7040076")# 1690503843.7040277
Title: Two Problems Time Limit: None seconds Memory Limit: None megabytes Problem Description: A boy Valera registered on site Codeforces as Valera, and wrote his first Codeforces Round #300. He boasted to a friend Arkady about winning as much as *x* points for his first contest. But Arkady did not believe his frien...
```python print("_RANDOM_GUESS_1690503843.7040076")# 1690503843.7040277 ```
0
106
B
Choosing Laptop
PROGRAMMING
1,000
[ "brute force", "implementation" ]
B. Choosing Laptop
2
256
Vasya is choosing a laptop. The shop has *n* laptops to all tastes. Vasya is interested in the following properties: processor speed, ram and hdd. Vasya is a programmer and not a gamer which is why he is not interested in all other properties. If all three properties of a laptop are strictly less than those propertie...
The first line contains number *n* (1<=≤<=*n*<=≤<=100). Then follow *n* lines. Each describes a laptop as *speed* *ram* *hdd* *cost*. Besides, - *speed*, *ram*, *hdd* and *cost* are integers - 1000<=≤<=*speed*<=≤<=4200 is the processor's speed in megahertz - 256<=≤<=*ram*<=≤<=4096 the RAM volume in megabytes - 1...
Print a single number — the number of a laptop Vasya will choose. The laptops are numbered with positive integers from 1 to *n* in the order in which they are given in the input data.
[ "5\n2100 512 150 200\n2000 2048 240 350\n2300 1024 200 320\n2500 2048 80 300\n2000 512 180 150\n" ]
[ "4" ]
In the third sample Vasya considers the first and fifth laptops outdated as all of their properties cannot match those of the third laptop. The fourth one is the cheapest among the laptops that are left. Thus, Vasya chooses the fourth laptop.
1,000
[ { "input": "5\n2100 512 150 200\n2000 2048 240 350\n2300 1024 200 320\n2500 2048 80 300\n2000 512 180 150", "output": "4" }, { "input": "2\n1500 500 50 755\n1600 600 80 700", "output": "2" }, { "input": "2\n1500 512 50 567\n1600 400 70 789", "output": "1" }, { "input": "4\n10...
1,539,764,419
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
186
0
n=int(input()) b=[] for i in range(n): a= list(map(int, input().split())) a.append(i+1) b.append(a) def fn(a): return a[3] b.sort(key=fn) def fn1(b,n): for i in range(n): for j in range(n): c=0 for k in range(3): if b[i][k]<b[j][k]:c+=1 ...
Title: Choosing Laptop Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is choosing a laptop. The shop has *n* laptops to all tastes. Vasya is interested in the following properties: processor speed, ram and hdd. Vasya is a programmer and not a gamer which is why he is not interested in ...
```python n=int(input()) b=[] for i in range(n): a= list(map(int, input().split())) a.append(i+1) b.append(a) def fn(a): return a[3] b.sort(key=fn) def fn1(b,n): for i in range(n): for j in range(n): c=0 for k in range(3): if b[i][k]<b[j]...
0
199
A
Hexadecimal's theorem
PROGRAMMING
900
[ "brute force", "constructive algorithms", "implementation", "number theory" ]
null
null
Recently, a chaotic virus Hexadecimal advanced a new theorem which will shake the Universe. She thinks that each Fibonacci number can be represented as sum of three not necessary different Fibonacci numbers. Let's remember how Fibonacci numbers can be calculated. *F*0<==<=0, *F*1<==<=1, and all the next numbers are *F...
The input contains of a single integer *n* (0<=≤<=*n*<=&lt;<=109) — the number that should be represented by the rules described above. It is guaranteed that *n* is a Fibonacci number.
Output three required numbers: *a*, *b* and *c*. If there is no answer for the test you have to print "I'm too stupid to solve this problem" without the quotes. If there are multiple answers, print any of them.
[ "3\n", "13\n" ]
[ "1 1 1\n", "2 3 8\n" ]
none
500
[ { "input": "3", "output": "1 1 1" }, { "input": "13", "output": "2 3 8" }, { "input": "0", "output": "0 0 0" }, { "input": "1", "output": "1 0 0" }, { "input": "2", "output": "1 1 0" }, { "input": "1597", "output": "233 377 987" }, { "input...
1,659,899,745
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
3
92
0
l = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418, 317811, 514229, 832040, 1346269, 2178309, 3524578, 5702887, 9227465, 14930352, 24157817, 39088169, 63245986, 102334155, 165580141, 267914296, 433494437, 701408733, 1134903170...
Title: Hexadecimal's theorem Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently, a chaotic virus Hexadecimal advanced a new theorem which will shake the Universe. She thinks that each Fibonacci number can be represented as sum of three not necessary different Fibonacci numbers. Let'...
```python l = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418, 317811, 514229, 832040, 1346269, 2178309, 3524578, 5702887, 9227465, 14930352, 24157817, 39088169, 63245986, 102334155, 165580141, 267914296, 433494437, 701408733, ...
0
110
A
Nearly Lucky Number
PROGRAMMING
800
[ "implementation" ]
A. Nearly Lucky Number
2
256
Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Unfortunately, not all numbers are lucky. Petya calls a number nearly lucky if the number of lucky d...
The only line contains an integer *n* (1<=≤<=*n*<=≤<=1018). Please do not use the %lld specificator to read or write 64-bit numbers in С++. It is preferred to use the cin, cout streams or the %I64d specificator.
Print on the single line "YES" if *n* is a nearly lucky number. Otherwise, print "NO" (without the quotes).
[ "40047\n", "7747774\n", "1000000000000000000\n" ]
[ "NO\n", "YES\n", "NO\n" ]
In the first sample there are 3 lucky digits (first one and last two), so the answer is "NO". In the second sample there are 7 lucky digits, 7 is lucky number, so the answer is "YES". In the third sample there are no lucky digits, so the answer is "NO".
500
[ { "input": "40047", "output": "NO" }, { "input": "7747774", "output": "YES" }, { "input": "1000000000000000000", "output": "NO" }, { "input": "7", "output": "NO" }, { "input": "4", "output": "NO" }, { "input": "474404774", "output": "NO" }, { ...
1,694,555,439
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
1
62
0
def es_numero_de_la_suerte(num): while num > 0: digito = num % 10 if digito != 4 and digito != 7: return False num //= 10 return True def es_casi_numero_de_la_suerte(num): cuenta_suertes = 0 while num > 0: digito = num % 10 if digito == 4 or digi...
Title: Nearly Lucky Number Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python def es_numero_de_la_suerte(num): while num > 0: digito = num % 10 if digito != 4 and digito != 7: return False num //= 10 return True def es_casi_numero_de_la_suerte(num): cuenta_suertes = 0 while num > 0: digito = num % 10 if digito ==...
-1
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,662,759,557
2,147,483,647
Python 3
OK
TESTS
35
92
0
a,b = [int(asdf) for asdf in input().split()] print(a*b//2)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python a,b = [int(asdf) for asdf in input().split()] print(a*b//2) ```
3.977
0
none
none
none
0
[ "none" ]
null
null
Little Artem found a grasshopper. He brought it to his house and constructed a jumping area for him. The area looks like a strip of cells 1<=×<=*n*. Each cell contains the direction for the next jump and the length of that jump. Grasshopper starts in the first cell and follows the instructions written on the cells. Gr...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — length of the strip. Next line contains a string of length *n* which consists of characters "&lt;" and "&gt;" only, that provide the direction of the jump from the corresponding cell. Next line contains *n* integers *d**i* (1<=≤<=*d*...
Print "INFINITE" (without quotes) if grasshopper will continue his jumps forever. Otherwise print "FINITE" (without quotes).
[ "2\n&gt;&lt;\n1 2\n", "3\n&gt;&gt;&lt;\n2 1 1\n" ]
[ "FINITE\n", "INFINITE" ]
In the first sample grasshopper starts from the first cell and jumps to the right on the next cell. When he is in the second cell he needs to jump two cells left so he will jump out of the strip. Second sample grasshopper path is 1 - 3 - 2 - 3 - 2 - 3 and so on. The path is infinite.
0
[ { "input": "2\n><\n1 2", "output": "FINITE" }, { "input": "3\n>><\n2 1 1", "output": "INFINITE" }, { "input": "1\n>\n1000000000", "output": "FINITE" }, { "input": "1\n<\n1000000000", "output": "FINITE" }, { "input": "2\n>>\n1 1", "output": "FINITE" }, { ...
1,461,516,152
452
Python 3
OK
TESTS
60
140
12,288,000
n = int(input()) s = str(input()) L = list(map(int, input().split())) D = [0 for _ in range(n)] r = 0 ok = 1 while r >= 0 and r < n: if D[r]: ok = 0 break else: D[r] = 1 if s[r] == "<": r = r - L[r] else: r = r + L[r] if ok: print("FINITE") else: print("IN...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Artem found a grasshopper. He brought it to his house and constructed a jumping area for him. The area looks like a strip of cells 1<=×<=*n*. Each cell contains the direction for the next jump and the length of that jump. ...
```python n = int(input()) s = str(input()) L = list(map(int, input().split())) D = [0 for _ in range(n)] r = 0 ok = 1 while r >= 0 and r < n: if D[r]: ok = 0 break else: D[r] = 1 if s[r] == "<": r = r - L[r] else: r = r + L[r] if ok: print("FINITE") else: ...
3
339
A
Helpful Maths
PROGRAMMING
800
[ "greedy", "implementation", "sortings", "strings" ]
null
null
Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation. The teacher has written down the sum of multiple numbers. Pupils should calculate the sum. To make the calculation easier, the sum only contains numbers 1, 2 and 3. Still, that isn't enough for Xe...
The first line contains a non-empty string *s* — the sum Xenia needs to count. String *s* contains no spaces. It only contains digits and characters "+". Besides, string *s* is a correct sum of numbers 1, 2 and 3. String *s* is at most 100 characters long.
Print the new sum that Xenia can count.
[ "3+2+1\n", "1+1+3+1+3\n", "2\n" ]
[ "1+2+3\n", "1+1+1+3+3\n", "2\n" ]
none
500
[ { "input": "3+2+1", "output": "1+2+3" }, { "input": "1+1+3+1+3", "output": "1+1+1+3+3" }, { "input": "2", "output": "2" }, { "input": "2+2+1+1+3", "output": "1+1+2+2+3" }, { "input": "2+1+2+2+2+3+1+3+1+2", "output": "1+1+1+2+2+2+2+2+3+3" }, { "input": ...
1,699,978,250
2,147,483,647
Python 3
OK
TESTS
21
92
0
list = input().split("+") list.sort() output = "+".join(list) print(output)
Title: Helpful Maths Time Limit: None seconds Memory Limit: None megabytes Problem Description: Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation. The teacher has written down the sum of multiple numbers. Pupils should calculate the sum. To mak...
```python list = input().split("+") list.sort() output = "+".join(list) print(output) ```
3
5
A
Chat Servers Outgoing Traffic
PROGRAMMING
1,000
[ "implementation" ]
A. Chat Server's Outgoing Traffic
1
64
Polycarp is working on a new project called "Polychat". Following modern tendencies in IT, he decided, that this project should contain chat as well. To achieve this goal, Polycarp has spent several hours in front of his laptop and implemented a chat server that can process three types of commands: - Include a person...
Input file will contain not more than 100 commands, each in its own line. No line will exceed 100 characters. Formats of the commands will be the following: - +&lt;name&gt; for 'Add' command. - -&lt;name&gt; for 'Remove' command. - &lt;sender_name&gt;:&lt;message_text&gt; for 'Send' command. &lt;name&gt; and &lt;s...
Print a single number — answer to the problem.
[ "+Mike\nMike:hello\n+Kate\n+Dmitry\n-Dmitry\nKate:hi\n-Kate\n", "+Mike\n-Mike\n+Mike\nMike:Hi I am here\n-Mike\n+Kate\n-Kate\n" ]
[ "9\n", "14\n" ]
none
0
[ { "input": "+Mike\nMike:hello\n+Kate\n+Dmitry\n-Dmitry\nKate:hi\n-Kate", "output": "9" }, { "input": "+Mike\n-Mike\n+Mike\nMike:Hi I am here\n-Mike\n+Kate\n-Kate", "output": "14" }, { "input": "+Dmitry\n+Mike\nDmitry:All letters will be used\nDmitry:qwertyuiopasdfghjklzxcvbnm QWERTYUIO...
1,525,108,377
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
218
7,475,200
import re chatpeople=set() ans=0 while True: x=input() if x=='': break if x[0]=="+": member=re.findall(r'[+](.*)',x)[0] chatpeople.add(member) elif x[0]=="-": member=re.findall(r'[-](.*)',x)[0] chatpeople.remove(member) else: message=re.findall(r':(.*)',x)[0] ans+=len(message)...
Title: Chat Servers Outgoing Traffic Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Polycarp is working on a new project called "Polychat". Following modern tendencies in IT, he decided, that this project should contain chat as well. To achieve this goal, Polycarp has spent several hours in fr...
```python import re chatpeople=set() ans=0 while True: x=input() if x=='': break if x[0]=="+": member=re.findall(r'[+](.*)',x)[0] chatpeople.add(member) elif x[0]=="-": member=re.findall(r'[-](.*)',x)[0] chatpeople.remove(member) else: message=re.findall(r':(.*)',x)[0] ans+=le...
-1
835
A
Key races
PROGRAMMING
800
[ "math" ]
null
null
Two boys decided to compete in text typing on the site "Key races". During the competition, they have to type a text consisting of *s* characters. The first participant types one character in *v*1 milliseconds and has ping *t*1 milliseconds. The second participant types one character in *v*2 milliseconds and has ping *...
The first line contains five integers *s*, *v*1, *v*2, *t*1, *t*2 (1<=≤<=*s*,<=*v*1,<=*v*2,<=*t*1,<=*t*2<=≤<=1000) — the number of characters in the text, the time of typing one character for the first participant, the time of typing one character for the the second participant, the ping of the first participant and th...
If the first participant wins, print "First". If the second participant wins, print "Second". In case of a draw print "Friendship".
[ "5 1 2 1 2\n", "3 3 1 1 1\n", "4 5 3 1 5\n" ]
[ "First\n", "Second\n", "Friendship\n" ]
In the first example, information on the success of the first participant comes in 7 milliseconds, of the second participant — in 14 milliseconds. So, the first wins. In the second example, information on the success of the first participant comes in 11 milliseconds, of the second participant — in 5 milliseconds. So, ...
500
[ { "input": "5 1 2 1 2", "output": "First" }, { "input": "3 3 1 1 1", "output": "Second" }, { "input": "4 5 3 1 5", "output": "Friendship" }, { "input": "1000 1000 1000 1000 1000", "output": "Friendship" }, { "input": "1 1 1 1 1", "output": "Friendship" }, ...
1,561,230,877
2,147,483,647
Python 3
OK
TESTS
32
109
0
s, v1, v2, t1, t2 = [int(x) for x in input().split()] if(s*v1+2*t1)<(s*v2+2*t2):print("First") elif(s*v1+2*t1)>(s*v2+2*t2):print("Second") else:print("Friendship")
Title: Key races Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two boys decided to compete in text typing on the site "Key races". During the competition, they have to type a text consisting of *s* characters. The first participant types one character in *v*1 milliseconds and has ping *t...
```python s, v1, v2, t1, t2 = [int(x) for x in input().split()] if(s*v1+2*t1)<(s*v2+2*t2):print("First") elif(s*v1+2*t1)>(s*v2+2*t2):print("Second") else:print("Friendship") ```
3
115
A
Party
PROGRAMMING
900
[ "dfs and similar", "graphs", "trees" ]
null
null
A company has *n* employees numbered from 1 to *n*. Each employee either has no immediate manager or exactly one immediate manager, who is another employee with a different number. An employee *A* is said to be the superior of another employee *B* if at least one of the following is true: - Employee *A* is the immedi...
The first line contains integer *n* (1<=≤<=*n*<=≤<=2000) — the number of employees. The next *n* lines contain the integers *p**i* (1<=≤<=*p**i*<=≤<=*n* or *p**i*<==<=-1). Every *p**i* denotes the immediate manager for the *i*-th employee. If *p**i* is -1, that means that the *i*-th employee does not have an immediate...
Print a single integer denoting the minimum number of groups that will be formed in the party.
[ "5\n-1\n1\n2\n1\n-1\n" ]
[ "3\n" ]
For the first example, three groups are sufficient, for example: - Employee 1 - Employees 2 and 4 - Employees 3 and 5
500
[ { "input": "5\n-1\n1\n2\n1\n-1", "output": "3" }, { "input": "4\n-1\n1\n2\n3", "output": "4" }, { "input": "12\n-1\n1\n2\n3\n-1\n5\n6\n7\n-1\n9\n10\n11", "output": "4" }, { "input": "6\n-1\n-1\n2\n3\n1\n1", "output": "3" }, { "input": "3\n-1\n1\n1", "output": ...
1,681,547,354
2,147,483,647
PyPy 3-64
MEMORY_LIMIT_EXCEEDED
TESTS
0
92
268,390,400
from itertools import accumulate from collections import defaultdict import sys sys.setrecursionlimit(10**6) def I(): return int(input()) def ST(): return input() def IL(): return list(map(int, input().split())) def ILS(): return sorted(map(int, input().split())) n = I() nums = defaultdict(list) for i in ...
Title: Party Time Limit: None seconds Memory Limit: None megabytes Problem Description: A company has *n* employees numbered from 1 to *n*. Each employee either has no immediate manager or exactly one immediate manager, who is another employee with a different number. An employee *A* is said to be the superior of an...
```python from itertools import accumulate from collections import defaultdict import sys sys.setrecursionlimit(10**6) def I(): return int(input()) def ST(): return input() def IL(): return list(map(int, input().split())) def ILS(): return sorted(map(int, input().split())) n = I() nums = defaultdict(list) ...
0
114
A
Cifera
PROGRAMMING
1,000
[ "math" ]
null
null
When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousand and "tma tmyschaya" (which literally means "the tma of tmas") used to stand for a million...
The first input line contains integer number *k*, the second line contains integer number *l* (2<=≤<=*k*,<=*l*<=≤<=231<=-<=1).
You should print in the first line of the output "YES", if the number belongs to the set petriciumus cifera and otherwise print "NO". If the number belongs to the set, then print on the seconds line the only number — the importance of number *l*.
[ "5\n25\n", "3\n8\n" ]
[ "YES\n1\n", "NO\n" ]
none
500
[ { "input": "5\n25", "output": "YES\n1" }, { "input": "3\n8", "output": "NO" }, { "input": "123\n123", "output": "YES\n0" }, { "input": "99\n970300", "output": "NO" }, { "input": "1000\n6666666", "output": "NO" }, { "input": "59\n3571", "output": "N...
1,585,607,497
2,147,483,647
Python 3
OK
TESTS
64
248
0
import math k=int(input()) l=int(input()) n=0 tmp=k while(l>tmp and l!=tmp): tmp=tmp*k n+=1 if(l==tmp): print("YES") print(n) else: print("NO")
Title: Cifera Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousa...
```python import math k=int(input()) l=int(input()) n=0 tmp=k while(l>tmp and l!=tmp): tmp=tmp*k n+=1 if(l==tmp): print("YES") print(n) else: print("NO") ```
3
393
A
Nineteen
PROGRAMMING
0
[]
null
null
Alice likes word "nineteen" very much. She has a string *s* and wants the string to contain as many such words as possible. For that reason she can rearrange the letters of the string. For example, if she has string "xiineteenppnnnewtnee", she can get string "xnineteenppnineteenw", containing (the occurrences marked) ...
The first line contains a non-empty string *s*, consisting only of lowercase English letters. The length of string *s* doesn't exceed 100.
Print a single integer — the maximum number of "nineteen"s that she can get in her string.
[ "nniinneetteeeenn\n", "nneteenabcnneteenabcnneteenabcnneteenabcnneteenabcii\n", "nineteenineteen\n" ]
[ "2", "2", "2" ]
none
500
[ { "input": "nniinneetteeeenn", "output": "2" }, { "input": "nneteenabcnneteenabcnneteenabcnneteenabcnneteenabcii", "output": "2" }, { "input": "nineteenineteen", "output": "2" }, { "input": "nssemsnnsitjtihtthij", "output": "0" }, { "input": "eehihnttehtherjsihihn...
1,569,439,857
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
108
0
s = "nineteenineteen" n = s.count("n") i = s.count("i") e = s.count("e") t = s.count("t") c = s.count("ineteen") if c>0: print (c) else: print (min(n//3,i,e//3,t))
Title: Nineteen Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alice likes word "nineteen" very much. She has a string *s* and wants the string to contain as many such words as possible. For that reason she can rearrange the letters of the string. For example, if she has string "xiinetee...
```python s = "nineteenineteen" n = s.count("n") i = s.count("i") e = s.count("e") t = s.count("t") c = s.count("ineteen") if c>0: print (c) else: print (min(n//3,i,e//3,t)) ```
0
4
A
Watermelon
PROGRAMMING
800
[ "brute force", "math" ]
A. Watermelon
1
64
One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dying of thirst, and decided to divide the berry, however they faced a hard problem. Pete and ...
The first (and the only) input line contains integer number *w* (1<=≤<=*w*<=≤<=100) — the weight of the watermelon bought by the boys.
Print YES, if the boys can divide the watermelon into two parts, each of them weighing even number of kilos; and NO in the opposite case.
[ "8\n" ]
[ "YES\n" ]
For example, the boys can divide the watermelon into two parts of 2 and 6 kilos respectively (another variant — two parts of 4 and 4 kilos).
0
[ { "input": "8", "output": "YES" }, { "input": "5", "output": "NO" }, { "input": "4", "output": "YES" }, { "input": "3", "output": "NO" }, { "input": "2", "output": "NO" }, { "input": "1", "output": "NO" }, { "input": "7", "output": "NO"...
1,692,967,990
2,147,483,647
Python 3
OK
TESTS
20
92
0
weight = input() w = int(weight) a = 0 b = w - a while True: a += 1 b = w - a if a % 2 == 0 and b % 2 == 0 and b != 0: print('YES') break elif a > w: print('NO') break else: continue
Title: Watermelon Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dyin...
```python weight = input() w = int(weight) a = 0 b = w - a while True: a += 1 b = w - a if a % 2 == 0 and b % 2 == 0 and b != 0: print('YES') break elif a > w: print('NO') break else: continue ```
3.954
0
none
none
none
0
[ "none" ]
null
null
Fox Ciel has *n* boxes in her room. They have the same size and weight, but they might have different strength. The *i*-th box can hold at most *x**i* boxes on its top (we'll call *x**i* the strength of the box). Since all the boxes have the same size, Ciel cannot put more than one box directly on the top of some box...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). The next line contains *n* integers *x*1,<=*x*2,<=...,<=*x**n* (0<=≤<=*x**i*<=≤<=100).
Output a single integer — the minimal possible number of piles.
[ "3\n0 0 10\n", "5\n0 1 2 3 4\n", "4\n0 0 0 0\n", "9\n0 1 0 2 0 1 1 2 10\n" ]
[ "2\n", "1\n", "4\n", "3\n" ]
In example 1, one optimal way is to build 2 piles: the first pile contains boxes 1 and 3 (from top to bottom), the second pile contains only box 2. In example 2, we can build only 1 pile that contains boxes 1, 2, 3, 4, 5 (from top to bottom).
0
[ { "input": "3\n0 0 10", "output": "2" }, { "input": "5\n0 1 2 3 4", "output": "1" }, { "input": "4\n0 0 0 0", "output": "4" }, { "input": "9\n0 1 0 2 0 1 1 2 10", "output": "3" }, { "input": "1\n0", "output": "1" }, { "input": "2\n0 0", "output": "...
1,391,445,342
3,342
Python 3
WRONG_ANSWER
PRETESTS
9
62
307,200
n = int(input()) arr = list(map(int,input().split())) chet = [0]*101 for i in range(n): chet[arr[i]] += 1 print(max(chet))
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel has *n* boxes in her room. They have the same size and weight, but they might have different strength. The *i*-th box can hold at most *x**i* boxes on its top (we'll call *x**i* the strength of the box). Since all the b...
```python n = int(input()) arr = list(map(int,input().split())) chet = [0]*101 for i in range(n): chet[arr[i]] += 1 print(max(chet)) ```
0
49
A
Sleuth
PROGRAMMING
800
[ "implementation" ]
A. Sleuth
2
256
Vasya plays the sleuth with his friends. The rules of the game are as follows: those who play for the first time, that is Vasya is the sleuth, he should investigate a "crime" and find out what is happening. He can ask any questions whatsoever that can be answered with "Yes" or "No". All the rest agree beforehand to ans...
The single line contains a question represented by a non-empty line consisting of large and small Latin letters, spaces and a question mark. The line length does not exceed 100. It is guaranteed that the question mark occurs exactly once in the line — as the last symbol and that the line contains at least one letter.
Print answer for the question in a single line: YES if the answer is "Yes", NO if the answer is "No". Remember that in the reply to the question the last letter, not the last character counts. I. e. the spaces and the question mark do not count as letters.
[ "Is it a melon?\n", "Is it an apple?\n", "Is it a banana ?\n", "Is it an apple and a banana simultaneouSLY?\n" ]
[ "NO\n", "YES\n", "YES\n", "YES\n" ]
none
500
[ { "input": "Is it a melon?", "output": "NO" }, { "input": "Is it an apple?", "output": "YES" }, { "input": " Is it a banana ?", "output": "YES" }, { "input": "Is it an apple and a banana simultaneouSLY?", "output": "YES" }, { "input": "oHtSbDwzHb?", ...
1,669,744,026
2,147,483,647
PyPy 3-64
OK
TESTS
35
122
0
n=input() n=list(n) n=n[::-1] l=['A','E','I','O','U','Y','a','e','i','o','u','y'] i=1 while(n[i]==' '): i=i+1 continue #print(n,i) if(n[i] not in l): print("NO") else: print("YES")
Title: Sleuth Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya plays the sleuth with his friends. The rules of the game are as follows: those who play for the first time, that is Vasya is the sleuth, he should investigate a "crime" and find out what is happening. He can ask any questions ...
```python n=input() n=list(n) n=n[::-1] l=['A','E','I','O','U','Y','a','e','i','o','u','y'] i=1 while(n[i]==' '): i=i+1 continue #print(n,i) if(n[i] not in l): print("NO") else: print("YES") ```
3.9695
2
A
Winner
PROGRAMMING
1,500
[ "hashing", "implementation" ]
A. Winner
1
64
The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes more difficult if the number of such players is more than one. During each round a pla...
The first line contains an integer number *n* (1<=<=≤<=<=*n*<=<=≤<=<=1000), *n* is the number of rounds played. Then follow *n* lines, containing the information about the rounds in "name score" format in chronological order, where name is a string of lower-case Latin letters with the length from 1 to 32, and score is ...
Print the name of the winner.
[ "3\nmike 3\nandrew 5\nmike 2\n", "3\nandrew 3\nandrew 2\nmike 5\n" ]
[ "andrew\n", "andrew\n" ]
none
0
[ { "input": "3\nmike 3\nandrew 5\nmike 2", "output": "andrew" }, { "input": "3\nandrew 3\nandrew 2\nmike 5", "output": "andrew" }, { "input": "5\nkaxqybeultn -352\nmgochgrmeyieyskhuourfg -910\nkaxqybeultn 691\nmgochgrmeyieyskhuourfg -76\nkaxqybeultn -303", "output": "kaxqybeultn" },...
1,682,485,921
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
92
0
n = int(input()) l = [] for _ in range(n): l.append(input().split()) d = {} for i in range(n): k = l[i][0] s = int(l[i][1]) if k not in d: d[k] = int(s) else: d[k] += int(s) m = max(d[i] for i in d) d2 = {} for i in range(n): k = l[i][0] s = int(l[i][1]) ...
Title: Winner Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes...
```python n = int(input()) l = [] for _ in range(n): l.append(input().split()) d = {} for i in range(n): k = l[i][0] s = int(l[i][1]) if k not in d: d[k] = int(s) else: d[k] += int(s) m = max(d[i] for i in d) d2 = {} for i in range(n): k = l[i][0] s = int(...
0
994
B
Knights of a Polygonal Table
PROGRAMMING
1,400
[ "greedy", "implementation", "sortings" ]
null
null
Unlike Knights of a Round Table, Knights of a Polygonal Table deprived of nobility and happy to kill each other. But each knight has some power and a knight can kill another knight if and only if his power is greater than the power of victim. However, even such a knight will torment his conscience, so he can kill no mo...
The first line contains two integers $n$ and $k$ $(1 \le n \le 10^5, 0 \le k \le \min(n-1,10))$ — the number of knights and the number $k$ from the statement. The second line contains $n$ integers $p_1, p_2 ,\ldots,p_n$ $(1 \le p_i \le 10^9)$ — powers of the knights. All $p_i$ are distinct. The third line contains $n...
Print $n$ integers — the maximum number of coins each knight can have it only he kills other knights.
[ "4 2\n4 5 9 7\n1 2 11 33\n", "5 1\n1 2 3 4 5\n1 2 3 4 5\n", "1 0\n2\n3\n" ]
[ "1 3 46 36 ", "1 3 5 7 9 ", "3 " ]
Consider the first example. - The first knight is the weakest, so he can't kill anyone. That leaves him with the only coin he initially has. - The second knight can kill the first knight and add his coin to his own two. - The third knight is the strongest, but he can't kill more than $k = 2$ other knights. It is o...
1,000
[ { "input": "4 2\n4 5 9 7\n1 2 11 33", "output": "1 3 46 36 " }, { "input": "5 1\n1 2 3 4 5\n1 2 3 4 5", "output": "1 3 5 7 9 " }, { "input": "1 0\n2\n3", "output": "3 " }, { "input": "7 1\n2 3 4 5 7 8 9\n0 3 7 9 5 8 9", "output": "0 3 10 16 14 17 18 " }, { "input"...
1,530,190,717
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
1,000
22,016,000
inf = 1000000005 I = input().split() n = int(I[0]) k = int(I[1]) A = [(0, 0, 0)] * n res = [0] * n naj = [0] * 20 P = input().split() C = input().split() for i in range(0, n) : A[i] = (int(P[i]), int(C[i]), i) A.sort() for i in range(0, n) : res[A[i][2]] = A[i][1] for j in range (0, k) : res[A[...
Title: Knights of a Polygonal Table Time Limit: None seconds Memory Limit: None megabytes Problem Description: Unlike Knights of a Round Table, Knights of a Polygonal Table deprived of nobility and happy to kill each other. But each knight has some power and a knight can kill another knight if and only if his power ...
```python inf = 1000000005 I = input().split() n = int(I[0]) k = int(I[1]) A = [(0, 0, 0)] * n res = [0] * n naj = [0] * 20 P = input().split() C = input().split() for i in range(0, n) : A[i] = (int(P[i]), int(C[i]), i) A.sort() for i in range(0, n) : res[A[i][2]] = A[i][1] for j in range (0, k) : ...
0
218
B
Airport
PROGRAMMING
1,100
[ "implementation" ]
null
null
Lolek and Bolek are about to travel abroad by plane. The local airport has a special "Choose Your Plane" offer. The offer's conditions are as follows: - it is up to a passenger to choose a plane to fly on; - if the chosen plane has *x* (*x*<=&gt;<=0) empty seats at the given moment, then the ticket for such a plane ...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1000) — the number of passengers in the queue and the number of planes in the airport, correspondingly. The next line contains *m* integers *a*1,<=*a*2,<=...,<=*a**m* (1<=≤<=*a**i*<=≤<=1000) — *a**i* stands for the number of empty seats in the *i*-th...
Print two integers — the maximum and the minimum number of zlotys that the airport administration can earn, correspondingly.
[ "4 3\n2 1 1\n", "4 3\n2 2 2\n" ]
[ "5 5\n", "7 6\n" ]
In the first test sample the number of passengers is equal to the number of empty seats, so regardless of the way the planes are chosen, the administration will earn the same sum. In the second sample the sum is maximized if the 1-st person in the queue buys a ticket to the 1-st plane, the 2-nd person — to the 2-nd pl...
500
[ { "input": "4 3\n2 1 1", "output": "5 5" }, { "input": "4 3\n2 2 2", "output": "7 6" }, { "input": "10 5\n10 3 3 1 2", "output": "58 26" }, { "input": "10 1\n10", "output": "55 55" }, { "input": "10 1\n100", "output": "955 955" }, { "input": "10 2\n4 7...
1,634,113,934
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
62
0
n, k = map(int, input().split()) a = list(map(int, input().split())) b = a[0:] profit1 = 0 profit2 = 0 for i in range(n - 1): if a[i] == 1 in b: profit1 += b.count(1) b.remove(1) if a[i] != 1: profit1 += b[i] for j in range(n): maxa = max(a) profit2 += maxa a....
Title: Airport Time Limit: None seconds Memory Limit: None megabytes Problem Description: Lolek and Bolek are about to travel abroad by plane. The local airport has a special "Choose Your Plane" offer. The offer's conditions are as follows: - it is up to a passenger to choose a plane to fly on; - if the chosen pl...
```python n, k = map(int, input().split()) a = list(map(int, input().split())) b = a[0:] profit1 = 0 profit2 = 0 for i in range(n - 1): if a[i] == 1 in b: profit1 += b.count(1) b.remove(1) if a[i] != 1: profit1 += b[i] for j in range(n): maxa = max(a) profit2 += ma...
-1
508
A
Pasha and Pixels
PROGRAMMING
1,100
[ "brute force" ]
null
null
Pasha loves his phone and also putting his hair up... But the hair is now irrelevant. Pasha has installed a new game to his phone. The goal of the game is following. There is a rectangular field consisting of *n* row with *m* pixels in each row. Initially, all the pixels are colored white. In one move, Pasha can choos...
The first line of the input contains three integers *n*,<=*m*,<=*k* (1<=≤<=*n*,<=*m*<=≤<=1000, 1<=≤<=*k*<=≤<=105) — the number of rows, the number of columns and the number of moves that Pasha is going to perform. The next *k* lines contain Pasha's moves in the order he makes them. Each line contains two integers *i*...
If Pasha loses, print the number of the move when the 2<=×<=2 square consisting of black pixels is formed. If Pasha doesn't lose, that is, no 2<=×<=2 square consisting of black pixels is formed during the given *k* moves, print 0.
[ "2 2 4\n1 1\n1 2\n2 1\n2 2\n", "2 3 6\n2 3\n2 2\n1 3\n2 2\n1 2\n1 1\n", "5 3 7\n2 3\n1 2\n1 1\n4 1\n3 1\n5 3\n3 2\n" ]
[ "4\n", "5\n", "0\n" ]
none
500
[ { "input": "2 2 4\n1 1\n1 2\n2 1\n2 2", "output": "4" }, { "input": "2 3 6\n2 3\n2 2\n1 3\n2 2\n1 2\n1 1", "output": "5" }, { "input": "5 3 7\n2 3\n1 2\n1 1\n4 1\n3 1\n5 3\n3 2", "output": "0" }, { "input": "3 3 11\n2 1\n3 1\n1 1\n1 3\n1 2\n2 3\n3 3\n3 2\n2 2\n1 3\n3 3", ...
1,634,893,018
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
12
2,000
4,915,200
n,m,k=map(int,input().split()) l=[] num=[0] for _ in range(n*m) : l.append(1) for i in range(1,k+1) : x,y=map(int,input().split()) idx=(x-1)*m+y-1 if l[idx]==1 : l[idx] = 0 for j in range(1, n): for s in range(1, m): idx = (j - 1) * m + s - 1 ...
Title: Pasha and Pixels Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha loves his phone and also putting his hair up... But the hair is now irrelevant. Pasha has installed a new game to his phone. The goal of the game is following. There is a rectangular field consisting of *n* row ...
```python n,m,k=map(int,input().split()) l=[] num=[0] for _ in range(n*m) : l.append(1) for i in range(1,k+1) : x,y=map(int,input().split()) idx=(x-1)*m+y-1 if l[idx]==1 : l[idx] = 0 for j in range(1, n): for s in range(1, m): idx = (j - 1) * m + s...
0
151
A
Soft Drinking
PROGRAMMING
800
[ "implementation", "math" ]
null
null
This winter is so cold in Nvodsk! A group of *n* friends decided to buy *k* bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has *l* milliliters of the drink. Also they bought *c* limes and cut each of them into *d* slices. After that they found *p* grams of salt. To make a toast, each frie...
The first and only line contains positive integers *n*, *k*, *l*, *c*, *d*, *p*, *nl*, *np*, not exceeding 1000 and no less than 1. The numbers are separated by exactly one space.
Print a single integer — the number of toasts each friend can make.
[ "3 4 5 10 8 100 3 1\n", "5 100 10 1 19 90 4 3\n", "10 1000 1000 25 23 1 50 1\n" ]
[ "2\n", "3\n", "0\n" ]
A comment to the first sample: Overall the friends have 4 * 5 = 20 milliliters of the drink, it is enough to make 20 / 3 = 6 toasts. The limes are enough for 10 * 8 = 80 toasts and the salt is enough for 100 / 1 = 100 toasts. However, there are 3 friends in the group, so the answer is *min*(6, 80, 100) / 3 = 2.
500
[ { "input": "3 4 5 10 8 100 3 1", "output": "2" }, { "input": "5 100 10 1 19 90 4 3", "output": "3" }, { "input": "10 1000 1000 25 23 1 50 1", "output": "0" }, { "input": "1 7 4 5 5 8 3 2", "output": "4" }, { "input": "2 3 3 5 5 10 1 3", "output": "1" }, { ...
1,688,205,583
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
92
0
a,b,c,d,e,r,t,g=map(int,input().split()) l=b*c u=l//t i=d*e y=r/g h=(min(u,i,y))//3 print(h)
Title: Soft Drinking Time Limit: None seconds Memory Limit: None megabytes Problem Description: This winter is so cold in Nvodsk! A group of *n* friends decided to buy *k* bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has *l* milliliters of the drink. Also they bought *c* limes and cut...
```python a,b,c,d,e,r,t,g=map(int,input().split()) l=b*c u=l//t i=d*e y=r/g h=(min(u,i,y))//3 print(h) ```
0
1,011
A
Stages
PROGRAMMING
900
[ "greedy", "implementation", "sortings" ]
null
null
Natasha is going to fly to Mars. She needs to build a rocket, which consists of several stages in some order. Each of the stages is defined by a lowercase Latin letter. This way, the rocket can be described by the string — concatenation of letters, which correspond to the stages. There are $n$ stages available. The ro...
The first line of input contains two integers — $n$ and $k$ ($1 \le k \le n \le 50$) – the number of available stages and the number of stages to use in the rocket. The second line contains string $s$, which consists of exactly $n$ lowercase Latin letters. Each letter defines a new stage, which can be used to build th...
Print a single integer — the minimal total weight of the rocket or -1, if it is impossible to build the rocket at all.
[ "5 3\nxyabd\n", "7 4\nproblem\n", "2 2\nab\n", "12 1\nabaabbaaabbb\n" ]
[ "29", "34", "-1", "1" ]
In the first example, the following rockets satisfy the condition: - "adx" (weight is $1+4+24=29$);- "ady" (weight is $1+4+25=30$);- "bdx" (weight is $2+4+24=30$);- "bdy" (weight is $2+4+25=31$). Rocket "adx" has the minimal weight, so the answer is $29$. In the second example, target rocket is "belo". Its weight ...
500
[ { "input": "5 3\nxyabd", "output": "29" }, { "input": "7 4\nproblem", "output": "34" }, { "input": "2 2\nab", "output": "-1" }, { "input": "12 1\nabaabbaaabbb", "output": "1" }, { "input": "50 13\nqwertyuiopasdfghjklzxcvbnmaaaaaaaaaaaaaaaaaaaaaaaa", "output": ...
1,587,399,644
2,147,483,647
PyPy 3
OK
TESTS
29
140
0
a='abcdefghijklmnopqrstuvwxyz' n,k=map(int,input().split( )) s=list(input()) s.sort() g=(a.index(s[0])+1) k-=1 p=1 m='' m+=s[0] while k!=0: if a.index(s[p])-a.index(m[len(m)-1])>=2: m+=s[p] g+=(a.index(s[p])+1) k-=1 p+=1 if p==n and k!=0: print(-1) ex...
Title: Stages Time Limit: None seconds Memory Limit: None megabytes Problem Description: Natasha is going to fly to Mars. She needs to build a rocket, which consists of several stages in some order. Each of the stages is defined by a lowercase Latin letter. This way, the rocket can be described by the string — conca...
```python a='abcdefghijklmnopqrstuvwxyz' n,k=map(int,input().split( )) s=list(input()) s.sort() g=(a.index(s[0])+1) k-=1 p=1 m='' m+=s[0] while k!=0: if a.index(s[p])-a.index(m[len(m)-1])>=2: m+=s[p] g+=(a.index(s[p])+1) k-=1 p+=1 if p==n and k!=0: print(-1) ...
3
740
A
Alyona and copybooks
PROGRAMMING
1,300
[ "brute force", "implementation" ]
null
null
Little girl Alyona is in a shop to buy some copybooks for school. She study four subjects so she wants to have equal number of copybooks for each of the subjects. There are three types of copybook's packs in the shop: it is possible to buy one copybook for *a* rubles, a pack of two copybooks for *b* rubles, and a pack ...
The only line contains 4 integers *n*, *a*, *b*, *c* (1<=≤<=*n*,<=*a*,<=*b*,<=*c*<=≤<=109).
Print the minimum amount of rubles she should pay to buy such number of copybooks *k* that *n*<=+<=*k* is divisible by 4.
[ "1 1 3 4\n", "6 2 1 1\n", "4 4 4 4\n", "999999999 1000000000 1000000000 1000000000\n" ]
[ "3\n", "1\n", "0\n", "1000000000\n" ]
In the first example Alyona can buy 3 packs of 1 copybook for 3*a* = 3 rubles in total. After that she will have 4 copybooks which she can split between the subjects equally. In the second example Alyuna can buy a pack of 2 copybooks for *b* = 1 ruble. She will have 8 copybooks in total. In the third example Alyona ...
500
[ { "input": "1 1 3 4", "output": "3" }, { "input": "6 2 1 1", "output": "1" }, { "input": "4 4 4 4", "output": "0" }, { "input": "999999999 1000000000 1000000000 1000000000", "output": "1000000000" }, { "input": "1016 3 2 1", "output": "0" }, { "input":...
1,479,928,963
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
46
0
a=input() n,a,b,c=list(map(int,a.split())) r=n%4 r=4-r if r==1: print (min([a,b,c])) elif r==2: print (min([a*2,b,c])) elif r==4: print (0) else: print (min([a*3,b,c]))
Title: Alyona and copybooks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little girl Alyona is in a shop to buy some copybooks for school. She study four subjects so she wants to have equal number of copybooks for each of the subjects. There are three types of copybook's packs in the sh...
```python a=input() n,a,b,c=list(map(int,a.split())) r=n%4 r=4-r if r==1: print (min([a,b,c])) elif r==2: print (min([a*2,b,c])) elif r==4: print (0) else: print (min([a*3,b,c])) ```
0
127
A
Wasted Time
PROGRAMMING
900
[ "geometry" ]
null
null
Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count the time he has wasted signing papers. Mr. Scrooge's signature can be represented as a polyline ...
The first line contains two integers *n* and *k* (2<=≤<=*n*<=≤<=100, 1<=≤<=*k*<=≤<=1000). Each of the following *n* lines contains the coordinates of the polyline's endpoints. The *i*-th one contains coordinates of the point *A**i* — integers *x**i* and *y**i*, separated by a space. All points *A**i* are different. Th...
Print one real number — the total time Scrooges wastes on signing the papers in seconds. The absolute or relative error should not exceed 10<=-<=6.
[ "2 1\n0 0\n10 0\n", "5 10\n3 1\n-5 6\n-2 -1\n3 2\n10 0\n", "6 10\n5 0\n4 0\n6 0\n3 0\n7 0\n2 0\n" ]
[ "0.200000000", "6.032163204", "3.000000000" ]
none
500
[ { "input": "2 1\n0 0\n10 0", "output": "0.200000000" }, { "input": "5 10\n3 1\n-5 6\n-2 -1\n3 2\n10 0", "output": "6.032163204" }, { "input": "6 10\n5 0\n4 0\n6 0\n3 0\n7 0\n2 0", "output": "3.000000000" }, { "input": "10 95\n-20 -5\n2 -8\n14 13\n10 3\n17 11\n13 -12\n-6 11\n1...
1,660,407,493
2,147,483,647
Python 3
OK
TESTS
42
92
0
from math import sqrt n, k = map(int, input().split()) x1, y1 = map(float, input().split()) distance = 0.0 for i in range(n - 1): x2, y2 = map(float, input().split()) distance += sqrt((x1 - x2) ** 2 + (y1 - y2) ** 2) x1 = x2 y1 = y2 time = distance / 50 print(time * k)
Title: Wasted Time Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count ...
```python from math import sqrt n, k = map(int, input().split()) x1, y1 = map(float, input().split()) distance = 0.0 for i in range(n - 1): x2, y2 = map(float, input().split()) distance += sqrt((x1 - x2) ** 2 + (y1 - y2) ** 2) x1 = x2 y1 = y2 time = distance / 50 print(time * k) ```
3
811
B
Vladik and Complicated Book
PROGRAMMING
1,200
[ "implementation", "sortings" ]
null
null
Vladik had started reading a complicated book about algorithms containing *n* pages. To improve understanding of what is written, his friends advised him to read pages in some order given by permutation *P*<==<=[*p*1,<=*p*2,<=...,<=*p**n*], where *p**i* denotes the number of page that should be read *i*-th in turn. So...
First line contains two space-separated integers *n*, *m* (1<=≤<=*n*,<=*m*<=≤<=104) — length of permutation and number of times Vladik's mom sorted some subsegment of the book. Second line contains *n* space-separated integers *p*1,<=*p*2,<=...,<=*p**n* (1<=≤<=*p**i*<=≤<=*n*) — permutation *P*. Note that elements in p...
For each mom’s sorting on it’s own line print "Yes", if page which is interesting to Vladik hasn't changed, or "No" otherwise.
[ "5 5\n5 4 3 2 1\n1 5 3\n1 3 1\n2 4 3\n4 4 4\n2 5 3\n", "6 5\n1 4 3 2 5 6\n2 4 3\n1 6 2\n4 5 4\n1 3 3\n2 6 3\n" ]
[ "Yes\nNo\nYes\nYes\nNo\n", "Yes\nNo\nYes\nNo\nYes\n" ]
Explanation of first test case: 1. [1, 2, 3, 4, 5] — permutation after sorting, 3-rd element hasn’t changed, so answer is "Yes". 1. [3, 4, 5, 2, 1] — permutation after sorting, 1-st element has changed, so answer is "No". 1. [5, 2, 3, 4, 1] — permutation after sorting, 3-rd element hasn’t changed, so answer is "Ye...
1,000
[ { "input": "5 5\n5 4 3 2 1\n1 5 3\n1 3 1\n2 4 3\n4 4 4\n2 5 3", "output": "Yes\nNo\nYes\nYes\nNo" }, { "input": "6 5\n1 4 3 2 5 6\n2 4 3\n1 6 2\n4 5 4\n1 3 3\n2 6 3", "output": "Yes\nNo\nYes\nNo\nYes" }, { "input": "10 10\n10 1 6 7 9 8 4 3 5 2\n1 1 1\n4 4 4\n7 7 7\n3 3 3\n1 6 5\n2 6 2\n6...
1,685,201,047
2,147,483,647
PyPy 3-64
OK
TESTS
91
997
11,776,000
n,m=map(int,input().split()) p=list(map(int,input().split())) for _ in range(m): l,r,x=map(int,input().split()) l2=p[l-1:r] k=l2[x-l] c=0 for y in l2: if y<l2[x-l]: c+=1 if c==x-l: print("Yes") else: print("No")
Title: Vladik and Complicated Book Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vladik had started reading a complicated book about algorithms containing *n* pages. To improve understanding of what is written, his friends advised him to read pages in some order given by permutation *P*<...
```python n,m=map(int,input().split()) p=list(map(int,input().split())) for _ in range(m): l,r,x=map(int,input().split()) l2=p[l-1:r] k=l2[x-l] c=0 for y in l2: if y<l2[x-l]: c+=1 if c==x-l: print("Yes") else: print("No") `...
3
985
C
Liebig's Barrels
PROGRAMMING
1,500
[ "greedy" ]
null
null
You have *m*<==<=*n*·*k* wooden staves. The *i*-th stave has length *a**i*. You have to assemble *n* barrels consisting of *k* staves each, you can use any *k* staves to construct a barrel. Each stave must belong to exactly one barrel. Let volume *v**j* of barrel *j* be equal to the length of the minimal stave in it. ...
The first line contains three space-separated integers *n*, *k* and *l* (1<=≤<=*n*,<=*k*<=≤<=105, 1<=≤<=*n*·*k*<=≤<=105, 0<=≤<=*l*<=≤<=109). The second line contains *m*<==<=*n*·*k* space-separated integers *a*1,<=*a*2,<=...,<=*a**m* (1<=≤<=*a**i*<=≤<=109) — lengths of staves.
Print single integer — maximal total sum of the volumes of barrels or 0 if it's impossible to construct exactly *n* barrels satisfying the condition |*v**x*<=-<=*v**y*|<=≤<=*l* for any 1<=≤<=*x*<=≤<=*n* and 1<=≤<=*y*<=≤<=*n*.
[ "4 2 1\n2 2 1 2 3 2 2 3\n", "2 1 0\n10 10\n", "1 2 1\n5 2\n", "3 2 1\n1 2 3 4 5 6\n" ]
[ "7\n", "20\n", "2\n", "0\n" ]
In the first example you can form the following barrels: [1, 2], [2, 2], [2, 3], [2, 3]. In the second example you can form the following barrels: [10], [10]. In the third example you can form the following barrels: [2, 5]. In the fourth example difference between volumes of barrels in any partition is at least 2 so...
0
[ { "input": "4 2 1\n2 2 1 2 3 2 2 3", "output": "7" }, { "input": "2 1 0\n10 10", "output": "20" }, { "input": "1 2 1\n5 2", "output": "2" }, { "input": "3 2 1\n1 2 3 4 5 6", "output": "0" }, { "input": "10 3 189\n267 697 667 4 52 128 85 616 142 344 413 660 962 194...
1,529,573,554
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
171
8,089,600
n, k, l = map(int, input().split()) a = [int(x) for x in input().split()] a.sort() mins = a[:n] if max(mins) - min(mins) <= l: s = 0 for elem in mins: s += elem print(s) else: print(0)
Title: Liebig's Barrels Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have *m*<==<=*n*·*k* wooden staves. The *i*-th stave has length *a**i*. You have to assemble *n* barrels consisting of *k* staves each, you can use any *k* staves to construct a barrel. Each stave must belong to ex...
```python n, k, l = map(int, input().split()) a = [int(x) for x in input().split()] a.sort() mins = a[:n] if max(mins) - min(mins) <= l: s = 0 for elem in mins: s += elem print(s) else: print(0) ```
0
939
A
Love Triangle
PROGRAMMING
800
[ "graphs" ]
null
null
As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are *n* planes on Earth, numbered from 1 to *n*, and the plane with number *i* likes the plane with number *f**i*, where 1<=≤<=*f**i*<=≤<=*n* and *f**i*<=≠<=*i*. We call a love triangle a situation ...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=5000) — the number of planes. The second line contains *n* integers *f*1,<=*f*2,<=...,<=*f**n* (1<=≤<=*f**i*<=≤<=*n*, *f**i*<=≠<=*i*), meaning that the *i*-th plane likes the *f**i*-th.
Output «YES» if there is a love triangle consisting of planes on Earth. Otherwise, output «NO». You can output any letter in lower case or in upper case.
[ "5\n2 4 5 1 3\n", "5\n5 5 5 5 1\n" ]
[ "YES\n", "NO\n" ]
In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
500
[ { "input": "5\n2 4 5 1 3", "output": "YES" }, { "input": "5\n5 5 5 5 1", "output": "NO" }, { "input": "3\n3 1 2", "output": "YES" }, { "input": "10\n4 10 9 5 3 1 5 10 6 4", "output": "NO" }, { "input": "10\n5 5 4 9 10 9 9 5 3 1", "output": "YES" }, { "...
1,664,922,145
2,147,483,647
PyPy 3-64
OK
TESTS
16
62
2,048,000
n = int(input()) f = [int(i) for i in input().split()] D = {} for i in range(1, n + 1): D[i] = f[i - 1] res = 'NO' for ver in D.keys(): chel = ver for _ in range(3): ver = D[ver] if ver == chel: res = 'YES' print(res)
Title: Love Triangle Time Limit: None seconds Memory Limit: None megabytes Problem Description: As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are *n* planes on Earth, numbered from 1 to *n*, and the plane with number *i* likes the plane with ...
```python n = int(input()) f = [int(i) for i in input().split()] D = {} for i in range(1, n + 1): D[i] = f[i - 1] res = 'NO' for ver in D.keys(): chel = ver for _ in range(3): ver = D[ver] if ver == chel: res = 'YES' print(res) ```
3
612
A
The Text Splitting
PROGRAMMING
1,300
[ "brute force", "implementation", "strings" ]
null
null
You are given the string *s* of length *n* and the numbers *p*,<=*q*. Split the string *s* to pieces of length *p* and *q*. For example, the string "Hello" for *p*<==<=2, *q*<==<=3 can be split to the two strings "Hel" and "lo" or to the two strings "He" and "llo". Note it is allowed to split the string *s* to the st...
The first line contains three positive integers *n*,<=*p*,<=*q* (1<=≤<=*p*,<=*q*<=≤<=*n*<=≤<=100). The second line contains the string *s* consists of lowercase and uppercase latin letters and digits.
If it's impossible to split the string *s* to the strings of length *p* and *q* print the only number "-1". Otherwise in the first line print integer *k* — the number of strings in partition of *s*. Each of the next *k* lines should contain the strings in partition. Each string should be of the length *p* or *q*. The...
[ "5 2 3\nHello\n", "10 9 5\nCodeforces\n", "6 4 5\nPrivet\n", "8 1 1\nabacabac\n" ]
[ "2\nHe\nllo\n", "2\nCodef\norces\n", "-1\n", "8\na\nb\na\nc\na\nb\na\nc\n" ]
none
0
[ { "input": "5 2 3\nHello", "output": "2\nHe\nllo" }, { "input": "10 9 5\nCodeforces", "output": "2\nCodef\norces" }, { "input": "6 4 5\nPrivet", "output": "-1" }, { "input": "8 1 1\nabacabac", "output": "8\na\nb\na\nc\na\nb\na\nc" }, { "input": "1 1 1\n1", "ou...
1,451,075,859
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
62
0
from bisect import bisect from itertools import permutations,combinations res = [] n,p,q = map(int,input().split()) s = input() for i in range(n): for j in range(n): if n==p*i+q*j: print(i+j) for z in range (i): print(s[p*z:p*(z+1)]) for v in ra...
Title: The Text Splitting Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given the string *s* of length *n* and the numbers *p*,<=*q*. Split the string *s* to pieces of length *p* and *q*. For example, the string "Hello" for *p*<==<=2, *q*<==<=3 can be split to the two strings "H...
```python from bisect import bisect from itertools import permutations,combinations res = [] n,p,q = map(int,input().split()) s = input() for i in range(n): for j in range(n): if n==p*i+q*j: print(i+j) for z in range (i): print(s[p*z:p*(z+1)]) f...
0
932
B
Recursive Queries
PROGRAMMING
1,300
[ "binary search", "data structures", "dfs and similar" ]
null
null
Let us define two functions *f* and *g* on positive integer numbers. You need to process *Q* queries. In each query, you will be given three integers *l*, *r* and *k*. You need to print the number of integers *x* between *l* and *r* inclusive, such that *g*(*x*)<==<=*k*.
The first line of the input contains an integer *Q* (1<=≤<=*Q*<=≤<=2<=×<=105) representing the number of queries. *Q* lines follow, each of which contains 3 integers *l*, *r* and *k* (1<=≤<=*l*<=≤<=*r*<=≤<=106,<=1<=≤<=*k*<=≤<=9).
For each query, print a single line containing the answer for that query.
[ "4\n22 73 9\n45 64 6\n47 55 7\n2 62 4\n", "4\n82 94 6\n56 67 4\n28 59 9\n39 74 4\n" ]
[ "1\n4\n0\n8\n", "3\n1\n1\n5\n" ]
In the first example: - *g*(33) = 9 as *g*(33) = *g*(3 × 3) = *g*(9) = 9 - *g*(47) = *g*(48) = *g*(60) = *g*(61) = 6 - There are no such integers between 47 and 55. - *g*(4) = *g*(14) = *g*(22) = *g*(27) = *g*(39) = *g*(40) = *g*(41) = *g*(58) = 4
1,000
[ { "input": "4\n22 73 9\n45 64 6\n47 55 7\n2 62 4", "output": "1\n4\n0\n8" }, { "input": "4\n82 94 6\n56 67 4\n28 59 9\n39 74 4", "output": "3\n1\n1\n5" } ]
1,518,710,534
5,234
Python 3
WRONG_ANSWER
PRETESTS
2
93
5,632,000
for q in range(int(input())): l,r,k = [int(x) for x in input().split(' ')] count = 0 for i in range(l, r+1): if i < 10 and i == k: count = count+1 else: b = i while int(b) > 10: b = str(b) digit = list(b) ...
Title: Recursive Queries Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let us define two functions *f* and *g* on positive integer numbers. You need to process *Q* queries. In each query, you will be given three integers *l*, *r* and *k*. You need to print the number of integers *x*...
```python for q in range(int(input())): l,r,k = [int(x) for x in input().split(' ')] count = 0 for i in range(l, r+1): if i < 10 and i == k: count = count+1 else: b = i while int(b) > 10: b = str(b) digit = lis...
0
493
B
Vasya and Wrestling
PROGRAMMING
1,400
[ "implementation" ]
null
null
Vasya has become interested in wrestling. In wrestling wrestlers use techniques for which they are awarded points by judges. The wrestler who gets the most points wins. When the numbers of points of both wrestlers are equal, the wrestler whose sequence of points is lexicographically greater, wins. If the sequences of...
The first line contains number *n* — the number of techniques that the wrestlers have used (1<=≤<=*n*<=≤<=2·105). The following *n* lines contain integer numbers *a**i* (|*a**i*|<=≤<=109, *a**i*<=≠<=0). If *a**i* is positive, that means that the first wrestler performed the technique that was awarded with *a**i* poin...
If the first wrestler wins, print string "first", otherwise print "second"
[ "5\n1\n2\n-3\n-4\n3\n", "3\n-1\n-2\n3\n", "2\n4\n-4\n" ]
[ "second\n", "first\n", "second\n" ]
Sequence *x*  =  *x*<sub class="lower-index">1</sub>*x*<sub class="lower-index">2</sub>... *x*<sub class="lower-index">|*x*|</sub> is lexicographically larger than sequence *y*  =  *y*<sub class="lower-index">1</sub>*y*<sub class="lower-index">2</sub>... *y*<sub class="lower-index">|*y*|</sub>, if either |*x*|  &gt;  |...
1,000
[ { "input": "5\n1\n2\n-3\n-4\n3", "output": "second" }, { "input": "3\n-1\n-2\n3", "output": "first" }, { "input": "2\n4\n-4", "output": "second" }, { "input": "7\n1\n2\n-3\n4\n5\n-6\n7", "output": "first" }, { "input": "14\n1\n2\n3\n4\n5\n6\n7\n-8\n-9\n-10\n-11\n-...
1,434,030,254
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include <bits/stdc++.h> #define fs first #define sc second #define mp make_pair #define sz(s) ((int) s.size ()) #define all(s) s.begin (), s.end () using namespace std; typedef long long ll; typedef pair<int, int> pii; const double epsilon = 1e-11; const int infinity = (int) 2e9; const int mod = (int) 1e9 + 7; c...
Title: Vasya and Wrestling Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has become interested in wrestling. In wrestling wrestlers use techniques for which they are awarded points by judges. The wrestler who gets the most points wins. When the numbers of points of both wrestlers ...
```python #include <bits/stdc++.h> #define fs first #define sc second #define mp make_pair #define sz(s) ((int) s.size ()) #define all(s) s.begin (), s.end () using namespace std; typedef long long ll; typedef pair<int, int> pii; const double epsilon = 1e-11; const int infinity = (int) 2e9; const int mod = (int) 1...
-1
268
A
Games
PROGRAMMING
800
[ "brute force" ]
null
null
Manao works on a sports TV. He's spent much time watching the football games of some country. After a while he began to notice different patterns. For example, each team has two sets of uniforms: home uniform and guest uniform. When a team plays a game at home, the players put on the home uniform. When a team plays as ...
The first line contains an integer *n* (2<=≤<=*n*<=≤<=30). Each of the following *n* lines contains a pair of distinct space-separated integers *h**i*, *a**i* (1<=≤<=*h**i*,<=*a**i*<=≤<=100) — the colors of the *i*-th team's home and guest uniforms, respectively.
In a single line print the number of games where the host team is going to play in the guest uniform.
[ "3\n1 2\n2 4\n3 4\n", "4\n100 42\n42 100\n5 42\n100 5\n", "2\n1 2\n1 2\n" ]
[ "1\n", "5\n", "0\n" ]
In the first test case the championship consists of 6 games. The only game with the event in question is the game between teams 2 and 1 on the stadium of team 2. In the second test sample the host team will have to wear guest uniform in the games between teams: 1 and 2, 2 and 1, 2 and 3, 3 and 4, 4 and 2 (the host tea...
500
[ { "input": "3\n1 2\n2 4\n3 4", "output": "1" }, { "input": "4\n100 42\n42 100\n5 42\n100 5", "output": "5" }, { "input": "2\n1 2\n1 2", "output": "0" }, { "input": "7\n4 7\n52 55\n16 4\n55 4\n20 99\n3 4\n7 52", "output": "6" }, { "input": "10\n68 42\n1 35\n25 70\n...
1,676,881,806
2,147,483,647
PyPy 3-64
OK
TESTS
31
124
0
n = int(input()) home = [] away = [] for i in range(n): h, a = map(int, input().split()) home.append(h) away.append(a) count = 0 for i in range(n): for j in range(n): if (home[i] == away[j]): count += 1 print(count)
Title: Games Time Limit: None seconds Memory Limit: None megabytes Problem Description: Manao works on a sports TV. He's spent much time watching the football games of some country. After a while he began to notice different patterns. For example, each team has two sets of uniforms: home uniform and guest uniform. W...
```python n = int(input()) home = [] away = [] for i in range(n): h, a = map(int, input().split()) home.append(h) away.append(a) count = 0 for i in range(n): for j in range(n): if (home[i] == away[j]): count += 1 print(count) ```
3
746
B
Decoding
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
Polycarp is mad about coding, that is why he writes Sveta encoded messages. He calls the median letter in a word the letter which is in the middle of the word. If the word's length is even, the median letter is the left of the two middle letters. In the following examples, the median letter is highlighted: contest, inf...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=2000) — the length of the encoded word. The second line contains the string *s* of length *n* consisting of lowercase English letters — the encoding.
Print the word that Polycarp encoded.
[ "5\nlogva\n", "2\nno\n", "4\nabba\n" ]
[ "volga\n", "no\n", "baba\n" ]
In the first example Polycarp encoded the word volga. At first, he wrote down the letter l from the position 3, after that his word looked like voga. After that Polycarp wrote down the letter o from the position 2, his word became vga. Then Polycarp wrote down the letter g which was at the second position, the word bec...
1,000
[ { "input": "5\nlogva", "output": "volga" }, { "input": "2\nno", "output": "no" }, { "input": "4\nabba", "output": "baba" }, { "input": "51\nkfsmpaeviowvkdbuhdagquxxqniselafnfbrgbhmsugcbbnlrvv", "output": "vlbcumbrfflsnxugdudvovamfkspeiwkbhaqxqieanbghsgbnrv" }, { "...
1,618,736,672
2,147,483,647
Python 3
OK
TESTS
34
62
0
n = int(input()) s = input() a = [None]*n if n%2: x = n//2 for i in range(n): if i%2: x -= i else: x += i a[x] = s[i] else: x = (n//2)-1 for i in range(n): if i%2: x += i else: x -= i a[x] = s[i] z = '' for i in a: z+=i print(z)
Title: Decoding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp is mad about coding, that is why he writes Sveta encoded messages. He calls the median letter in a word the letter which is in the middle of the word. If the word's length is even, the median letter is the left of the...
```python n = int(input()) s = input() a = [None]*n if n%2: x = n//2 for i in range(n): if i%2: x -= i else: x += i a[x] = s[i] else: x = (n//2)-1 for i in range(n): if i%2: x += i else: x -= i a[x] = s[i] z = '' for i in a: z+=i print(z) ```
3
38
A
Army
PROGRAMMING
800
[ "implementation" ]
A. Army
2
256
The Berland Armed Forces System consists of *n* ranks that are numbered using natural numbers from 1 to *n*, where 1 is the lowest rank and *n* is the highest rank. One needs exactly *d**i* years to rise from rank *i* to rank *i*<=+<=1. Reaching a certain rank *i* having not reached all the previous *i*<=-<=1 ranks is...
The first input line contains an integer *n* (2<=≤<=*n*<=≤<=100). The second line contains *n*<=-<=1 integers *d**i* (1<=≤<=*d**i*<=≤<=100). The third input line contains two integers *a* and *b* (1<=≤<=*a*<=&lt;<=*b*<=≤<=*n*). The numbers on the lines are space-separated.
Print the single number which is the number of years that Vasya needs to rise from rank *a* to rank *b*.
[ "3\n5 6\n1 2\n", "3\n5 6\n1 3\n" ]
[ "5\n", "11\n" ]
none
0
[ { "input": "3\n5 6\n1 2", "output": "5" }, { "input": "3\n5 6\n1 3", "output": "11" }, { "input": "2\n55\n1 2", "output": "55" }, { "input": "3\n85 78\n1 3", "output": "163" }, { "input": "4\n63 4 49\n2 3", "output": "4" }, { "input": "5\n93 83 42 56\n...
1,650,093,410
2,147,483,647
Python 3
OK
TESTS
50
92
0
a = int(input()) b = list(map(int,input().split())) c , d = list(map(int,input().split())) count = 0 for i in range(c,d): count += b[i-1] print(count)
Title: Army Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The Berland Armed Forces System consists of *n* ranks that are numbered using natural numbers from 1 to *n*, where 1 is the lowest rank and *n* is the highest rank. One needs exactly *d**i* years to rise from rank *i* to rank *i*<=+<...
```python a = int(input()) b = list(map(int,input().split())) c , d = list(map(int,input().split())) count = 0 for i in range(c,d): count += b[i-1] print(count) ```
3.977