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
875
A
Classroom Watch
PROGRAMMING
1,200
[ "brute force", "math" ]
null
null
Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answered Vova that *n* is the answer to the arithmetic task for first-graders. In the textbook, a certain ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=109).
In the first line print one integer *k* — number of different values of *x* satisfying the condition. In next *k* lines print these values in ascending order.
[ "21\n", "20\n" ]
[ "1\n15\n", "0\n" ]
In the first test case *x* = 15 there is only one variant: 15 + 1 + 5 = 21. In the second test case there are no such *x*.
500
[ { "input": "21", "output": "1\n15" }, { "input": "20", "output": "0" }, { "input": "1", "output": "0" }, { "input": "2", "output": "1\n1" }, { "input": "3", "output": "0" }, { "input": "100000001", "output": "2\n99999937\n100000000" }, { "i...
1,512,848,913
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
5,632,000
n=eval(input()) m=1 x=[] c=0 q=1 while m<n: r=m while m>0: d=m%10 r=r+d m=m//10 if r==n: c+=1 x=x+q r=0 q+=1 m=q print(c,x)
Title: Classroom Watch Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answe...
```python n=eval(input()) m=1 x=[] c=0 q=1 while m<n: r=m while m>0: d=m%10 r=r+d m=m//10 if r==n: c+=1 x=x+q r=0 q+=1 m=q print(c,x) ```
-1
920
A
Water The Garden
PROGRAMMING
1,000
[ "implementation" ]
null
null
It is winter now, and Max decided it's about time he watered the garden. The garden can be represented as *n* consecutive garden beds, numbered from 1 to *n*. *k* beds contain water taps (*i*-th tap is located in the bed *x**i*), which, if turned on, start delivering water to neighbouring beds. If the tap on the bed *...
The first line contains one integer *t* — the number of test cases to solve (1<=≤<=*t*<=≤<=200). Then *t* test cases follow. The first line of each test case contains two integers *n* and *k* (1<=≤<=*n*<=≤<=200, 1<=≤<=*k*<=≤<=*n*) — the number of garden beds and water taps, respectively. Next line contains *k* intege...
For each test case print one integer — the minimum number of seconds that have to pass after Max turns on some of the water taps, until the whole garden is watered.
[ "3\n5 1\n3\n3 3\n1 2 3\n4 1\n1\n" ]
[ "3\n1\n4\n" ]
The first example consists of 3 tests: 1. There are 5 garden beds, and a water tap in the bed 3. If we turn it on, then after 1 second passes, only bed 3 will be watered; after 2 seconds pass, beds [1, 3] will be watered, and after 3 seconds pass, everything will be watered. 1. There are 3 garden beds, and there is ...
0
[ { "input": "3\n5 1\n3\n3 3\n1 2 3\n4 1\n1", "output": "3\n1\n4" }, { "input": "26\n1 1\n1\n2 1\n2\n2 1\n1\n2 2\n1 2\n3 1\n3\n3 1\n2\n3 2\n2 3\n3 1\n1\n3 2\n1 3\n3 2\n1 2\n3 3\n1 2 3\n4 1\n4\n4 1\n3\n4 2\n3 4\n4 1\n2\n4 2\n2 4\n4 2\n2 3\n4 3\n2 3 4\n4 1\n1\n4 2\n1 4\n4 2\n1 3\n4 3\n1 3 4\n4 2\n1 2\n4...
1,617,699,811
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
for _ in range(int(input())): n,m=map(int,input().split()) k=[int(i) for i in input().split()] lis=[1]*n for i in k: lis[i-1]=0 t=1 while sum(lis): for i in range(n): if lis[i]==0: lis[max(0,i-1)]=0 lis[min(len(lis)-1,i+1)]=0...
Title: Water The Garden Time Limit: None seconds Memory Limit: None megabytes Problem Description: It is winter now, and Max decided it's about time he watered the garden. The garden can be represented as *n* consecutive garden beds, numbered from 1 to *n*. *k* beds contain water taps (*i*-th tap is located in the ...
```python for _ in range(int(input())): n,m=map(int,input().split()) k=[int(i) for i in input().split()] lis=[1]*n for i in k: lis[i-1]=0 t=1 while sum(lis): for i in range(n): if lis[i]==0: lis[max(0,i-1)]=0 lis[min(len(lis)...
0
768
B
Code For 1
PROGRAMMING
1,600
[ "constructive algorithms", "dfs and similar", "divide and conquer" ]
null
null
Jon fought bravely to rescue the wildlings who were attacked by the white-walkers at Hardhome. On his arrival, Sam tells him that he wants to go to Oldtown to train at the Citadel to become a maester, so he can return and take the deceased Aemon's place as maester of Castle Black. Jon agrees to Sam's proposal and Sam s...
The first line contains three integers *n*, *l*, *r* (0<=≤<=*n*<=&lt;<=250, 0<=≤<=*r*<=-<=*l*<=≤<=105, *r*<=≥<=1, *l*<=≥<=1) – initial element and the range *l* to *r*. It is guaranteed that *r* is not greater than the length of the final list.
Output the total number of 1s in the range *l* to *r* in the final sequence.
[ "7 2 5\n", "10 3 10\n" ]
[ "4\n", "5\n" ]
Consider first example: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/288fbb682a6fa1934a47b763d6851f9d32a06150.png" style="max-width: 100.0%;max-height: 100.0%;"/> Elements on positions from 2-nd to 5-th in list is [1, 1, 1, 1]. The number of ones is 4. For the second example: <img al...
1,000
[ { "input": "7 2 5", "output": "4" }, { "input": "10 3 10", "output": "5" }, { "input": "56 18 40", "output": "20" }, { "input": "203 40 124", "output": "67" }, { "input": "903316762502 354723010040 354723105411", "output": "78355" }, { "input": "335343...
1,680,163,370
2,147,483,647
Python 3
OK
TESTS
33
155
716,800
import sys # 导入sys模块 sys.setrecursionlimit(10000000) cnt = 0 # 计数器,记录当前处理到第几个节点 level = 0 # 层数 zongshu = 1 # 总节点数 q = [] # 存储符合条件的节点值 # 递归函数,计算节点所在层数 def init(x): global level if x == 2 or x == 3: # 如果节点是2或3,直接返回 return init(x // 2) # 否则递归求解父节点 level += 1 # 当前节点层数加1 # 计算完全二叉树总节点数 def count(le...
Title: Code For 1 Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jon fought bravely to rescue the wildlings who were attacked by the white-walkers at Hardhome. On his arrival, Sam tells him that he wants to go to Oldtown to train at the Citadel to become a maester, so he can return and ta...
```python import sys # 导入sys模块 sys.setrecursionlimit(10000000) cnt = 0 # 计数器,记录当前处理到第几个节点 level = 0 # 层数 zongshu = 1 # 总节点数 q = [] # 存储符合条件的节点值 # 递归函数,计算节点所在层数 def init(x): global level if x == 2 or x == 3: # 如果节点是2或3,直接返回 return init(x // 2) # 否则递归求解父节点 level += 1 # 当前节点层数加1 # 计算完全二叉树总节点数 de...
3
500
A
New Year Transportation
PROGRAMMING
1,000
[ "dfs and similar", "graphs", "implementation" ]
null
null
New Year is coming in Line World! In this world, there are *n* cells numbered by integers from 1 to *n*, as a 1<=×<=*n* board. People live in cells. However, it was hard to move between distinct cells, because of the difficulty of escaping the cell. People wanted to meet people who live in other cells. So, user tncks0...
The first line contains two space-separated integers *n* (3<=≤<=*n*<=≤<=3<=×<=104) and *t* (2<=≤<=*t*<=≤<=*n*) — the number of cells, and the index of the cell which I want to go to. The second line contains *n*<=-<=1 space-separated integers *a*1,<=*a*2,<=...,<=*a**n*<=-<=1 (1<=≤<=*a**i*<=≤<=*n*<=-<=*i*). It is guara...
If I can go to cell *t* using the transportation system, print "YES". Otherwise, print "NO".
[ "8 4\n1 2 1 2 1 2 1\n", "8 5\n1 2 1 2 1 1 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample, the visited cells are: 1, 2, 4; so we can successfully visit the cell 4. In the second sample, the possible cells to visit are: 1, 2, 4, 6, 7, 8; so we can't visit the cell 5, which we want to visit.
500
[ { "input": "8 4\n1 2 1 2 1 2 1", "output": "YES" }, { "input": "8 5\n1 2 1 2 1 1 1", "output": "NO" }, { "input": "20 19\n13 16 7 6 12 1 5 7 8 6 5 7 5 5 3 3 2 2 1", "output": "YES" }, { "input": "50 49\n11 7 1 41 26 36 19 16 38 14 36 35 37 27 20 27 3 6 21 2 27 11 18 17 19 16 ...
1,684,339,152
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
3,686,400
import sys def col(pl,n): all = [] for i in range(n): rt = "" for j in range(len(pl)): rt += pl[j][i] all.append(rt) all.sort() return all def uloha3(): h,w = [int(x) for x in input().split()] s,t = [],[] for i in range(h): s.appe...
Title: New Year Transportation Time Limit: None seconds Memory Limit: None megabytes Problem Description: New Year is coming in Line World! In this world, there are *n* cells numbered by integers from 1 to *n*, as a 1<=×<=*n* board. People live in cells. However, it was hard to move between distinct cells, because o...
```python import sys def col(pl,n): all = [] for i in range(n): rt = "" for j in range(len(pl)): rt += pl[j][i] all.append(rt) all.sort() return all def uloha3(): h,w = [int(x) for x in input().split()] s,t = [],[] for i in range(h): ...
0
990
A
Commentary Boxes
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Berland Football Cup starts really soon! Commentators from all over the world come to the event. Organizers have already built $n$ commentary boxes. $m$ regional delegations will come to the Cup. Every delegation should get the same number of the commentary boxes. If any box is left unoccupied then the delegations wil...
The only line contains four integer numbers $n$, $m$, $a$ and $b$ ($1 \le n, m \le 10^{12}$, $1 \le a, b \le 100$), where $n$ is the initial number of the commentary boxes, $m$ is the number of delegations to come, $a$ is the fee to build a box and $b$ is the fee to demolish a box.
Output the minimal amount of burles organizers should pay to satisfy all the delegations (i.e. to make the number of the boxes be divisible by $m$). It is allowed that the final number of the boxes is equal to $0$.
[ "9 7 3 8\n", "2 7 3 7\n", "30 6 17 19\n" ]
[ "15\n", "14\n", "0\n" ]
In the first example organizers can build $5$ boxes to make the total of $14$ paying $3$ burles for the each of them. In the second example organizers can demolish $2$ boxes to make the total of $0$ paying $7$ burles for the each of them. In the third example organizers are already able to distribute all the boxes eq...
0
[ { "input": "9 7 3 8", "output": "15" }, { "input": "2 7 3 7", "output": "14" }, { "input": "30 6 17 19", "output": "0" }, { "input": "500000000001 1000000000000 100 100", "output": "49999999999900" }, { "input": "1000000000000 750000000001 10 100", "output": "...
1,528,818,738
2,147,483,647
Python 3
OK
TESTS
109
78
0
n, m, a, b = [int(x) for x in input().split(' ')] if n % m == 0: print(0) else: rem = n % m add_amt = (m - rem) * a sub_amt = rem * b print(add_amt if add_amt < sub_amt else sub_amt)
Title: Commentary Boxes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Berland Football Cup starts really soon! Commentators from all over the world come to the event. Organizers have already built $n$ commentary boxes. $m$ regional delegations will come to the Cup. Every delegation shou...
```python n, m, a, b = [int(x) for x in input().split(' ')] if n % m == 0: print(0) else: rem = n % m add_amt = (m - rem) * a sub_amt = rem * b print(add_amt if add_amt < sub_amt else sub_amt) ```
3
696
D
Legen...
PROGRAMMING
2,500
[ "data structures", "dp", "matrices", "strings" ]
null
null
Barney was hanging out with Nora for a while and now he thinks he may have feelings for her. Barney wants to send her a cheesy text message and wants to make her as happy as possible. Initially, happiness level of Nora is 0. Nora loves some pickup lines like "I'm falling for you" and stuff. Totally, she knows *n* pick...
The first line of input contains two integers *n* and *l* (1<=≤<=*n*<=≤<=200,<=1<=≤<=*l*<=≤<=1014) — the number of pickup lines and the maximum length of Barney's text. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100), meaning that Nora's happiness level increases by *a**i* after...
Print the only integer — the maximum possible value of Nora's happiness level after reading Barney's text.
[ "3 6\n3 2 1\nheart\nearth\nart\n", "3 6\n3 2 8\nheart\nearth\nart\n" ]
[ "6\n", "16\n" ]
An optimal answer for the first sample case is hearth containing each pickup line exactly once. An optimal answer for the second sample case is artart.
2,000
[]
1,689,177,986
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
30
0
print("_RANDOM_GUESS_1689177986.038514")# 1689177986.038522
Title: Legen... Time Limit: None seconds Memory Limit: None megabytes Problem Description: Barney was hanging out with Nora for a while and now he thinks he may have feelings for her. Barney wants to send her a cheesy text message and wants to make her as happy as possible. Initially, happiness level of Nora is 0. ...
```python print("_RANDOM_GUESS_1689177986.038514")# 1689177986.038522 ```
0
390
A
Inna and Alarm Clock
PROGRAMMING
0
[ "implementation" ]
null
null
Inna loves sleeping very much, so she needs *n* alarm clocks in total to wake up. Let's suppose that Inna's room is a 100<=×<=100 square with the lower left corner at point (0,<=0) and with the upper right corner at point (100,<=100). Then the alarm clocks are points with integer coordinates in this square. The mornin...
The first line of the input contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of the alarm clocks. The next *n* lines describe the clocks: the *i*-th line contains two integers *x**i*, *y**i* — the coordinates of the *i*-th alarm clock (0<=≤<=*x**i*,<=*y**i*<=≤<=100). Note that a single point in the room can conta...
In a single line print a single integer — the minimum number of segments Inna will have to draw if she acts optimally.
[ "4\n0 0\n0 1\n0 2\n1 0\n", "4\n0 0\n0 1\n1 0\n1 1\n", "4\n1 1\n1 2\n2 3\n3 3\n" ]
[ "2\n", "2\n", "3\n" ]
In the first sample, Inna first chooses type "vertical segments", and then she makes segments with ends at : (0, 0), (0, 2); and, for example, (1, 0), (1, 1). If she paints horizontal segments, she will need at least 3 segments. In the third sample it is important to note that Inna doesn't have the right to change the...
500
[ { "input": "4\n0 0\n0 1\n0 2\n1 0", "output": "2" }, { "input": "4\n0 0\n0 1\n1 0\n1 1", "output": "2" }, { "input": "4\n1 1\n1 2\n2 3\n3 3", "output": "3" }, { "input": "1\n0 0", "output": "1" }, { "input": "42\n28 87\n26 16\n59 90\n47 61\n28 83\n36 30\n67 10\n6 ...
1,592,752,718
2,147,483,647
Python 3
OK
TESTS
19
280
819,200
n = int(input()) x = [0]*n; y = [0]*n for i in range(n): x[i], y[i] = map(int, input().split()) a = len(set(x)) b = len(set(y)) print(min(a,b))
Title: Inna and Alarm Clock Time Limit: None seconds Memory Limit: None megabytes Problem Description: Inna loves sleeping very much, so she needs *n* alarm clocks in total to wake up. Let's suppose that Inna's room is a 100<=×<=100 square with the lower left corner at point (0,<=0) and with the upper right corner a...
```python n = int(input()) x = [0]*n; y = [0]*n for i in range(n): x[i], y[i] = map(int, input().split()) a = len(set(x)) b = len(set(y)) print(min(a,b)) ```
3
550
A
Two Substrings
PROGRAMMING
1,500
[ "brute force", "dp", "greedy", "implementation", "strings" ]
null
null
You are given string *s*. Your task is to determine if the given string *s* contains two non-overlapping substrings "AB" and "BA" (the substrings can go in any order).
The only line of input contains a string *s* of length between 1 and 105 consisting of uppercase Latin letters.
Print "YES" (without the quotes), if string *s* contains two non-overlapping substrings "AB" and "BA", and "NO" otherwise.
[ "ABA\n", "BACFAB\n", "AXBYBXA\n" ]
[ "NO\n", "YES\n", "NO\n" ]
In the first sample test, despite the fact that there are substrings "AB" and "BA", their occurrences overlap, so the answer is "NO". In the second sample test there are the following occurrences of the substrings: BACFAB. In the third sample test there is no substring "AB" nor substring "BA".
1,000
[ { "input": "ABA", "output": "NO" }, { "input": "BACFAB", "output": "YES" }, { "input": "AXBYBXA", "output": "NO" }, { "input": "ABABAB", "output": "YES" }, { "input": "BBBBBBBBBB", "output": "NO" }, { "input": "ABBA", "output": "YES" }, { "...
1,670,904,805
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
31
0
s = input() s += " " n = len(s) c1 = 0 c2 = 0 i = 0 while i<n: flag = 0 if (s[i] == "A" and s[i+1] == "B"): c1 += 1 i += 2 flag = 1 elif s[i] == "B" and s[i+1] == "A" and flag == 0: c2 += 1 i += 2 flag = 1 if flag == 0: i += 1 if c1 >= 1 and c2 >= 1: print("YES"...
Title: Two Substrings Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given string *s*. Your task is to determine if the given string *s* contains two non-overlapping substrings "AB" and "BA" (the substrings can go in any order). Input Specification: The only line of input contain...
```python s = input() s += " " n = len(s) c1 = 0 c2 = 0 i = 0 while i<n: flag = 0 if (s[i] == "A" and s[i+1] == "B"): c1 += 1 i += 2 flag = 1 elif s[i] == "B" and s[i+1] == "A" and flag == 0: c2 += 1 i += 2 flag = 1 if flag == 0: i += 1 if c1 >= 1 and c2 >= 1: p...
0
234
A
Lefthanders and Righthanders
PROGRAMMING
1,200
[ "implementation" ]
null
null
One fine October day a mathematics teacher Vasily Petrov went to a class and saw there *n* pupils who sat at the desks, two people at each desk. Vasily quickly realized that number *n* is even. Like all true mathematicians, Vasily has all students numbered from 1 to *n*. But Vasily Petrov did not like the way the chi...
The first input line contains a single even integer *n* (4<=≤<=*n*<=≤<=100) — the number of students in the class. The second line contains exactly *n* capital English letters "L" and "R". If the *i*-th letter at the second line equals "L", then the student number *i* is a lefthander, otherwise he is a righthander.
Print integer pairs, one pair per line. In the *i*-th line print the numbers of students that will sit at the *i*-th desk. The first number in the pair stands for the student who is sitting to the left, and the second number stands for the student who is sitting to the right. Separate the numbers in the pairs by space...
[ "6\nLLRLLL\n", "4\nRRLL\n" ]
[ "1 4\n2 5\n6 3\n", "3 1\n4 2\n" ]
none
0
[ { "input": "6\nLLRLLL", "output": "1 4\n2 5\n6 3" }, { "input": "4\nRRLL", "output": "3 1\n4 2" }, { "input": "4\nLLRR", "output": "1 3\n2 4" }, { "input": "6\nRLLRRL", "output": "1 4\n2 5\n3 6" }, { "input": "8\nLRLRLLLR", "output": "1 5\n6 2\n3 7\n4 8" }, ...
1,620,548,148
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
6,963,200
f = open("input.txt", "r") outputFile = open("output.txt", "w") num = f.readline() num = int(num) myStr = f.readline() myStr = list(myStr) left = [] right = [] for i in range(len(myStr)): if(myStr[i] == 'L'): left.append((i+1)) else: right.append((i+1)) for i in range(num): if i % 2 == 0: ...
Title: Lefthanders and Righthanders Time Limit: None seconds Memory Limit: None megabytes Problem Description: One fine October day a mathematics teacher Vasily Petrov went to a class and saw there *n* pupils who sat at the desks, two people at each desk. Vasily quickly realized that number *n* is even. Like all t...
```python f = open("input.txt", "r") outputFile = open("output.txt", "w") num = f.readline() num = int(num) myStr = f.readline() myStr = list(myStr) left = [] right = [] for i in range(len(myStr)): if(myStr[i] == 'L'): left.append((i+1)) else: right.append((i+1)) for i in range(num): if i %...
0
129
A
Cookies
PROGRAMMING
900
[ "implementation" ]
null
null
Olga came to visit the twins Anna and Maria and saw that they have many cookies. The cookies are distributed into bags. As there are many cookies, Olga decided that it's no big deal if she steals a bag. However, she doesn't want the sisters to quarrel because of nothing when they divide the cookies. That's why Olga wan...
The first line contains the only integer *n* (1<=≤<=*n*<=≤<=100) — the number of cookie bags Anna and Maria have. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=100) — the number of cookies in the *i*-th bag.
Print in the only line the only number — the sought number of ways. If there are no such ways print 0.
[ "1\n1\n", "10\n1 2 2 3 4 4 4 2 2 2\n", "11\n2 2 2 2 2 2 2 2 2 2 99\n" ]
[ "1\n", "8\n", "1\n" ]
In the first sample Olga should take the only bag so that the twins ended up with the even number of cookies. In the second sample Olga can take any of five bags with two cookies or any of three bags with four cookies — 5 + 3 = 8 ways in total. In the third sample, no matter which bag with two cookies Olga chooses, t...
500
[ { "input": "1\n1", "output": "1" }, { "input": "10\n1 2 2 3 4 4 4 2 2 2", "output": "8" }, { "input": "11\n2 2 2 2 2 2 2 2 2 2 99", "output": "1" }, { "input": "2\n1 1", "output": "0" }, { "input": "2\n2 2", "output": "2" }, { "input": "2\n1 2", "o...
1,594,973,565
2,147,483,647
Python 3
OK
TESTS
52
218
6,758,400
n = int(input()) a = list(map(int, input().split())) tot, odd, even = 0, 0, 0 tot = sum(a) for i in range(n): if a[i]%2==0: even += 1 else: odd += 1 if tot%2==0: print(even) else: print(odd)
Title: Cookies Time Limit: None seconds Memory Limit: None megabytes Problem Description: Olga came to visit the twins Anna and Maria and saw that they have many cookies. The cookies are distributed into bags. As there are many cookies, Olga decided that it's no big deal if she steals a bag. However, she doesn't wan...
```python n = int(input()) a = list(map(int, input().split())) tot, odd, even = 0, 0, 0 tot = sum(a) for i in range(n): if a[i]%2==0: even += 1 else: odd += 1 if tot%2==0: print(even) else: print(odd) ```
3
687
B
Remainders Game
PROGRAMMING
1,800
[ "chinese remainder theorem", "math", "number theory" ]
null
null
Today Pari and Arya are playing a game called Remainders. Pari chooses two positive integer *x* and *k*, and tells Arya *k* but not *x*. Arya have to find the value . There are *n* ancient numbers *c*1,<=*c*2,<=...,<=*c**n* and Pari has to tell Arya if Arya wants. Given *k* and the ancient values, tell us if Arya has...
The first line of the input contains two integers *n* and *k* (1<=≤<=*n*,<= *k*<=≤<=1<=000<=000) — the number of ancient integers and value *k* that is chosen by Pari. The second line contains *n* integers *c*1,<=*c*2,<=...,<=*c**n* (1<=≤<=*c**i*<=≤<=1<=000<=000).
Print "Yes" (without quotes) if Arya has a winning strategy independent of value of *x*, or "No" (without quotes) otherwise.
[ "4 5\n2 3 5 12\n", "2 7\n2 3\n" ]
[ "Yes\n", "No\n" ]
In the first sample, Arya can understand <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/d170efffcde0907ee6bcf32de21051bce0677a2c.png" style="max-width: 100.0%;max-height: 100.0%;"/> because 5 is one of the ancient numbers. In the second sample, Arya can't be sure what <img align="middle" ...
1,000
[ { "input": "4 5\n2 3 5 12", "output": "Yes" }, { "input": "2 7\n2 3", "output": "No" }, { "input": "1 6\n8", "output": "No" }, { "input": "2 3\n9 4", "output": "Yes" }, { "input": "4 16\n19 16 13 9", "output": "Yes" }, { "input": "5 10\n5 16 19 9 17", ...
1,628,494,939
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
11
140
27,443,200
import math n, k = [int(i) for i in input().split()] c = [int(i) for i in input().split()] for i in range(0,n): k //= math.gcd(c[i], k) print(("Yes" if k == 1 else "No"))
Title: Remainders Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today Pari and Arya are playing a game called Remainders. Pari chooses two positive integer *x* and *k*, and tells Arya *k* but not *x*. Arya have to find the value . There are *n* ancient numbers *c*1,<=*c*2,<=...,<=*...
```python import math n, k = [int(i) for i in input().split()] c = [int(i) for i in input().split()] for i in range(0,n): k //= math.gcd(c[i], k) print(("Yes" if k == 1 else "No")) ```
0
136
A
Presents
PROGRAMMING
800
[ "implementation" ]
null
null
Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on this occasion he organized a New Year party at his place and invited *n* his friends there. If...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the quantity of friends Petya invited to the party. The second line contains *n* space-separated integers: the *i*-th number is *p**i* — the number of a friend who gave a gift to friend number *i*. It is guaranteed that each friend received exactly one gift....
Print *n* space-separated integers: the *i*-th number should equal the number of the friend who gave a gift to friend number *i*.
[ "4\n2 3 4 1\n", "3\n1 3 2\n", "2\n1 2\n" ]
[ "4 1 2 3\n", "1 3 2\n", "1 2\n" ]
none
500
[ { "input": "4\n2 3 4 1", "output": "4 1 2 3" }, { "input": "3\n1 3 2", "output": "1 3 2" }, { "input": "2\n1 2", "output": "1 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 3 2 6 4 5 7 9 8 10", "output": "1 3 2 5 6 4 7 9 8 10" }, { "input"...
1,679,176,895
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
##nums = map(int, input().split()) ##s1 = list(map(int, input().split())) ##s1 = list(map(int, ' '.join(input()).split())) n = int(input()) p = list(map(int, input().split())) f = p[:] for i in range(n): f[p[i]-1] = i + 1 print(f)
Title: Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on t...
```python ##nums = map(int, input().split()) ##s1 = list(map(int, input().split())) ##s1 = list(map(int, ' '.join(input()).split())) n = int(input()) p = list(map(int, input().split())) f = p[:] for i in range(n): f[p[i]-1] = i + 1 print(f) ```
0
476
B
Dreamoon and WiFi
PROGRAMMING
1,300
[ "bitmasks", "brute force", "combinatorics", "dp", "math", "probabilities" ]
null
null
Dreamoon is standing at the position 0 on a number line. Drazil is sending a list of commands through Wi-Fi to Dreamoon's smartphone and Dreamoon follows them. Each command is one of the following two types: 1. Go 1 unit towards the positive direction, denoted as '+' 1. Go 1 unit towards the negative direction, de...
The first line contains a string *s*1 — the commands Drazil sends to Dreamoon, this string consists of only the characters in the set {'+', '-'}. The second line contains a string *s*2 — the commands Dreamoon's smartphone recognizes, this string consists of only the characters in the set {'+', '-', '?'}. '?' denotes ...
Output a single real number corresponding to the probability. The answer will be considered correct if its relative or absolute error doesn't exceed 10<=-<=9.
[ "++-+-\n+-+-+\n", "+-+-\n+-??\n", "+++\n??-\n" ]
[ "1.000000000000\n", "0.500000000000\n", "0.000000000000\n" ]
For the first sample, both *s*<sub class="lower-index">1</sub> and *s*<sub class="lower-index">2</sub> will lead Dreamoon to finish at the same position  + 1. For the second sample, *s*<sub class="lower-index">1</sub> will lead Dreamoon to finish at position 0, while there are four possibilites for *s*<sub class="low...
1,500
[ { "input": "++-+-\n+-+-+", "output": "1.000000000000" }, { "input": "+-+-\n+-??", "output": "0.500000000000" }, { "input": "+++\n??-", "output": "0.000000000000" }, { "input": "++++++++++\n+++??++?++", "output": "0.125000000000" }, { "input": "--+++---+-\n????????...
1,673,186,277
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
93
2,252,800
from functools import cache def solve(s,t): n=len(s) k=0 for i in s: if i=="?": k+=1 @cache def dfs(i,sm): if i==n: return int(sm==t) if s[i]=='+': return dfs(i+1,sm+1) elif s[i]=="-": ret...
Title: Dreamoon and WiFi Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dreamoon is standing at the position 0 on a number line. Drazil is sending a list of commands through Wi-Fi to Dreamoon's smartphone and Dreamoon follows them. Each command is one of the following two types: 1. Go...
```python from functools import cache def solve(s,t): n=len(s) k=0 for i in s: if i=="?": k+=1 @cache def dfs(i,sm): if i==n: return int(sm==t) if s[i]=='+': return dfs(i+1,sm+1) elif s[i]=="-": ...
-1
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,693,809,651
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
62
0
w=int(input()) if ((w/2)%2==0): print("Yes") else: print("No")
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 w=int(input()) if ((w/2)%2==0): print("Yes") else: print("No") ```
0
686
A
Free Ice Cream
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, people start standing in the queue before Kay and Gerda's house even in the night. Each person in the...
The first line contains two space-separated integers *n* and *x* (1<=≤<=*n*<=≤<=1000, 0<=≤<=*x*<=≤<=109). Each of the next *n* lines contains a character '+' or '-', and an integer *d**i*, separated by a space (1<=≤<=*d**i*<=≤<=109). Record "+ *d**i*" in *i*-th line means that a carrier with *d**i* ice cream packs occ...
Print two space-separated integers — number of ice cream packs left after all operations, and number of kids that left the house in distress.
[ "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20\n", "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98\n" ]
[ "22 1\n", "3 2\n" ]
Consider the first sample. 1. Initially Kay and Gerda have 7 packs of ice cream. 1. Carrier brings 5 more, so now they have 12 packs. 1. A kid asks for 10 packs and receives them. There are only 2 packs remaining. 1. Another kid asks for 20 packs. Kay and Gerda do not have them, so the kid goes away distressed. 1....
500
[ { "input": "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20", "output": "22 1" }, { "input": "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98", "output": "3 2" }, { "input": "6 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000", "output": "7000000000 0" }, { ...
1,680,433,691
2,147,483,647
PyPy 3-64
OK
TESTS
34
93
1,638,400
n,answer=map(int,input().split()) sad=0 for i in range(n): p,n1=map(str,input().split()) n1=int(n1) if p=="+": answer+=n1 elif answer>=n1: answer-=n1 else: sad+=1 print(answer,sad)
Title: Free Ice Cream Time Limit: None seconds Memory Limit: None megabytes Problem Description: After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, p...
```python n,answer=map(int,input().split()) sad=0 for i in range(n): p,n1=map(str,input().split()) n1=int(n1) if p=="+": answer+=n1 elif answer>=n1: answer-=n1 else: sad+=1 print(answer,sad) ```
3
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,697,047,142
2,147,483,647
Python 3
OK
TESTS
20
46
0
n,m,a = list(map(int,input().split())) x = int(n/a) + (n%a>0) y = int(m/a) + (m%a>0) print(x*y)
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 n,m,a = list(map(int,input().split())) x = int(n/a) + (n%a>0) y = int(m/a) + (m%a>0) print(x*y) ```
3.977
475
A
Bayan Bus
PROGRAMMING
1,100
[ "implementation" ]
null
null
The final round of Bayan Programming Contest will be held in Tehran, and the participants will be carried around with a yellow bus. The bus has 34 passenger seats: 4 seats in the last row and 3 seats in remaining rows. The event coordinator has a list of *k* participants who should be picked up at the airport. When a...
The only line of input contains integer *k*, (0<=≤<=*k*<=≤<=34), denoting the number of participants.
Print the figure of a bus with *k* passengers as described in sample tests. Character '#' denotes an empty seat, while 'O' denotes a taken seat. 'D' is the bus driver and other characters in the output are for the purpose of beautifying the figure. Strictly follow the sample test cases output format. Print exactly six ...
[ "9\n", "20\n" ]
[ "+------------------------+\n|O.O.O.#.#.#.#.#.#.#.#.|D|)\n|O.O.O.#.#.#.#.#.#.#.#.|.|\n|O.......................|\n|O.O.#.#.#.#.#.#.#.#.#.|.|)\n+------------------------+\n", "+------------------------+\n|O.O.O.O.O.O.O.#.#.#.#.|D|)\n|O.O.O.O.O.O.#.#.#.#.#.|.|\n|O.......................|\n|O.O.O.O.O.O.#.#.#.#.#.|.|...
none
500
[ { "input": "9", "output": "+------------------------+\n|O.O.O.#.#.#.#.#.#.#.#.|D|)\n|O.O.O.#.#.#.#.#.#.#.#.|.|\n|O.......................|\n|O.O.#.#.#.#.#.#.#.#.#.|.|)\n+------------------------+" }, { "input": "20", "output": "+------------------------+\n|O.O.O.O.O.O.O.#.#.#.#.|D|)\n|O.O.O.O.O....
1,412,515,169
1,169
Python 3
OK
TESTS
35
62
0
n = int(input()) A = [] A.append(list('+------------------------+')) A.append(list('|#.#.#.#.#.#.#.#.#.#.#.|D|)')) A.append(list('|#.#.#.#.#.#.#.#.#.#.#.|.|')) A.append(list('|#.......................|')) A.append(list('|#.#.#.#.#.#.#.#.#.#.#.|.|)')) A.append(list('+------------------------+')) for k in range(n): j = ...
Title: Bayan Bus Time Limit: None seconds Memory Limit: None megabytes Problem Description: The final round of Bayan Programming Contest will be held in Tehran, and the participants will be carried around with a yellow bus. The bus has 34 passenger seats: 4 seats in the last row and 3 seats in remaining rows. The ...
```python n = int(input()) A = [] A.append(list('+------------------------+')) A.append(list('|#.#.#.#.#.#.#.#.#.#.#.|D|)')) A.append(list('|#.#.#.#.#.#.#.#.#.#.#.|.|')) A.append(list('|#.......................|')) A.append(list('|#.#.#.#.#.#.#.#.#.#.#.|.|)')) A.append(list('+------------------------+')) for k in range...
3
472
A
Design Tutorial: Learn from Math
PROGRAMMING
800
[ "math", "number theory" ]
null
null
One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statement called the "Goldbach's conjecture". It says: "each even number no less than four can be expressed as the sum of two ...
The only line contains an integer *n* (12<=≤<=*n*<=≤<=106).
Output two composite integers *x* and *y* (1<=&lt;<=*x*,<=*y*<=&lt;<=*n*) such that *x*<=+<=*y*<==<=*n*. If there are multiple solutions, you can output any of them.
[ "12\n", "15\n", "23\n", "1000000\n" ]
[ "4 8\n", "6 9\n", "8 15\n", "500000 500000\n" ]
In the first example, 12 = 4 + 8 and both 4, 8 are composite numbers. You can output "6 6" or "8 4" as well. In the second example, 15 = 6 + 9. Note that you can't output "1 14" because 1 is not a composite number.
500
[ { "input": "12", "output": "4 8" }, { "input": "15", "output": "6 9" }, { "input": "23", "output": "8 15" }, { "input": "1000000", "output": "500000 500000" }, { "input": "63874", "output": "4 63870" }, { "input": "14568", "output": "4 14564" }, ...
1,658,521,808
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
7
46
0
def numbers(n): x = [] for i in range(1, n): x.append([i, n-i]) return x temp = int(input()) def factors(n): x = [] for i in range(1, n + 1): if n % i == 0: x.append(n) return len(x) if temp % 2 == 0: print(temp // 2, temp // 2) else: something = numbers(temp) for i in something: if ...
Title: Design Tutorial: Learn from Math Time Limit: None seconds Memory Limit: None megabytes Problem Description: One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statemen...
```python def numbers(n): x = [] for i in range(1, n): x.append([i, n-i]) return x temp = int(input()) def factors(n): x = [] for i in range(1, n + 1): if n % i == 0: x.append(n) return len(x) if temp % 2 == 0: print(temp // 2, temp // 2) else: something = numbers(temp) for i in somethin...
0
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,645,200,088
2,147,483,647
Python 3
OK
TESTS
40
62
307,200
s = input() t = s for i in range(len(s)-1, -1, -1): t+=s[i] print(t)
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 s = input() t = s for i in range(len(s)-1, -1, -1): t+=s[i] print(t) ```
3
525
B
Pasha and String
PROGRAMMING
1,400
[ "constructive algorithms", "greedy", "math", "strings" ]
null
null
Pasha got a very beautiful string *s* for his birthday, the string consists of lowercase Latin letters. The letters in the string are numbered from 1 to |*s*| from left to right, where |*s*| is the length of the given string. Pasha didn't like his present very much so he decided to change it. After his birthday Pasha ...
The first line of the input contains Pasha's string *s* of length from 2 to 2·105 characters, consisting of lowercase Latin letters. The second line contains a single integer *m* (1<=≤<=*m*<=≤<=105) —  the number of days when Pasha changed his string. The third line contains *m* space-separated elements *a**i* (1<=≤<...
In the first line of the output print what Pasha's string *s* will look like after *m* days.
[ "abcdef\n1\n2\n", "vwxyz\n2\n2 2\n", "abcdef\n3\n1 2 3\n" ]
[ "aedcbf\n", "vwxyz\n", "fbdcea\n" ]
none
750
[ { "input": "abcdef\n1\n2", "output": "aedcbf" }, { "input": "vwxyz\n2\n2 2", "output": "vwxyz" }, { "input": "abcdef\n3\n1 2 3", "output": "fbdcea" }, { "input": "jc\n5\n1 1 1 1 1", "output": "cj" }, { "input": "wljqgdlxyc\n13\n3 4 3 3 5 4 4 2 4 4 5 3 3", "out...
1,586,073,942
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
93
307,200
def reverse(s): s1="" for i in range(1,len(s)+1): s1+=s[-i] return s1 s=input() n=int(input()) m=len(s) arr=[int(x) for x in input().split()] for i in range(n): s2="" k=len(s[arr[i]:len(s)-arr[i]+2]) a=len(s[0:arr[i]-1]) s2=s[0:arr[i]-1]+reverse(s[arr[i]-1:le...
Title: Pasha and String Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha got a very beautiful string *s* for his birthday, the string consists of lowercase Latin letters. The letters in the string are numbered from 1 to |*s*| from left to right, where |*s*| is the length of the given ...
```python def reverse(s): s1="" for i in range(1,len(s)+1): s1+=s[-i] return s1 s=input() n=int(input()) m=len(s) arr=[int(x) for x in input().split()] for i in range(n): s2="" k=len(s[arr[i]:len(s)-arr[i]+2]) a=len(s[0:arr[i]-1]) s2=s[0:arr[i]-1]+reverse(s[a...
0
472
A
Design Tutorial: Learn from Math
PROGRAMMING
800
[ "math", "number theory" ]
null
null
One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statement called the "Goldbach's conjecture". It says: "each even number no less than four can be expressed as the sum of two ...
The only line contains an integer *n* (12<=≤<=*n*<=≤<=106).
Output two composite integers *x* and *y* (1<=&lt;<=*x*,<=*y*<=&lt;<=*n*) such that *x*<=+<=*y*<==<=*n*. If there are multiple solutions, you can output any of them.
[ "12\n", "15\n", "23\n", "1000000\n" ]
[ "4 8\n", "6 9\n", "8 15\n", "500000 500000\n" ]
In the first example, 12 = 4 + 8 and both 4, 8 are composite numbers. You can output "6 6" or "8 4" as well. In the second example, 15 = 6 + 9. Note that you can't output "1 14" because 1 is not a composite number.
500
[ { "input": "12", "output": "4 8" }, { "input": "15", "output": "6 9" }, { "input": "23", "output": "8 15" }, { "input": "1000000", "output": "500000 500000" }, { "input": "63874", "output": "4 63870" }, { "input": "14568", "output": "4 14564" }, ...
1,687,209,875
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
1
1,000
2,355,200
n=int(input()) i=4 def prime(x): i=2 while i*i<x: if x%i==0: return 0 i+=1 return 1 while prime(i) or prime(n-i): i+=1 print(i,n-i)
Title: Design Tutorial: Learn from Math Time Limit: None seconds Memory Limit: None megabytes Problem Description: One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statemen...
```python n=int(input()) i=4 def prime(x): i=2 while i*i<x: if x%i==0: return 0 i+=1 return 1 while prime(i) or prime(n-i): i+=1 print(i,n-i) ```
0
0
none
none
none
0
[ "none" ]
null
null
You are given several queries. In the *i*-th query you are given a single positive integer *n**i*. You are to represent *n**i* as a sum of maximum possible number of composite summands and print this maximum number, or print -1, if there are no such splittings. An integer greater than 1 is composite, if it is not prim...
The first line contains single integer *q* (1<=≤<=*q*<=≤<=105) — the number of queries. *q* lines follow. The (*i*<=+<=1)-th line contains single integer *n**i* (1<=≤<=*n**i*<=≤<=109) — the *i*-th query.
For each query print the maximum possible number of summands in a valid splitting to composite summands, or -1, if there are no such splittings.
[ "1\n12\n", "2\n6\n8\n", "3\n1\n2\n3\n" ]
[ "3\n", "1\n2\n", "-1\n-1\n-1\n" ]
12 = 4 + 4 + 4 = 4 + 8 = 6 + 6 = 12, but the first splitting has the maximum possible number of summands. 8 = 4 + 4, 6 can't be split into several composite summands. 1, 2, 3 are less than any composite number, so they do not have valid splittings.
0
[ { "input": "1\n12", "output": "3" }, { "input": "2\n6\n8", "output": "1\n2" }, { "input": "3\n1\n2\n3", "output": "-1\n-1\n-1" }, { "input": "6\n1\n2\n3\n5\n7\n11", "output": "-1\n-1\n-1\n-1\n-1\n-1" }, { "input": "3\n4\n6\n9", "output": "1\n1\n1" }, { ...
1,508,056,776
2,076
Python 3
OK
TESTS
20
1,263
0
#! /usr/bin/env python3 q = int(input()) for _ in range(q): n = int(input()) if n % 4 == 0: print(n // 4) elif n % 4 == 1: if n < 9: print(-1) else: print((n - 9) // 4 + 1) elif n % 4 == 2: if n < 6: print(-1) else: ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given several queries. In the *i*-th query you are given a single positive integer *n**i*. You are to represent *n**i* as a sum of maximum possible number of composite summands and print this maximum number, or print -1, i...
```python #! /usr/bin/env python3 q = int(input()) for _ in range(q): n = int(input()) if n % 4 == 0: print(n // 4) elif n % 4 == 1: if n < 9: print(-1) else: print((n - 9) // 4 + 1) elif n % 4 == 2: if n < 6: print(-1) else: ...
3
128
B
String
PROGRAMMING
2,100
[ "brute force", "constructive algorithms", "hashing", "implementation", "string suffix structures", "strings" ]
null
null
One day in the IT lesson Anna and Maria learned about the lexicographic order. String *x* is lexicographically less than string *y*, if either *x* is a prefix of *y* (and *x*<=≠<=*y*), or there exists such *i* (1<=≤<=*i*<=≤<=*min*(|*x*|,<=|*y*|)), that *x**i*<=&lt;<=*y**i*, and for any *j* (1<=≤<=*j*<=&lt;<=*i*) *x**j...
The first line contains a non-empty string that only consists of small Latin letters ("a"-"z"), whose length does not exceed 105. The second line contains the only integer *k* (1<=≤<=*k*<=≤<=105).
Print the string Anna and Maria need — the *k*-th (in the lexicographical order) substring of the given string. If the total number of substrings is less than *k*, print a string saying "No such line." (without the quotes).
[ "aa\n2\n", "abc\n5\n", "abab\n7\n" ]
[ "a\n", "bc\n", "b\n" ]
In the second sample before string "bc" follow strings "a", "ab", "abc", "b".
1,500
[ { "input": "aa\n2", "output": "a" }, { "input": "abc\n5", "output": "bc" }, { "input": "abab\n7", "output": "b" }, { "input": "codeforces\n1", "output": "c" }, { "input": "cccc\n8", "output": "ccc" }, { "input": "abcdefghijklmnopqrstuvwxyz\n27", "o...
1,462,622,112
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
842
14,745,600
from heapq import * l=input() k=int(input()) n=len(l) if k>n*(n+1)/2: print("No such line.") quit() ss=[(l[i],i) for i in range(n)] while k: k-=1 t=heappop(ss) if k==0: print(t[0]) else: if t[1]<n-1: heappush(ss,(t[0]+l[t[1]+1],t[1]+1))
Title: String Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day in the IT lesson Anna and Maria learned about the lexicographic order. String *x* is lexicographically less than string *y*, if either *x* is a prefix of *y* (and *x*<=≠<=*y*), or there exists such *i* (1<=≤<=*i*<=≤<=*m...
```python from heapq import * l=input() k=int(input()) n=len(l) if k>n*(n+1)/2: print("No such line.") quit() ss=[(l[i],i) for i in range(n)] while k: k-=1 t=heappop(ss) if k==0: print(t[0]) else: if t[1]<n-1: heappush(ss,(t[0]+l[t[1]+1],t[1]+1)) ```
0
665
C
Simple Strings
PROGRAMMING
1,300
[ "dp", "greedy", "strings" ]
null
null
zscoder loves simple strings! A string *t* is called simple if every pair of adjacent characters are distinct. For example ab, aba, zscoder are simple whereas aa, add are not simple. zscoder is given a string *s*. He wants to change a minimum number of characters so that the string *s* becomes simple. Help him with th...
The only line contains the string *s* (1<=≤<=|*s*|<=≤<=2·105) — the string given to zscoder. The string *s* consists of only lowercase English letters.
Print the simple string *s*' — the string *s* after the minimal number of changes. If there are multiple solutions, you may output any of them. Note that the string *s*' should also consist of only lowercase English letters.
[ "aab\n", "caaab\n", "zscoder\n" ]
[ "bab\n", "cabab\n", "zscoder\n" ]
none
0
[ { "input": "aab", "output": "bab" }, { "input": "caaab", "output": "cabab" }, { "input": "zscoder", "output": "zscoder" }, { "input": "u", "output": "u" }, { "input": "h", "output": "h" }, { "input": "dtottttotd", "output": "dtotataotd" }, { ...
1,609,844,138
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
13
233
1,843,200
from sys import stdin stdin.readline def mp(): return list(map(int, stdin.readline().strip().split())) def it():return int(stdin.readline().strip()) s=list(input()) n=len(s) if n==1: print(''.join(s)) elif n==2: if s[0]!=s[1]: print(''.join(s)) else: if s[0]!='z': s[1]=chr(ord(s[0])+1) prin...
Title: Simple Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: zscoder loves simple strings! A string *t* is called simple if every pair of adjacent characters are distinct. For example ab, aba, zscoder are simple whereas aa, add are not simple. zscoder is given a string *s*. He wa...
```python from sys import stdin stdin.readline def mp(): return list(map(int, stdin.readline().strip().split())) def it():return int(stdin.readline().strip()) s=list(input()) n=len(s) if n==1: print(''.join(s)) elif n==2: if s[0]!=s[1]: print(''.join(s)) else: if s[0]!='z': s[1]=chr(ord(s[0])+1...
-1
461
A
Appleman and Toastman
PROGRAMMING
1,200
[ "greedy", "sortings" ]
null
null
Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all the numbers and adds this sum to the score. Then he gives the group to the Appleman. - Each time Appleman...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=3·105). The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=106) — the initial group that is given to Toastman.
Print a single integer — the largest possible score.
[ "3\n3 1 5\n", "1\n10\n" ]
[ "26\n", "10\n" ]
Consider the following situation in the first example. Initially Toastman gets group [3, 1, 5] and adds 9 to the score, then he give the group to Appleman. Appleman splits group [3, 1, 5] into two groups: [3, 5] and [1]. Both of them should be given to Toastman. When Toastman receives group [1], he adds 1 to score and ...
500
[ { "input": "3\n3 1 5", "output": "26" }, { "input": "1\n10", "output": "10" }, { "input": "10\n8 10 2 5 6 2 4 7 2 1", "output": "376" }, { "input": "10\n171308 397870 724672 431255 228496 892002 542924 718337 888642 161821", "output": "40204082" }, { "input": "10\...
1,449,652,828
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
0
n=int(input()) l=input().split() l=sorted(l) s=-int(l[-1]) for i in range(n): s=s+(i+2)*(int(l[i])) print(s)
Title: Appleman and Toastman Time Limit: None seconds Memory Limit: None megabytes Problem Description: Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all...
```python n=int(input()) l=input().split() l=sorted(l) s=-int(l[-1]) for i in range(n): s=s+(i+2)*(int(l[i])) print(s) ```
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,610,686,007
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
a = list(map(int,input().split())) h=0 b=a[0] c=a[1] d = list(map(int,input().split())) f = d[c-1] for e in range (0,b): g=d[e] if (g>=f and g>0): h=h+1 print(h)
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 = list(map(int,input().split())) h=0 b=a[0] c=a[1] d = list(map(int,input().split())) f = d[c-1] for e in range (0,b): g=d[e] if (g>=f and g>0): h=h+1 print(h) ```
-1
887
A
Div. 64
PROGRAMMING
1,000
[ "implementation" ]
null
null
Top-model Izabella participates in the competition. She wants to impress judges and show her mathematical skills. Her problem is following: for given string, consisting of only 0 and 1, tell if it's possible to remove some digits in such a way, that remaining number is a representation of some positive integer, divisi...
In the only line given a non-empty binary string *s* with length up to 100.
Print «yes» (without quotes) if it's possible to remove digits required way and «no» otherwise.
[ "100010001\n", "100\n" ]
[ "yes", "no" ]
In the first test case, you can get string 1 000 000 after removing two ones which is a representation of number 64 in the binary numerical system. You can read more about binary numeral system representation here: [https://en.wikipedia.org/wiki/Binary_system](https://en.wikipedia.org/wiki/Binary_system)
500
[ { "input": "100010001", "output": "yes" }, { "input": "100", "output": "no" }, { "input": "0000001000000", "output": "yes" }, { "input": "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "output": "no" }, { "in...
1,511,376,944
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
0
n = list(input()) n.reverse() x = 0 for i in range(len(n)): x += int(n[i])*(2**i) if x>= 64: print('yes') else: print('no')
Title: Div. 64 Time Limit: None seconds Memory Limit: None megabytes Problem Description: Top-model Izabella participates in the competition. She wants to impress judges and show her mathematical skills. Her problem is following: for given string, consisting of only 0 and 1, tell if it's possible to remove some dig...
```python n = list(input()) n.reverse() x = 0 for i in range(len(n)): x += int(n[i])*(2**i) if x>= 64: print('yes') else: print('no') ```
0
382
C
Arithmetic Progression
PROGRAMMING
1,700
[ "implementation", "sortings" ]
null
null
Everybody knows what an arithmetic progression is. Let us remind you just in case that an arithmetic progression is such sequence of numbers *a*1,<=*a*2,<=...,<=*a**n* of length *n*, that the following condition fulfills: For example, sequences [1, 5], [10], [5, 4, 3] are arithmetic progressions and sequences [1, 3, ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of cards. The next line contains the sequence of integers — the numbers on Alexander's cards. The numbers are positive integers, each of them doesn't exceed 108.
If Arthur can write infinitely many distinct integers on the card, print on a single line -1. Otherwise, print on the first line the number of integers that suit you. In the second line, print the numbers in the increasing order. Note that the numbers in the answer can exceed 108 or even be negative (see test samples)...
[ "3\n4 1 7\n", "1\n10\n", "4\n1 3 5 9\n", "4\n4 3 4 5\n", "2\n2 4\n" ]
[ "2\n-2 10\n", "-1\n", "1\n7\n", "0\n", "3\n0 3 6\n" ]
none
1,500
[ { "input": "3\n4 1 7", "output": "2\n-2 10" }, { "input": "1\n10", "output": "-1" }, { "input": "4\n1 3 5 9", "output": "1\n7" }, { "input": "4\n4 3 4 5", "output": "0" }, { "input": "2\n2 4", "output": "3\n0 3 6" }, { "input": "4\n1 3 4 5", "outpu...
1,535,729,736
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
6
108
0
# import sys # sys.stdin = open("F:\\Scripts\\input","r") # sys.stdout = open("F:\\Scripts\\output","w") MOD = 10**9 + 7 I = lambda:list(map(int,input().split())) n , = I() l = I() l.sort() s = set() a = [0]*n for i in range(n - 1): a[i] = l[i + 1] - l[i] s.add(a[i]) if n == 1: hh = [-1] elif len(...
Title: Arithmetic Progression Time Limit: None seconds Memory Limit: None megabytes Problem Description: Everybody knows what an arithmetic progression is. Let us remind you just in case that an arithmetic progression is such sequence of numbers *a*1,<=*a*2,<=...,<=*a**n* of length *n*, that the following condition ...
```python # import sys # sys.stdin = open("F:\\Scripts\\input","r") # sys.stdout = open("F:\\Scripts\\output","w") MOD = 10**9 + 7 I = lambda:list(map(int,input().split())) n , = I() l = I() l.sort() s = set() a = [0]*n for i in range(n - 1): a[i] = l[i + 1] - l[i] s.add(a[i]) if n == 1: hh = [-1] ...
-1
135
D
Cycle
PROGRAMMING
2,500
[ "brute force", "dfs and similar", "implementation" ]
null
null
Little Petya very much likes rectangular tables that consist of characters "0" and "1". Recently he has received one such table as a gift from his mother. The table contained *n* rows and *m* columns. The rows are numbered from top to bottom from 1 to *n*, the columns are numbered from the left to the right from 1 to *...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1000) — the number of rows and columns in the table, respectively. Each of the following *n* lines contains *m* characters. Each character can be either "0" or "1".
Print a single number — the length of the longest cool cycle in the table. If such cycles do not exist, print 0.
[ "3 3\n111\n101\n111\n", "5 5\n01010\n10101\n01010\n10101\n01010\n", "7 7\n1111111\n1000101\n1000101\n1000101\n1000111\n1000001\n1111111\n", "5 5\n11111\n10001\n10101\n10001\n11111\n" ]
[ "8\n", "0\n", "24\n", "0\n" ]
In the first example there's only one cycle and it is cool. In the second sample there's no cycle at all. In the third sample there are two cool cycles: their lengths are 12 and 24. In the fourth sample there also is only one cycle but it isn't cool as there's a cell containing "1" inside this cycle.
2,000
[]
1,689,182,459
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
60
0
print("_RANDOM_GUESS_1689182458.830307")# 1689182458.830351
Title: Cycle Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya very much likes rectangular tables that consist of characters "0" and "1". Recently he has received one such table as a gift from his mother. The table contained *n* rows and *m* columns. The rows are numbered from t...
```python print("_RANDOM_GUESS_1689182458.830307")# 1689182458.830351 ```
0
264
B
Good Sequences
PROGRAMMING
1,500
[ "dp", "number theory" ]
null
null
Squirrel Liss is interested in sequences. She also has preferences of integers. She thinks *n* integers *a*1,<=*a*2,<=...,<=*a**n* are good. Now she is interested in good sequences. A sequence *x*1,<=*x*2,<=...,<=*x**k* is called good if it satisfies the following three conditions: - The sequence is strictly increas...
The input consists of two lines. The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of good integers. The second line contains a single-space separated list of good integers *a*1,<=*a*2,<=...,<=*a**n* in strictly increasing order (1<=≤<=*a**i*<=≤<=105; *a**i*<=&lt;<=*a**i*<=+<=1).
Print a single integer — the length of the longest good sequence.
[ "5\n2 3 4 6 9\n", "9\n1 2 3 5 6 7 8 9 10\n" ]
[ "4\n", "4\n" ]
In the first example, the following sequences are examples of good sequences: [2; 4; 6; 9], [2; 4; 6], [3; 9], [6]. The length of the longest good sequence is 4.
1,000
[ { "input": "5\n2 3 4 6 9", "output": "4" }, { "input": "9\n1 2 3 5 6 7 8 9 10", "output": "4" }, { "input": "4\n1 2 4 6", "output": "3" }, { "input": "7\n1 2 3 4 7 9 10", "output": "3" }, { "input": "1\n1", "output": "1" }, { "input": "8\n3 4 5 6 7 8 9...
1,660,950,850
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
156
3,174,400
from collections import Counter from functools import lru_cache # from itertools import combinations import bisect import heapq from itertools import product import math from re import S import sys from types import GeneratorType # sys.stdin = open('grey.in', 'r') # sys.setrecursionlimit(5 * 10**5) de...
Title: Good Sequences Time Limit: None seconds Memory Limit: None megabytes Problem Description: Squirrel Liss is interested in sequences. She also has preferences of integers. She thinks *n* integers *a*1,<=*a*2,<=...,<=*a**n* are good. Now she is interested in good sequences. A sequence *x*1,<=*x*2,<=...,<=*x**k*...
```python from collections import Counter from functools import lru_cache # from itertools import combinations import bisect import heapq from itertools import product import math from re import S import sys from types import GeneratorType # sys.stdin = open('grey.in', 'r') # sys.setrecursionlimit(5 * 10**...
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,640,379,964
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
print("bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb")
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 print("bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb") ```
0
645
C
Enduring Exodus
PROGRAMMING
1,600
[ "binary search", "two pointers" ]
null
null
In an attempt to escape the Mischievous Mess Makers' antics, Farmer John has abandoned his farm and is traveling to the other side of Bovinia. During the journey, he and his *k* cows have decided to stay at the luxurious Grand Moo-dapest Hotel. The hotel consists of *n* rooms located in a row, some of which are occupie...
The first line of the input contains two integers *n* and *k* (1<=≤<=*k*<=&lt;<=*n*<=≤<=100<=000) — the number of rooms in the hotel and the number of cows travelling with Farmer John. The second line contains a string of length *n* describing the rooms. The *i*-th character of the string will be '0' if the *i*-th roo...
Print the minimum possible distance between Farmer John's room and his farthest cow.
[ "7 2\n0100100\n", "5 1\n01010\n", "3 2\n000\n" ]
[ "2\n", "2\n", "1\n" ]
In the first sample, Farmer John can book room 3 for himself, and rooms 1 and 4 for his cows. The distance to the farthest cow is 2. Note that it is impossible to make this distance 1, as there is no block of three consecutive unoccupied rooms. In the second sample, Farmer John can book room 1 for himself and room 3 f...
1,500
[ { "input": "7 2\n0100100", "output": "2" }, { "input": "5 1\n01010", "output": "2" }, { "input": "3 2\n000", "output": "1" }, { "input": "10 1\n1101111101", "output": "6" }, { "input": "2 1\n00", "output": "1" }, { "input": "3 1\n010", "output": "2...
1,507,338,066
2,147,483,647
Python 3
OK
TESTS
87
390
307,200
n, k = [int(_) for _ in input().split()] a = input() def next_free(x): x += 1 while x < n and a[x] == '1': x += 1 return x l = next_free(-1) r = -1 k += 1 for _ in range(k): r = next_free(r) i = l dis = max(i-l, r-i) next_i = next_free(i) while True: cur_dis = max...
Title: Enduring Exodus Time Limit: None seconds Memory Limit: None megabytes Problem Description: In an attempt to escape the Mischievous Mess Makers' antics, Farmer John has abandoned his farm and is traveling to the other side of Bovinia. During the journey, he and his *k* cows have decided to stay at the luxuriou...
```python n, k = [int(_) for _ in input().split()] a = input() def next_free(x): x += 1 while x < n and a[x] == '1': x += 1 return x l = next_free(-1) r = -1 k += 1 for _ in range(k): r = next_free(r) i = l dis = max(i-l, r-i) next_i = next_free(i) while True: cur...
3
817
B
Makes And The Product
PROGRAMMING
1,500
[ "combinatorics", "implementation", "math", "sortings" ]
null
null
After returning from the army Makes received a gift — an array *a* consisting of *n* positive integer numbers. He hadn't been solving problems for a long time, so he became interested to answer a particular question: how many triples of indices (*i*,<= *j*,<= *k*) (*i*<=&lt;<=*j*<=&lt;<=*k*), such that *a**i*·*a**j*·*a...
The first line of input contains a positive integer number *n* (3<=≤<=*n*<=≤<=105) — the number of elements in array *a*. The second line contains *n* positive integer numbers *a**i* (1<=≤<=*a**i*<=≤<=109) — the elements of a given array.
Print one number — the quantity of triples (*i*,<= *j*,<= *k*) such that *i*,<= *j* and *k* are pairwise distinct and *a**i*·*a**j*·*a**k* is minimum possible.
[ "4\n1 1 1 1\n", "5\n1 3 2 3 4\n", "6\n1 3 3 1 3 2\n" ]
[ "4\n", "2\n", "1\n" ]
In the first example Makes always chooses three ones out of four, and the number of ways to choose them is 4. In the second example a triple of numbers (1, 2, 3) is chosen (numbers, not indices). Since there are two ways to choose an element 3, then the answer is 2. In the third example a triple of numbers (1, 1, 2) ...
0
[ { "input": "4\n1 1 1 1", "output": "4" }, { "input": "5\n1 3 2 3 4", "output": "2" }, { "input": "6\n1 3 3 1 3 2", "output": "1" }, { "input": "3\n1000000000 1000000000 1000000000", "output": "1" }, { "input": "4\n1 1 2 2", "output": "2" }, { "input": ...
1,498,277,278
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
3
2,000
6,451,200
n = int(input()) array = list(input().split()) array = list(map(int,array)) dupArray = [] for i in array: dupArray.append(i) firstMin = min(dupArray) dupArray.remove(firstMin) secondMin = min(dupArray) dupArray.remove(secondMin) thirdMin = min(dupArray) possibility = 0 for i in range(0,n): ...
Title: Makes And The Product Time Limit: None seconds Memory Limit: None megabytes Problem Description: After returning from the army Makes received a gift — an array *a* consisting of *n* positive integer numbers. He hadn't been solving problems for a long time, so he became interested to answer a particular questi...
```python n = int(input()) array = list(input().split()) array = list(map(int,array)) dupArray = [] for i in array: dupArray.append(i) firstMin = min(dupArray) dupArray.remove(firstMin) secondMin = min(dupArray) dupArray.remove(secondMin) thirdMin = min(dupArray) possibility = 0 for i in range(0...
0
6
B
President's Office
PROGRAMMING
1,100
[ "implementation" ]
B. President's Office
2
64
President of Berland has a very vast office-room, where, apart from him, work his subordinates. Each subordinate, as well as President himself, has his own desk of a unique colour. Each desk is rectangular, and its sides are parallel to the office walls. One day President decided to establish an assembly, of which all ...
The first line contains two separated by a space integer numbers *n*, *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the length and the width of the office-room, and *c* character — the President's desk colour. The following *n* lines contain *m* characters each — the office-room description. It is guaranteed that the colour of each ...
Print the only number — the amount of President's deputies.
[ "3 4 R\nG.B.\n.RR.\nTTT.\n", "3 3 Z\n...\n.H.\n..Z\n" ]
[ "2\n", "0\n" ]
none
0
[ { "input": "3 4 R\nG.B.\n.RR.\nTTT.", "output": "2" }, { "input": "3 3 Z\n...\n.H.\n..Z", "output": "0" }, { "input": "1 1 C\nC", "output": "0" }, { "input": "2 2 W\nKW\nKW", "output": "1" }, { "input": "1 10 H\n....DDHHHH", "output": "1" }, { "input":...
1,617,278,464
2,147,483,647
PyPy 3
OK
TESTS
32
109
1,843,200
import sys def input(): return sys.stdin.readline().strip() def iinput(): return int(input()) def minput(): return map(int, input().split()) def listinput(): return list(map(int, input().split())) n,m,c=map(str,input().split()) n,m=int(n),int(m) office=[] for _ in range(n): office.append(input()) ...
Title: President's Office Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: President of Berland has a very vast office-room, where, apart from him, work his subordinates. Each subordinate, as well as President himself, has his own desk of a unique colour. Each desk is rectangular, and its sides ...
```python import sys def input(): return sys.stdin.readline().strip() def iinput(): return int(input()) def minput(): return map(int, input().split()) def listinput(): return list(map(int, input().split())) n,m,c=map(str,input().split()) n,m=int(n),int(m) office=[] for _ in range(n): office.append(...
3.959017
999
B
Reversing Encryption
PROGRAMMING
900
[ "implementation" ]
null
null
A string $s$ of length $n$ can be encrypted by the following algorithm: - iterate over all divisors of $n$ in decreasing order (i.e. from $n$ to $1$), - for each divisor $d$, reverse the substring $s[1 \dots d]$ (i.e. the substring which starts at position $1$ and ends at position $d$). For example, the above algor...
The first line of input consists of a single integer $n$ ($1 \le n \le 100$) — the length of the string $t$. The second line of input consists of the string $t$. The length of $t$ is $n$, and it consists only of lowercase Latin letters.
Print a string $s$ such that the above algorithm results in $t$.
[ "10\nrocesfedoc\n", "16\nplmaetwoxesisiht\n", "1\nz\n" ]
[ "codeforces\n", "thisisexampletwo\n", "z\n" ]
The first example is described in the problem statement.
0
[ { "input": "10\nrocesfedoc", "output": "codeforces" }, { "input": "16\nplmaetwoxesisiht", "output": "thisisexampletwo" }, { "input": "1\nz", "output": "z" }, { "input": "2\nir", "output": "ri" }, { "input": "3\nilj", "output": "jli" }, { "input": "4\nj...
1,621,210,632
2,147,483,647
Python 3
OK
TESTS
20
62
0
n = int(input()) s = input() def get_divisors(n): i=2 original = n res = [] for i in range(2,n+1): if n%i==0: res.append(i) return res # print(get_divisors(n)) divisors = get_divisors(n) l = list(s) for k in divisors: i=0 j=k-1 while i<j: l[i],l[j] = l[j],l[i] i+=1 j-=1 ...
Title: Reversing Encryption Time Limit: None seconds Memory Limit: None megabytes Problem Description: A string $s$ of length $n$ can be encrypted by the following algorithm: - iterate over all divisors of $n$ in decreasing order (i.e. from $n$ to $1$), - for each divisor $d$, reverse the substring $s[1 \dots d]$...
```python n = int(input()) s = input() def get_divisors(n): i=2 original = n res = [] for i in range(2,n+1): if n%i==0: res.append(i) return res # print(get_divisors(n)) divisors = get_divisors(n) l = list(s) for k in divisors: i=0 j=k-1 while i<j: l[i],l[j] = l[j],l[i] i+=1 ...
3
808
D
Array Division
PROGRAMMING
1,900
[ "binary search", "data structures", "implementation" ]
null
null
Vasya has an array *a* consisting of positive integer numbers. Vasya wants to divide this array into two non-empty consecutive parts (the prefix and the suffix) so that the sum of all elements in the first part equals to the sum of elements in the second part. It is not always possible, so Vasya will move some element ...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=100000) — the size of the array. The second line contains *n* integers *a*1,<=*a*2... *a**n* (1<=≤<=*a**i*<=≤<=109) — the elements of the array.
Print YES if Vasya can divide the array after moving one element. Otherwise print NO.
[ "3\n1 3 2\n", "5\n1 2 3 4 5\n", "5\n2 2 3 4 5\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first example Vasya can move the second element to the end of the array. In the second example no move can make the division possible. In the third example Vasya can move the fourth element by one position to the left.
0
[ { "input": "3\n1 3 2", "output": "YES" }, { "input": "5\n1 2 3 4 5", "output": "NO" }, { "input": "5\n2 2 3 4 5", "output": "YES" }, { "input": "5\n72 32 17 46 82", "output": "NO" }, { "input": "6\n26 10 70 11 69 57", "output": "NO" }, { "input": "7\n4...
1,596,761,752
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
33
264
36,352,000
n=int(input()) aa=list(map(int,input().split(" "))) newa=[] sm=0 for x in range(n): sm=sm+aa[x] newa.append(sm) i=0 j=n-1 chk=0 while (i<j): mid=(i+j)//2 a=newa[mid] b=newa[n-1]-newa[mid] # print(a,b,i,j,) if a==b: chk==1 break; if a>b: if (a-b)/...
Title: Array Division Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has an array *a* consisting of positive integer numbers. Vasya wants to divide this array into two non-empty consecutive parts (the prefix and the suffix) so that the sum of all elements in the first part equals to...
```python n=int(input()) aa=list(map(int,input().split(" "))) newa=[] sm=0 for x in range(n): sm=sm+aa[x] newa.append(sm) i=0 j=n-1 chk=0 while (i<j): mid=(i+j)//2 a=newa[mid] b=newa[n-1]-newa[mid] # print(a,b,i,j,) if a==b: chk==1 break; if a>b: ...
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,698,756,737
2,147,483,647
Python 3
OK
TESTS
25
92
0
start_r = 0 start_c = 0 flag = True for i in range(0,5): row = list(map(int, input().split())) if flag: for j in range(0, 5): if row[j] == 1: start_r = i+1 start_c = j+1 flag = False s1 = abs(start_c - 3) s2 = abs(s...
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 start_r = 0 start_c = 0 flag = True for i in range(0,5): row = list(map(int, input().split())) if flag: for j in range(0, 5): if row[j] == 1: start_r = i+1 start_c = j+1 flag = False s1 = abs(start_c - 3) ...
3
839
A
Arya and Bran
PROGRAMMING
900
[ "implementation" ]
null
null
Bran and his older sister Arya are from the same house. Bran like candies so much, so Arya is going to give him some Candies. At first, Arya and Bran have 0 Candies. There are *n* days, at the *i*-th day, Arya finds *a**i* candies in a box, that is given by the Many-Faced God. Every day she can give Bran at most 8 of ...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=100, 1<=≤<=*k*<=≤<=10000). The second line contains *n* integers *a*1,<=*a*2,<=*a*3,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100).
If it is impossible for Arya to give Bran *k* candies within *n* days, print -1. Otherwise print a single integer — the minimum number of days Arya needs to give Bran *k* candies before the end of the *n*-th day.
[ "2 3\n1 2\n", "3 17\n10 10 10\n", "1 9\n10\n" ]
[ "2", "3", "-1" ]
In the first sample, Arya can give Bran 3 candies in 2 days. In the second sample, Arya can give Bran 17 candies in 3 days, because she can give him at most 8 candies per day. In the third sample, Arya can't give Bran 9 candies, because she can give him at most 8 candies per day and she must give him the candies with...
500
[ { "input": "2 3\n1 2", "output": "2" }, { "input": "3 17\n10 10 10", "output": "3" }, { "input": "1 9\n10", "output": "-1" }, { "input": "10 70\n6 5 2 3 3 2 1 4 3 2", "output": "-1" }, { "input": "20 140\n40 4 81 40 10 54 34 50 84 60 16 1 90 78 38 93 99 60 81 99",...
1,608,927,967
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
4
124
0
def aryaBen(): d,g = map(int, input().split()) dList = list(map(int,input().split())) bScore = 0 for i in range(d): if(dList[i] > 8): bScore += dList[i] - 8 g -= 8 else: g -= dList[i] if(g <= 0): return i +1...
Title: Arya and Bran Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bran and his older sister Arya are from the same house. Bran like candies so much, so Arya is going to give him some Candies. At first, Arya and Bran have 0 Candies. There are *n* days, at the *i*-th day, Arya finds *a**...
```python def aryaBen(): d,g = map(int, input().split()) dList = list(map(int,input().split())) bScore = 0 for i in range(d): if(dList[i] > 8): bScore += dList[i] - 8 g -= 8 else: g -= dList[i] if(g <= 0): r...
0
336
A
Vasily the Bear and Triangle
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Vasily the bear has a favorite rectangle, it has one vertex at point (0,<=0), and the opposite vertex at point (*x*,<=*y*). Of course, the sides of Vasya's favorite rectangle are parallel to the coordinate axes. Vasya also loves triangles, if the triangles have one vertex at point *B*<==<=(0,<=0). That's why today he...
The first line contains two integers *x*,<=*y* (<=-<=109<=≤<=*x*,<=*y*<=≤<=109,<=*x*<=≠<=0,<=*y*<=≠<=0).
Print in the single line four integers *x*1,<=*y*1,<=*x*2,<=*y*2 — the coordinates of the required points.
[ "10 5\n", "-10 5\n" ]
[ "0 15 15 0\n", "-15 0 0 15\n" ]
<img class="tex-graphics" src="https://espresso.codeforces.com/a9ea2088c4294ce8f23801562fda36b830df2c3f.png" style="max-width: 100.0%;max-height: 100.0%;"/> Figure to the first sample
500
[ { "input": "10 5", "output": "0 15 15 0" }, { "input": "-10 5", "output": "-15 0 0 15" }, { "input": "20 -10", "output": "0 -30 30 0" }, { "input": "-10 -1000000000", "output": "-1000000010 0 0 -1000000010" }, { "input": "-1000000000 -1000000000", "output": "-...
1,621,185,905
2,147,483,647
Python 3
OK
TESTS
30
124
0
x,y = map(int, input().split()) val = abs(x)+abs(y) sign = lambda a: 1 if a>0 else -1 if a<0 else 0 if x>0: point1x = 0 point1y = val*sign(y) point2x = val* sign(x) point2y = 0 print( point1x, point1y, point2x, point2y) elif x<0: point1x = val* sign(x) point1y = 0 point2x =...
Title: Vasily the Bear and Triangle Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily the bear has a favorite rectangle, it has one vertex at point (0,<=0), and the opposite vertex at point (*x*,<=*y*). Of course, the sides of Vasya's favorite rectangle are parallel to the coordinate ...
```python x,y = map(int, input().split()) val = abs(x)+abs(y) sign = lambda a: 1 if a>0 else -1 if a<0 else 0 if x>0: point1x = 0 point1y = val*sign(y) point2x = val* sign(x) point2y = 0 print( point1x, point1y, point2x, point2y) elif x<0: point1x = val* sign(x) point1y = 0 ...
3
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,502,424,495
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
4,608,000
s = input() a = [] a = s.split() b = ['a', 'o', 'u', 'i', 'y', 'e', 'A', 'O', 'U', 'I', 'Y', 'E'] if a[len(a)-1][len(a[len(a)-1])-2] in b: print('YES') else: print('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 s = input() a = [] a = s.split() b = ['a', 'o', 'u', 'i', 'y', 'e', 'A', 'O', 'U', 'I', 'Y', 'E'] if a[len(a)-1][len(a[len(a)-1])-2] in b: print('YES') else: print('NO') ```
0
957
A
Tritonic Iridescence
PROGRAMMING
1,300
[ "implementation" ]
null
null
Overlooking the captivating blend of myriads of vernal hues, Arkady the painter lays out a long, long canvas. Arkady has a sufficiently large amount of paint of three colours: cyan, magenta, and yellow. On the one-dimensional canvas split into *n* consecutive segments, each segment needs to be painted in one of the co...
The first line contains a single positive integer *n* (1<=≤<=*n*<=≤<=100) — the length of the canvas. The second line contains a string *s* of *n* characters, the *i*-th of which is either 'C' (denoting a segment painted in cyan), 'M' (denoting one painted in magenta), 'Y' (one painted in yellow), or '?' (an unpainted...
If there are at least two different ways of painting, output "Yes"; otherwise output "No" (both without quotes). You can print each character in any case (upper or lower).
[ "5\nCY??Y\n", "5\nC?C?Y\n", "5\n?CYC?\n", "5\nC??MM\n", "3\nMMY\n" ]
[ "Yes\n", "Yes\n", "Yes\n", "No\n", "No\n" ]
For the first example, there are exactly two different ways of colouring: CYCMY and CYMCY. For the second example, there are also exactly two different ways of colouring: CMCMY and CYCMY. For the third example, there are four ways of colouring: MCYCM, MCYCY, YCYCM, and YCYCY. For the fourth example, no matter how th...
500
[ { "input": "5\nCY??Y", "output": "Yes" }, { "input": "5\nC?C?Y", "output": "Yes" }, { "input": "5\n?CYC?", "output": "Yes" }, { "input": "5\nC??MM", "output": "No" }, { "input": "3\nMMY", "output": "No" }, { "input": "15\n??YYYYYY??YYYY?", "output"...
1,521,972,990
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
77
7,065,600
import sys _, s = input(), input() def yes(): print('Yes') sys.exit(0) def no(): print('No') sys.exit(0) for i in range(len(s)): if s[i] == '?': if i == len(s) - 1: yes() elif s[i + 1] == '?': yes() elif s[i - 1] == s[i + 1]: yes() no(...
Title: Tritonic Iridescence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Overlooking the captivating blend of myriads of vernal hues, Arkady the painter lays out a long, long canvas. Arkady has a sufficiently large amount of paint of three colours: cyan, magenta, and yellow. On the one...
```python import sys _, s = input(), input() def yes(): print('Yes') sys.exit(0) def no(): print('No') sys.exit(0) for i in range(len(s)): if s[i] == '?': if i == len(s) - 1: yes() elif s[i + 1] == '?': yes() elif s[i - 1] == s[i + 1]: ...
0
136
A
Presents
PROGRAMMING
800
[ "implementation" ]
null
null
Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on this occasion he organized a New Year party at his place and invited *n* his friends there. If...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the quantity of friends Petya invited to the party. The second line contains *n* space-separated integers: the *i*-th number is *p**i* — the number of a friend who gave a gift to friend number *i*. It is guaranteed that each friend received exactly one gift....
Print *n* space-separated integers: the *i*-th number should equal the number of the friend who gave a gift to friend number *i*.
[ "4\n2 3 4 1\n", "3\n1 3 2\n", "2\n1 2\n" ]
[ "4 1 2 3\n", "1 3 2\n", "1 2\n" ]
none
500
[ { "input": "4\n2 3 4 1", "output": "4 1 2 3" }, { "input": "3\n1 3 2", "output": "1 3 2" }, { "input": "2\n1 2", "output": "1 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 3 2 6 4 5 7 9 8 10", "output": "1 3 2 5 6 4 7 9 8 10" }, { "input"...
1,694,617,103
2,147,483,647
Python 3
OK
TESTS
101
92
0
n=int(input()) ps=[int(x) for x in input().split()] result=[0]*n for i in range(n): result[ps[i]-1]=i+1 for j in range(n-1): print(str(result[j])+" ",end="") print(str(result[n-1]))
Title: Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on t...
```python n=int(input()) ps=[int(x) for x in input().split()] result=[0]*n for i in range(n): result[ps[i]-1]=i+1 for j in range(n-1): print(str(result[j])+" ",end="") print(str(result[n-1])) ```
3
703
A
Mishka and Game
PROGRAMMING
800
[ "implementation" ]
null
null
Mishka is a little polar bear. As known, little bears loves spending their free time playing dice for chocolates. Once in a wonderful sunny morning, walking around blocks of ice, Mishka met her friend Chris, and they started playing the game. Rules of the game are very simple: at first number of rounds *n* is defined....
The first line of the input contains single integer *n* *n* (1<=≤<=*n*<=≤<=100) — the number of game rounds. The next *n* lines contains rounds description. *i*-th of them contains pair of integers *m**i* and *c**i* (1<=≤<=*m**i*,<=<=*c**i*<=≤<=6) — values on dice upper face after Mishka's and Chris' throws in *i*-th ...
If Mishka is the winner of the game, print "Mishka" (without quotes) in the only line. If Chris is the winner of the game, print "Chris" (without quotes) in the only line. If the result of the game is draw, print "Friendship is magic!^^" (without quotes) in the only line.
[ "3\n3 5\n2 1\n4 2\n", "2\n6 1\n1 6\n", "3\n1 5\n3 3\n2 2\n" ]
[ "Mishka", "Friendship is magic!^^", "Chris" ]
In the first sample case Mishka loses the first round, but wins second and third rounds and thus she is the winner of the game. In the second sample case Mishka wins the first round, Chris wins the second round, and the game ends with draw with score 1:1. In the third sample case Chris wins the first round, but there...
500
[ { "input": "3\n3 5\n2 1\n4 2", "output": "Mishka" }, { "input": "2\n6 1\n1 6", "output": "Friendship is magic!^^" }, { "input": "3\n1 5\n3 3\n2 2", "output": "Chris" }, { "input": "6\n4 1\n4 2\n5 3\n5 1\n5 3\n4 1", "output": "Mishka" }, { "input": "8\n2 4\n1 4\n1 ...
1,690,378,260
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
rounds = int(input()) num1 = 0 num2 = 0 for x in range(rounds): mishka = int(input()) chris = int(input()) if mishka > chris: num1 += 1 if mishka < chris: num2 += 1 if num1 > num2: print('Mishka') if num1 < num2: print('Chris') else: print('Friendship is magic!...
Title: Mishka and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mishka is a little polar bear. As known, little bears loves spending their free time playing dice for chocolates. Once in a wonderful sunny morning, walking around blocks of ice, Mishka met her friend Chris, and they st...
```python rounds = int(input()) num1 = 0 num2 = 0 for x in range(rounds): mishka = int(input()) chris = int(input()) if mishka > chris: num1 += 1 if mishka < chris: num2 += 1 if num1 > num2: print('Mishka') if num1 < num2: print('Chris') else: print('Friendship...
-1
898
A
Rounding
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5 Vasya can round it to 0 or to 10. Both ways are correct. For given *n* find out to which int...
The first line contains single integer *n* (0<=≤<=*n*<=≤<=109) — number that Vasya has.
Print result of rounding *n*. Pay attention that in some cases answer isn't unique. In that case print any correct answer.
[ "5\n", "113\n", "1000000000\n", "5432359\n" ]
[ "0\n", "110\n", "1000000000\n", "5432360\n" ]
In the first example *n* = 5. Nearest integers, that ends up with zero are 0 and 10. Any of these answers is correct, so you can print 0 or 10.
500
[ { "input": "5", "output": "0" }, { "input": "113", "output": "110" }, { "input": "1000000000", "output": "1000000000" }, { "input": "5432359", "output": "5432360" }, { "input": "999999994", "output": "999999990" }, { "input": "10", "output": "10" ...
1,668,065,946
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
16
46
0
test=input() n=list(map(int,list(test))) l=len(n) check=n[l-1] if check>5: if l==1: n[l-1]=10 else: n[l-2]=n[l-2]+1 n[l-1]=0 else: n[l-1]=0 test="" for x in range(0,l): test+=str(n[x]) print(test)
Title: Rounding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5...
```python test=input() n=list(map(int,list(test))) l=len(n) check=n[l-1] if check>5: if l==1: n[l-1]=10 else: n[l-2]=n[l-2]+1 n[l-1]=0 else: n[l-1]=0 test="" for x in range(0,l): test+=str(n[x]) print(test) ```
0
149
A
Business trip
PROGRAMMING
900
[ "greedy", "implementation", "sortings" ]
null
null
What joy! Petya's parents went on a business trip for the whole year and the playful kid is left all by himself. Petya got absolutely happy. He jumped on the bed and threw pillows all day long, until... Today Petya opened the cupboard and found a scary note there. His parents had left him with duties: he should water...
The first line contains exactly one integer *k* (0<=≤<=*k*<=≤<=100). The next line contains twelve space-separated integers: the *i*-th (1<=≤<=*i*<=≤<=12) number in the line represents *a**i* (0<=≤<=*a**i*<=≤<=100).
Print the only integer — the minimum number of months when Petya has to water the flower so that the flower grows no less than by *k* centimeters. If the flower can't grow by *k* centimeters in a year, print -1.
[ "5\n1 1 1 1 2 2 3 2 2 1 1 1\n", "0\n0 0 0 0 0 0 0 1 1 2 3 0\n", "11\n1 1 4 1 1 5 1 1 4 1 1 1\n" ]
[ "2\n", "0\n", "3\n" ]
Let's consider the first sample test. There it is enough to water the flower during the seventh and the ninth month. Then the flower grows by exactly five centimeters. In the second sample Petya's parents will believe him even if the flower doesn't grow at all (*k* = 0). So, it is possible for Petya not to water the f...
500
[ { "input": "5\n1 1 1 1 2 2 3 2 2 1 1 1", "output": "2" }, { "input": "0\n0 0 0 0 0 0 0 1 1 2 3 0", "output": "0" }, { "input": "11\n1 1 4 1 1 5 1 1 4 1 1 1", "output": "3" }, { "input": "15\n20 1 1 1 1 2 2 1 2 2 1 1", "output": "1" }, { "input": "7\n8 9 100 12 14 ...
1,679,477,349
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
6
124
0
t = int(input()) a = list(map(int,input().split())) b = sorted(a) sum1,c=0,0 for i in range(len(b)): sum1+=b[11-i] if(sum1>=t): break else: c+=1 if(t==0): print(c) else: print(c+1)
Title: Business trip Time Limit: None seconds Memory Limit: None megabytes Problem Description: What joy! Petya's parents went on a business trip for the whole year and the playful kid is left all by himself. Petya got absolutely happy. He jumped on the bed and threw pillows all day long, until... Today Petya open...
```python t = int(input()) a = list(map(int,input().split())) b = sorted(a) sum1,c=0,0 for i in range(len(b)): sum1+=b[11-i] if(sum1>=t): break else: c+=1 if(t==0): print(c) else: print(c+1) ```
0
952
E
Cheese Board
PROGRAMMING
2,000
[]
null
null
Not to be confused with [chessboard](https://en.wikipedia.org/wiki/Chessboard).
The first line of input contains a single integer *N* (1<=≤<=*N*<=≤<=100) — the number of cheeses you have. The next *N* lines describe the cheeses you have. Each line contains two space-separated strings: the name of the cheese and its type. The name is a string of lowercase English letters between 1 and 10 character...
Output a single number.
[ "9\nbrie soft\ncamembert soft\nfeta soft\ngoat soft\nmuenster soft\nasiago hard\ncheddar hard\ngouda hard\nswiss hard\n", "6\nparmesan hard\nemmental hard\nedam hard\ncolby hard\ngruyere hard\nasiago hard\n" ]
[ "3\n", "4\n" ]
none
0
[ { "input": "9\nbrie soft\ncamembert soft\nfeta soft\ngoat soft\nmuenster soft\nasiago hard\ncheddar hard\ngouda hard\nswiss hard", "output": "3" }, { "input": "6\nparmesan hard\nemmental hard\nedam hard\ncolby hard\ngruyere hard\nasiago hard", "output": "4" }, { "input": "9\ngorgonzola s...
1,554,121,078
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
93
0
print(int(input(n)) - 1)
Title: Cheese Board Time Limit: None seconds Memory Limit: None megabytes Problem Description: Not to be confused with [chessboard](https://en.wikipedia.org/wiki/Chessboard). Input Specification: The first line of input contains a single integer *N* (1<=≤<=*N*<=≤<=100) — the number of cheeses you have. The next *N...
```python print(int(input(n)) - 1) ```
-1
265
B
Roadside Trees (Simplified Edition)
PROGRAMMING
1,000
[ "greedy", "implementation" ]
null
null
Squirrel Liss loves nuts. There are *n* trees (numbered 1 to *n* from west to east) along a street and there is a delicious nut on the top of each tree. The height of the tree *i* is *h**i*. Liss wants to eat all nuts. Now Liss is on the root of the tree with the number 1. In one second Liss can perform one of the fol...
The first line contains an integer *n* (1<=<=≤<=<=*n*<=≤<=105) — the number of trees. Next *n* lines contains the height of trees: *i*-th line contains an integer *h**i* (1<=≤<=*h**i*<=≤<=104) — the height of the tree with the number *i*.
Print a single integer — the minimal time required to eat all nuts in seconds.
[ "2\n1\n2\n", "5\n2\n1\n2\n1\n1\n" ]
[ "5\n", "14\n" ]
none
1,000
[ { "input": "2\n1\n2", "output": "5" }, { "input": "5\n2\n1\n2\n1\n1", "output": "14" }, { "input": "1\n1", "output": "2" } ]
1,606,552,471
2,147,483,647
PyPy 3
OK
TESTS
15
1,558
9,113,600
n = int(input()) x = int(input()) ans = x+1 l=[x] for i in range(1,n): l.append(int(input())) ans+=(abs(l[i]-l[i-1])+2) print(ans)
Title: Roadside Trees (Simplified Edition) Time Limit: None seconds Memory Limit: None megabytes Problem Description: Squirrel Liss loves nuts. There are *n* trees (numbered 1 to *n* from west to east) along a street and there is a delicious nut on the top of each tree. The height of the tree *i* is *h**i*. Liss wan...
```python n = int(input()) x = int(input()) ans = x+1 l=[x] for i in range(1,n): l.append(int(input())) ans+=(abs(l[i]-l[i-1])+2) print(ans) ```
3
673
A
Bear and Game
PROGRAMMING
800
[ "implementation" ]
null
null
Bear Limak likes watching sports on TV. He is going to watch a game today. The game lasts 90 minutes and there are no breaks. Each minute can be either interesting or boring. If 15 consecutive minutes are boring then Limak immediately turns TV off. You know that there will be *n* interesting minutes *t*1,<=*t*2,<=......
The first line of the input contains one integer *n* (1<=≤<=*n*<=≤<=90) — the number of interesting minutes. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t*1<=&lt;<=*t*2<=&lt;<=... *t**n*<=≤<=90), given in the increasing order.
Print the number of minutes Limak will watch the game.
[ "3\n7 20 88\n", "9\n16 20 30 40 50 60 70 80 90\n", "9\n15 20 30 40 50 60 70 80 90\n" ]
[ "35\n", "15\n", "90\n" ]
In the first sample, minutes 21, 22, ..., 35 are all boring and thus Limak will turn TV off immediately after the 35-th minute. So, he would watch the game for 35 minutes. In the second sample, the first 15 minutes are boring. In the third sample, there are no consecutive 15 boring minutes. So, Limak will watch the w...
500
[ { "input": "3\n7 20 88", "output": "35" }, { "input": "9\n16 20 30 40 50 60 70 80 90", "output": "15" }, { "input": "9\n15 20 30 40 50 60 70 80 90", "output": "90" }, { "input": "30\n6 11 12 15 22 24 30 31 32 33 34 35 40 42 44 45 47 50 53 54 57 58 63 67 75 77 79 81 83 88", ...
1,613,565,966
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
62
204,800
n = int(input()) interesting_min = list(map(int, input().split())) watched_minutes = interesting_min[0] for i in range(n-1): if interesting_min[0] > 15: watched_minutes = 15 break elif interesting_min[0] <= 15: if interesting_min[i+1] - interesting_min[i] <= 15: wa...
Title: Bear and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak likes watching sports on TV. He is going to watch a game today. The game lasts 90 minutes and there are no breaks. Each minute can be either interesting or boring. If 15 consecutive minutes are boring then Lim...
```python n = int(input()) interesting_min = list(map(int, input().split())) watched_minutes = interesting_min[0] for i in range(n-1): if interesting_min[0] > 15: watched_minutes = 15 break elif interesting_min[0] <= 15: if interesting_min[i+1] - interesting_min[i] <= 15: ...
0
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,535,477,781
2,147,483,647
Python 3
OK
TESTS
40
171
409,600
import re print(['NO', 'YES'][re.search('.*h.*e.*l.*l.*o.*', input()) is not None])
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python import re print(['NO', 'YES'][re.search('.*h.*e.*l.*l.*o.*', input()) is not None]) ```
3.913737
893
A
Chess For Three
PROGRAMMING
900
[ "implementation" ]
null
null
Alex, Bob and Carl will soon participate in a team chess tournament. Since they are all in the same team, they have decided to practise really hard before the tournament. But it's a bit difficult for them because chess is a game for two players, not three. So they play with each other according to following rules: - ...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the number of games Alex, Bob and Carl played. Then *n* lines follow, describing the game log. *i*-th line contains one integer *a**i* (1<=≤<=*a**i*<=≤<=3) which is equal to 1 if Alex won *i*-th game, to 2 if Bob won *i*-th game and 3 if Carl won *i*-th gam...
Print YES if the situation described in the log was possible. Otherwise print NO.
[ "3\n1\n1\n2\n", "2\n1\n2\n" ]
[ "YES\n", "NO\n" ]
In the first example the possible situation is: 1. Alex wins, Carl starts playing instead of Bob; 1. Alex wins, Bob replaces Carl; 1. Bob wins. The situation in the second example is impossible because Bob loses the first game, so he cannot win the second one.
0
[ { "input": "3\n1\n1\n2", "output": "YES" }, { "input": "2\n1\n2", "output": "NO" }, { "input": "100\n2\n3\n1\n2\n3\n3\n3\n1\n1\n1\n1\n3\n3\n3\n3\n1\n2\n3\n3\n3\n3\n3\n3\n3\n1\n2\n2\n2\n3\n1\n1\n3\n3\n3\n3\n3\n3\n3\n3\n1\n2\n3\n3\n3\n1\n1\n1\n1\n3\n3\n3\n3\n1\n2\n3\n1\n2\n2\n2\n3\n3\n2\n1...
1,680,869,689
2,147,483,647
Python 3
OK
TESTS
37
46
0
n = int(input()) spectator = 3 for i in range(n): winner = int(input()) if winner == spectator: print("NO") exit() else: loser = 6 - (spectator + winner) spectator, player = loser, winner print("YES")
Title: Chess For Three Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alex, Bob and Carl will soon participate in a team chess tournament. Since they are all in the same team, they have decided to practise really hard before the tournament. But it's a bit difficult for them because chess ...
```python n = int(input()) spectator = 3 for i in range(n): winner = int(input()) if winner == spectator: print("NO") exit() else: loser = 6 - (spectator + winner) spectator, player = loser, winner print("YES") ```
3
34
A
Reconnaissance 2
PROGRAMMING
800
[ "implementation" ]
A. Reconnaissance 2
2
256
*n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So each of them will be less noticeable with the other. Output any pair of soldiers that can form a ...
The first line contains integer *n* (2<=≤<=*n*<=≤<=100) — amount of soldiers. Then follow the heights of the soldiers in their order in the circle — *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1000). The soldier heights are given in clockwise or counterclockwise direction.
Output two integers — indexes of neighbouring soldiers, who should form a reconnaissance unit. If there are many optimum solutions, output any of them. Remember, that the soldiers stand in a circle.
[ "5\n10 12 13 15 10\n", "4\n10 20 30 40\n" ]
[ "5 1\n", "1 2\n" ]
none
500
[ { "input": "5\n10 12 13 15 10", "output": "5 1" }, { "input": "4\n10 20 30 40", "output": "1 2" }, { "input": "6\n744 359 230 586 944 442", "output": "2 3" }, { "input": "5\n826 747 849 687 437", "output": "1 2" }, { "input": "5\n999 999 993 969 999", "output"...
1,690,876,477
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
62
0
def find_recon_unit(n, heights_list): min_diff = float('inf') idx1, idx2 = 0, 1 for i in range(n): diff = abs(heights_list[(i+1)%n] - heights_list[i]) if diff < min_diff: min_diff = diff idx1 = i + 1 idx2 = (i + 1 + 1) % n return idx1, idx...
Title: Reconnaissance 2 Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: *n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So...
```python def find_recon_unit(n, heights_list): min_diff = float('inf') idx1, idx2 = 0, 1 for i in range(n): diff = abs(heights_list[(i+1)%n] - heights_list[i]) if diff < min_diff: min_diff = diff idx1 = i + 1 idx2 = (i + 1 + 1) % n return...
0
964
A
Splits
PROGRAMMING
800
[ "math" ]
null
null
Let's define a split of $n$ as a nonincreasing sequence of positive integers, the sum of which is $n$. For example, the following sequences are splits of $8$: $[4, 4]$, $[3, 3, 2]$, $[2, 2, 1, 1, 1, 1]$, $[5, 2, 1]$. The following sequences aren't splits of $8$: $[1, 7]$, $[5, 4]$, $[11, -3]$, $[1, 1, 4, 1, 1]$. Th...
The first line contains one integer $n$ ($1 \leq n \leq 10^9$).
Output one integer — the answer to the problem.
[ "7\n", "8\n", "9\n" ]
[ "4\n", "5\n", "5\n" ]
In the first sample, there are following possible weights of splits of $7$: Weight 1: [$\textbf 7$] Weight 2: [$\textbf 3$, $\textbf 3$, 1] Weight 3: [$\textbf 2$, $\textbf 2$, $\textbf 2$, 1] Weight 7: [$\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$]
500
[ { "input": "7", "output": "4" }, { "input": "8", "output": "5" }, { "input": "9", "output": "5" }, { "input": "1", "output": "1" }, { "input": "286", "output": "144" }, { "input": "48", "output": "25" }, { "input": "941", "output": "471...
1,542,899,646
2,147,483,647
PyPy 3
OK
TESTS
63
140
0
def code3(n): print(n//2+1) code3(int(input()))
Title: Splits Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's define a split of $n$ as a nonincreasing sequence of positive integers, the sum of which is $n$. For example, the following sequences are splits of $8$: $[4, 4]$, $[3, 3, 2]$, $[2, 2, 1, 1, 1, 1]$, $[5, 2, 1]$. The foll...
```python def code3(n): print(n//2+1) code3(int(input())) ```
3
977
A
Wrong Subtraction
PROGRAMMING
800
[ "implementation" ]
null
null
Little girl Tanya is learning how to decrease a number by one, but she does it wrong with a number consisting of two or more digits. Tanya subtracts one from a number by the following algorithm: - if the last digit of the number is non-zero, she decreases the number by one; - if the last digit of the number is zero,...
The first line of the input contains two integer numbers $n$ and $k$ ($2 \le n \le 10^9$, $1 \le k \le 50$) — the number from which Tanya will subtract and the number of subtractions correspondingly.
Print one integer number — the result of the decreasing $n$ by one $k$ times. It is guaranteed that the result will be positive integer number.
[ "512 4\n", "1000000000 9\n" ]
[ "50\n", "1\n" ]
The first example corresponds to the following sequence: $512 \rightarrow 511 \rightarrow 510 \rightarrow 51 \rightarrow 50$.
0
[ { "input": "512 4", "output": "50" }, { "input": "1000000000 9", "output": "1" }, { "input": "131203 11", "output": "12" }, { "input": "999999999 50", "output": "9999" }, { "input": "999999999 49", "output": "99990" }, { "input": "131203 9", "outpu...
1,699,626,736
2,147,483,647
PyPy 3-64
OK
TESTS
11
46
0
num, count = map(int, input().split()) for i in range(count): if num % 10 == 0: num = num // 10 else: num -= 1 print(num)
Title: Wrong Subtraction Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little girl Tanya is learning how to decrease a number by one, but she does it wrong with a number consisting of two or more digits. Tanya subtracts one from a number by the following algorithm: - if the last digit ...
```python num, count = map(int, input().split()) for i in range(count): if num % 10 == 0: num = num // 10 else: num -= 1 print(num) ```
3
572
A
Arrays
PROGRAMMING
900
[ "sortings" ]
null
null
You are given two arrays *A* and *B* consisting of integers, sorted in non-decreasing order. Check whether it is possible to choose *k* numbers in array *A* and choose *m* numbers in array *B* so that any number chosen in the first array is strictly less than any number chosen in the second array.
The first line contains two integers *n**A*,<=*n**B* (1<=≤<=*n**A*,<=*n**B*<=≤<=105), separated by a space — the sizes of arrays *A* and *B*, correspondingly. The second line contains two integers *k* and *m* (1<=≤<=*k*<=≤<=*n**A*,<=1<=≤<=*m*<=≤<=*n**B*), separated by a space. The third line contains *n**A* numbers *...
Print "YES" (without the quotes), if you can choose *k* numbers in array *A* and *m* numbers in array *B* so that any number chosen in array *A* was strictly less than any number chosen in array *B*. Otherwise, print "NO" (without the quotes).
[ "3 3\n2 1\n1 2 3\n3 4 5\n", "3 3\n3 3\n1 2 3\n3 4 5\n", "5 2\n3 1\n1 1 1 1 1\n2 2\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first sample test you can, for example, choose numbers 1 and 2 from array *A* and number 3 from array *B* (1 &lt; 3 and 2 &lt; 3). In the second sample test the only way to choose *k* elements in the first array and *m* elements in the second one is to choose all numbers in both arrays, but then not all the num...
500
[ { "input": "3 3\n2 1\n1 2 3\n3 4 5", "output": "YES" }, { "input": "3 3\n3 3\n1 2 3\n3 4 5", "output": "NO" }, { "input": "5 2\n3 1\n1 1 1 1 1\n2 2", "output": "YES" }, { "input": "3 5\n1 1\n5 5 5\n5 5 5 5 5", "output": "NO" }, { "input": "1 1\n1 1\n1\n1", "ou...
1,674,446,067
2,147,483,647
Python 3
OK
TESTS
52
109
10,240,000
# def sol(): # for i in range(len(lst)): # for j in range(i+1, len(lst)): # if lst[i][1] > lst[j][1]: # return True # return False # # # n = int(input()) # lst = [] # lstb = [] # for i in range(n): # p, q = [int(i) for i in input().split()] # lst.append((...
Title: Arrays Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two arrays *A* and *B* consisting of integers, sorted in non-decreasing order. Check whether it is possible to choose *k* numbers in array *A* and choose *m* numbers in array *B* so that any number chosen in the fi...
```python # def sol(): # for i in range(len(lst)): # for j in range(i+1, len(lst)): # if lst[i][1] > lst[j][1]: # return True # return False # # # n = int(input()) # lst = [] # lstb = [] # for i in range(n): # p, q = [int(i) for i in input().split()] # ls...
3
940
B
Our Tanya is Crying Out Loud
PROGRAMMING
1,400
[ "dp", "greedy" ]
null
null
Right now she actually isn't. But she will be, if you don't solve this problem. You are given integers *n*, *k*, *A* and *B*. There is a number *x*, which is initially equal to *n*. You are allowed to perform two types of operations: 1. Subtract 1 from *x*. This operation costs you *A* coins. 1. Divide *x* by *k*....
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=2·109). The second line contains a single integer *k* (1<=≤<=*k*<=≤<=2·109). The third line contains a single integer *A* (1<=≤<=*A*<=≤<=2·109). The fourth line contains a single integer *B* (1<=≤<=*B*<=≤<=2·109).
Output a single integer — the minimum amount of coins you have to pay to make *x* equal to 1.
[ "9\n2\n3\n1\n", "5\n5\n2\n20\n", "19\n3\n4\n2\n" ]
[ "6\n", "8\n", "12\n" ]
In the first testcase, the optimal strategy is as follows: - Subtract 1 from *x* (9 → 8) paying 3 coins. - Divide *x* by 2 (8 → 4) paying 1 coin. - Divide *x* by 2 (4 → 2) paying 1 coin. - Divide *x* by 2 (2 → 1) paying 1 coin. The total cost is 6 coins. In the second test case the optimal strategy is to subtra...
1,250
[ { "input": "9\n2\n3\n1", "output": "6" }, { "input": "5\n5\n2\n20", "output": "8" }, { "input": "19\n3\n4\n2", "output": "12" }, { "input": "1845999546\n999435865\n1234234\n2323423", "output": "1044857680578777" }, { "input": "1604353664\n1604353665\n9993432\n1", ...
1,519,825,330
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
3
1,000
5,632,000
x = int(input()) k = int(input()) a = int(input()) b = int(input()) price = 0 while x != 1: if x % k != 0: x -= 1 price += a elif (x - x // k) * a < b: price = (x - x // k) * a x = x // k else: x = x // k price += b print(price)
Title: Our Tanya is Crying Out Loud Time Limit: None seconds Memory Limit: None megabytes Problem Description: Right now she actually isn't. But she will be, if you don't solve this problem. You are given integers *n*, *k*, *A* and *B*. There is a number *x*, which is initially equal to *n*. You are allowed to perf...
```python x = int(input()) k = int(input()) a = int(input()) b = int(input()) price = 0 while x != 1: if x % k != 0: x -= 1 price += a elif (x - x // k) * a < b: price = (x - x // k) * a x = x // k else: x = x // k price += b print(price) ``...
0
789
A
Anastasia and pebbles
PROGRAMMING
1,100
[ "implementation", "math" ]
null
null
Anastasia loves going for a walk in Central Uzhlyandian Park. But she became uninterested in simple walking, so she began to collect Uzhlyandian pebbles. At first, she decided to collect all the pebbles she could find in the park. She has only two pockets. She can put at most *k* pebbles in each pocket at the same tim...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=105, 1<=≤<=*k*<=≤<=109) — the number of different pebble types and number of pebbles Anastasia can place in one pocket. The second line contains *n* integers *w*1,<=*w*2,<=...,<=*w**n* (1<=≤<=*w**i*<=≤<=104) — number of pebbles of each type.
The only line of output contains one integer — the minimum number of days Anastasia needs to collect all the pebbles.
[ "3 2\n2 3 4\n", "5 4\n3 1 8 9 7\n" ]
[ "3\n", "5\n" ]
In the first sample case, Anastasia can collect all pebbles of the first type on the first day, of second type — on the second day, and of third type — on the third day. Optimal sequence of actions in the second sample case: - In the first day Anastasia collects 8 pebbles of the third type. - In the second day she...
500
[ { "input": "3 2\n2 3 4", "output": "3" }, { "input": "5 4\n3 1 8 9 7", "output": "5" }, { "input": "1 22\n1", "output": "1" }, { "input": "3 57\n78 165 54", "output": "3" }, { "input": "5 72\n74 10 146 189 184", "output": "6" }, { "input": "9 13\n132 8...
1,492,592,563
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
108
12,185,600
from math import ceil n,k = map(int,input().split()) lst = list(map(int,input().split())) print(ceil(sum(ceil(val/k) for val in lst)//2)+1)
Title: Anastasia and pebbles Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anastasia loves going for a walk in Central Uzhlyandian Park. But she became uninterested in simple walking, so she began to collect Uzhlyandian pebbles. At first, she decided to collect all the pebbles she could ...
```python from math import ceil n,k = map(int,input().split()) lst = list(map(int,input().split())) print(ceil(sum(ceil(val/k) for val in lst)//2)+1) ```
0
1,011
B
Planning The Expedition
PROGRAMMING
1,200
[ "binary search", "brute force", "implementation" ]
null
null
Natasha is planning an expedition to Mars for $n$ people. One of the important tasks is to provide food for each participant. The warehouse has $m$ daily food packages. Each package has some food type $a_i$. Each participant must eat exactly one food package each day. Due to extreme loads, each participant must eat t...
The first line contains two integers $n$ and $m$ ($1 \le n \le 100$, $1 \le m \le 100$) — the number of the expedition participants and the number of the daily food packages available. The second line contains sequence of integers $a_1, a_2, \dots, a_m$ ($1 \le a_i \le 100$), where $a_i$ is the type of $i$-th food pac...
Print the single integer — the number of days the expedition can last. If it is not possible to plan the expedition for even one day, print 0.
[ "4 10\n1 5 2 1 1 1 2 5 7 2\n", "100 1\n1\n", "2 5\n5 4 3 2 1\n", "3 9\n42 42 42 42 42 42 42 42 42\n" ]
[ "2\n", "0\n", "1\n", "3\n" ]
In the first example, Natasha can assign type $1$ food to the first participant, the same type $1$ to the second, type $5$ to the third and type $2$ to the fourth. In this case, the expedition can last for $2$ days, since each participant can get two food packages of his food type (there will be used $4$ packages of ty...
1,000
[ { "input": "4 10\n1 5 2 1 1 1 2 5 7 2", "output": "2" }, { "input": "100 1\n1", "output": "0" }, { "input": "2 5\n5 4 3 2 1", "output": "1" }, { "input": "3 9\n42 42 42 42 42 42 42 42 42", "output": "3" }, { "input": "1 1\n100", "output": "1" }, { "inp...
1,630,507,756
2,147,483,647
PyPy 3
OK
TESTS
31
108
21,401,600
n, m = map(int, input().split()) x = list(map(int, input().split())) data = 101 * [0] for item in x: data[item] += 1 max_ans = m // n while max_ans > 0: diff = m - max_ans * n remnants = 0 for item in data: remnants += item % max_ans if remnants > diff: max_ans -= 1 else: ...
Title: Planning The Expedition Time Limit: None seconds Memory Limit: None megabytes Problem Description: Natasha is planning an expedition to Mars for $n$ people. One of the important tasks is to provide food for each participant. The warehouse has $m$ daily food packages. Each package has some food type $a_i$. E...
```python n, m = map(int, input().split()) x = list(map(int, input().split())) data = 101 * [0] for item in x: data[item] += 1 max_ans = m // n while max_ans > 0: diff = m - max_ans * n remnants = 0 for item in data: remnants += item % max_ans if remnants > diff: max_ans -= 1 els...
3
0
none
none
none
0
[ "none" ]
null
null
Valentin participates in a show called "Shockers". The rules are quite easy: jury selects one letter which Valentin doesn't know. He should make a small speech, but every time he pronounces a word that contains the selected letter, he receives an electric shock. He can make guesses which letter is selected, but for eac...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of actions Valentin did. The next *n* lines contain descriptions of his actions, each line contains description of one action. Each action can be of one of three types: 1. Valentin pronounced some word and didn't get an electric shock. Th...
Output a single integer — the number of electric shocks that Valentin could have avoided if he had told the selected letter just after it became uniquely determined.
[ "5\n! abc\n. ad\n. b\n! cd\n? c\n", "8\n! hello\n! codeforces\n? c\n. o\n? d\n? h\n. l\n? e\n", "7\n! ababahalamaha\n? a\n? b\n? a\n? b\n? a\n? h\n" ]
[ "1\n", "2\n", "0\n" ]
In the first test case after the first action it becomes clear that the selected letter is one of the following: *a*, *b*, *c*. After the second action we can note that the selected letter is not *a*. Valentin tells word "b" and doesn't get a shock. After that it is clear that the selected letter is *c*, but Valentin p...
0
[ { "input": "5\n! abc\n. ad\n. b\n! cd\n? c", "output": "1" }, { "input": "8\n! hello\n! codeforces\n? c\n. o\n? d\n? h\n. l\n? e", "output": "2" }, { "input": "7\n! ababahalamaha\n? a\n? b\n? a\n? b\n? a\n? h", "output": "0" }, { "input": "4\n! abcd\n! cdef\n? d\n? c", "o...
1,514,075,514
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
5,529,600
n=int(input()) res=[0 for i in range(26)] a=[] if n==1: print(0) else: a=set([]) flag=1 for i in range(n-1): line=input().split() if line[0]==".": for t in line[1]: res[ord(t)-97]=1 elif line[0]=="?": res[ord(line[1])-97]=1 ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valentin participates in a show called "Shockers". The rules are quite easy: jury selects one letter which Valentin doesn't know. He should make a small speech, but every time he pronounces a word that contains the selected letter...
```python n=int(input()) res=[0 for i in range(26)] a=[] if n==1: print(0) else: a=set([]) flag=1 for i in range(n-1): line=input().split() if line[0]==".": for t in line[1]: res[ord(t)-97]=1 elif line[0]=="?": res[ord(line[1]...
0
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,618,044,830
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
0
n = int(input()) op = {} cl = {} for i in range(n): a, b = [int(x) for x in input().split()] if a in op: op[a].append(b) else: op[a] = [b] if a != b: if b in cl: cl[b].append(a) else: cl[b] = [a] print(len(op) - len(cl))
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 n = int(input()) op = {} cl = {} for i in range(n): a, b = [int(x) for x in input().split()] if a in op: op[a].append(b) else: op[a] = [b] if a != b: if b in cl: cl[b].append(a) else: cl[b] = [a] print(len(op) - len(cl)) ```
0
988
B
Substrings Sort
PROGRAMMING
1,100
[ "sortings", "strings" ]
null
null
You are given $n$ strings. Each string consists of lowercase English letters. Rearrange (reorder) the given strings in such a way that for every string, all strings that are placed before it are its substrings. String $a$ is a substring of string $b$ if it is possible to choose several consecutive letters in $b$ in su...
The first line contains an integer $n$ ($1 \le n \le 100$) — the number of strings. The next $n$ lines contain the given strings. The number of letters in each string is from $1$ to $100$, inclusive. Each string consists of lowercase English letters. Some strings might be equal.
If it is impossible to reorder $n$ given strings in required order, print "NO" (without quotes). Otherwise print "YES" (without quotes) and $n$ given strings in required order.
[ "5\na\naba\nabacaba\nba\naba\n", "5\na\nabacaba\nba\naba\nabab\n", "3\nqwerty\nqwerty\nqwerty\n" ]
[ "YES\na\nba\naba\naba\nabacaba\n", "NO\n", "YES\nqwerty\nqwerty\nqwerty\n" ]
In the second example you cannot reorder the strings because the string "abab" is not a substring of the string "abacaba".
0
[ { "input": "5\na\naba\nabacaba\nba\naba", "output": "YES\na\nba\naba\naba\nabacaba" }, { "input": "5\na\nabacaba\nba\naba\nabab", "output": "NO" }, { "input": "3\nqwerty\nqwerty\nqwerty", "output": "YES\nqwerty\nqwerty\nqwerty" }, { "input": "1\nwronganswer", "output": "Y...
1,618,050,634
2,147,483,647
PyPy 3
OK
TESTS
56
186
3,993,600
import sys input=sys.stdin.readline from collections import defaultdict as dc from collections import Counter from bisect import bisect_right, bisect_left import math from operator import itemgetter from heapq import heapify, heappop, heappush from queue import PriorityQueue as pq n=int(input()) l=[] for _ i...
Title: Substrings Sort Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given $n$ strings. Each string consists of lowercase English letters. Rearrange (reorder) the given strings in such a way that for every string, all strings that are placed before it are its substrings. String ...
```python import sys input=sys.stdin.readline from collections import defaultdict as dc from collections import Counter from bisect import bisect_right, bisect_left import math from operator import itemgetter from heapq import heapify, heappop, heappush from queue import PriorityQueue as pq n=int(input()) l=[...
3
205
A
Little Elephant and Rozdil
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elephant doesn't like to spend much time on travelling, so for his journey he will choose a town that needs minimum ti...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of cities. The next line contains *n* integers, separated by single spaces: the *i*-th integer represents the time needed to go from town Rozdil to the *i*-th town. The time values are positive integers, not exceeding 109. You can consider t...
Print the answer on a single line — the number of the town the Little Elephant will go to. If there are multiple cities with minimum travel time, print "Still Rozdil" (without the quotes).
[ "2\n7 4\n", "7\n7 4 47 100 4 9 12\n" ]
[ "2\n", "Still Rozdil\n" ]
In the first sample there are only two cities where the Little Elephant can go. The travel time for the first town equals 7, to the second one — 4. The town which is closest to Rodzil (the only one) is the second one, so the answer is 2. In the second sample the closest cities are cities two and five, the travelling t...
500
[ { "input": "2\n7 4", "output": "2" }, { "input": "7\n7 4 47 100 4 9 12", "output": "Still Rozdil" }, { "input": "1\n47", "output": "1" }, { "input": "2\n1000000000 1000000000", "output": "Still Rozdil" }, { "input": "7\n7 6 5 4 3 2 1", "output": "7" }, { ...
1,613,144,238
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
Still Rozdil n=int(input()) arr=list(map(int,input().split())) mi1=min(arr) ind1=arr.index(mi1) co=arr.count(mi1) if co>1: print("Still Rozdil") else: print(ind1+1)
Title: Little Elephant and Rozdil Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elepha...
```python Still Rozdil n=int(input()) arr=list(map(int,input().split())) mi1=min(arr) ind1=arr.index(mi1) co=arr.count(mi1) if co>1: print("Still Rozdil") else: print(ind1+1) ```
-1
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,665,509,414
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
s=input() c=0,e=0 for i in range(len(s)+1): if(ord(s[i])>65 and ord(s[i])<90): c+=1 else: e+=1 if(c>e): print(s.upper()) else: print(s.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 s=input() c=0,e=0 for i in range(len(s)+1): if(ord(s[i])>65 and ord(s[i])<90): c+=1 else: e+=1 if(c>e): print(s.upper()) else: print(s.lower()) ```
-1
129
A
Cookies
PROGRAMMING
900
[ "implementation" ]
null
null
Olga came to visit the twins Anna and Maria and saw that they have many cookies. The cookies are distributed into bags. As there are many cookies, Olga decided that it's no big deal if she steals a bag. However, she doesn't want the sisters to quarrel because of nothing when they divide the cookies. That's why Olga wan...
The first line contains the only integer *n* (1<=≤<=*n*<=≤<=100) — the number of cookie bags Anna and Maria have. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=100) — the number of cookies in the *i*-th bag.
Print in the only line the only number — the sought number of ways. If there are no such ways print 0.
[ "1\n1\n", "10\n1 2 2 3 4 4 4 2 2 2\n", "11\n2 2 2 2 2 2 2 2 2 2 99\n" ]
[ "1\n", "8\n", "1\n" ]
In the first sample Olga should take the only bag so that the twins ended up with the even number of cookies. In the second sample Olga can take any of five bags with two cookies or any of three bags with four cookies — 5 + 3 = 8 ways in total. In the third sample, no matter which bag with two cookies Olga chooses, t...
500
[ { "input": "1\n1", "output": "1" }, { "input": "10\n1 2 2 3 4 4 4 2 2 2", "output": "8" }, { "input": "11\n2 2 2 2 2 2 2 2 2 2 99", "output": "1" }, { "input": "2\n1 1", "output": "0" }, { "input": "2\n2 2", "output": "2" }, { "input": "2\n1 2", "o...
1,508,199,188
2,147,483,647
Python 3
OK
TESTS
52
124
5,529,600
n = int(input()) a = [int(a) for a in input().split()] sum = 0 for x in a: sum += x print(len([a for a in a if a % 2 == sum % 2]))
Title: Cookies Time Limit: None seconds Memory Limit: None megabytes Problem Description: Olga came to visit the twins Anna and Maria and saw that they have many cookies. The cookies are distributed into bags. As there are many cookies, Olga decided that it's no big deal if she steals a bag. However, she doesn't wan...
```python n = int(input()) a = [int(a) for a in input().split()] sum = 0 for x in a: sum += x print(len([a for a in a if a % 2 == sum % 2])) ```
3
950
A
Left-handers, Right-handers and Ambidexters
PROGRAMMING
800
[ "implementation", "math" ]
null
null
You are at a water bowling training. There are *l* people who play with their left hand, *r* people, who play with their right hand, and *a* ambidexters, who can play with left or right hand. The coach decided to form a team of even number of players, exactly half of the players should play with their right hand, and ...
The only line contains three integers *l*, *r* and *a* (0<=≤<=*l*,<=*r*,<=*a*<=≤<=100) — the number of left-handers, the number of right-handers and the number of ambidexters at the training.
Print a single even integer — the maximum number of players in the team. It is possible that the team can only have zero number of players.
[ "1 4 2\n", "5 5 5\n", "0 2 0\n" ]
[ "6\n", "14\n", "0\n" ]
In the first example you can form a team of 6 players. You should take the only left-hander and two ambidexters to play with left hand, and three right-handers to play with right hand. The only person left can't be taken into the team. In the second example you can form a team of 14 people. You have to take all five l...
500
[ { "input": "1 4 2", "output": "6" }, { "input": "5 5 5", "output": "14" }, { "input": "0 2 0", "output": "0" }, { "input": "30 70 34", "output": "128" }, { "input": "89 32 24", "output": "112" }, { "input": "89 44 77", "output": "210" }, { ...
1,648,653,595
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
11
77
2,150,400
l,r,a=map(int,input().split()) if l==r and l==a: if l%2==0: z=l+r+a else: z=l+r+a-1 elif abs(l-r)>a: if l<r: s=l+a if s>r: z=2*r else: z=2*s elif r<l: s=r+a if s>l: z=2*l else: ...
Title: Left-handers, Right-handers and Ambidexters Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are at a water bowling training. There are *l* people who play with their left hand, *r* people, who play with their right hand, and *a* ambidexters, who can play with left or right hand....
```python l,r,a=map(int,input().split()) if l==r and l==a: if l%2==0: z=l+r+a else: z=l+r+a-1 elif abs(l-r)>a: if l<r: s=l+a if s>r: z=2*r else: z=2*s elif r<l: s=r+a if s>l: z=2*l else: ...
-1
724
A
Checking the Calendar
PROGRAMMING
1,000
[ "implementation" ]
null
null
You are given names of two days of the week. Please, determine whether it is possible that during some non-leap year the first day of some month was equal to the first day of the week you are given, while the first day of the next month was equal to the second day of the week you are given. Both months should belong t...
The input consists of two lines, each of them containing the name of exactly one day of the week. It's guaranteed that each string in the input is from the set "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday".
Print "YES" (without quotes) if such situation is possible during some non-leap year. Otherwise, print "NO" (without quotes).
[ "monday\ntuesday\n", "sunday\nsunday\n", "saturday\ntuesday\n" ]
[ "NO\n", "YES\n", "YES\n" ]
In the second sample, one can consider February 1 and March 1 of year 2015. Both these days were Sundays. In the third sample, one can consider July 1 and August 1 of year 2017. First of these two days is Saturday, while the second one is Tuesday.
500
[ { "input": "monday\ntuesday", "output": "NO" }, { "input": "sunday\nsunday", "output": "YES" }, { "input": "saturday\ntuesday", "output": "YES" }, { "input": "tuesday\nthursday", "output": "YES" }, { "input": "friday\nwednesday", "output": "NO" }, { "i...
1,475,929,200
300
Python 3
OK
TESTS
68
78
4,608,000
days = "monday tuesday wednesday thursday friday saturday sunday".split() offs = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] d1 = days.index(input()) d2 = days.index(input()) for o in offs: if (d1 + o) % 7 == d2: print("YES") break else: print("NO")
Title: Checking the Calendar Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given names of two days of the week. Please, determine whether it is possible that during some non-leap year the first day of some month was equal to the first day of the week you are given, while the fir...
```python days = "monday tuesday wednesday thursday friday saturday sunday".split() offs = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] d1 = days.index(input()) d2 = days.index(input()) for o in offs: if (d1 + o) % 7 == d2: print("YES") break else: print("NO") ```
3
55
A
Flea travel
PROGRAMMING
1,200
[ "implementation", "math" ]
A. Flea travel
1
256
A flea is sitting at one of the *n* hassocks, arranged in a circle, at the moment. After minute number *k* the flea jumps through *k*<=-<=1 hassoсks (clockwise). For example, after the first minute the flea jumps to the neighboring hassock. You should answer: will the flea visit all the hassocks or not. We assume that ...
The only line contains single integer: 1<=≤<=*n*<=≤<=1000 — number of hassocks.
Output "YES" if all the hassocks will be visited and "NO" otherwise.
[ "1\n", "3\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "1", "output": "YES" }, { "input": "3", "output": "NO" }, { "input": "2", "output": "YES" }, { "input": "4", "output": "YES" }, { "input": "5", "output": "NO" }, { "input": "6", "output": "NO" }, { "input": "7", "output": "NO...
1,588,666,096
2,147,483,647
PyPy 3
OK
TESTS
83
155
0
ka=int(input()) if(ka&(ka-1)>0): print("NO") else: print("YES")
Title: Flea travel Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: A flea is sitting at one of the *n* hassocks, arranged in a circle, at the moment. After minute number *k* the flea jumps through *k*<=-<=1 hassoсks (clockwise). For example, after the first minute the flea jumps to the neighbo...
```python ka=int(input()) if(ka&(ka-1)>0): print("NO") else: print("YES") ```
3.9225
691
A
Fashion in Berland
PROGRAMMING
1,000
[ "implementation" ]
null
null
According to rules of the Berland fashion, a jacket should be fastened by all the buttons except only one, but not necessarily it should be the last one. Also if the jacket has only one button, it should be fastened, so the jacket will not swinging open. You are given a jacket with *n* buttons. Determine if it is fast...
The first line contains integer *n* (1<=≤<=*n*<=≤<=1000) — the number of buttons on the jacket. The second line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=1). The number *a**i*<==<=0 if the *i*-th button is not fastened. Otherwise *a**i*<==<=1.
In the only line print the word "YES" if the jacket is fastened in a right way. Otherwise print the word "NO".
[ "3\n1 0 1\n", "3\n1 0 0\n" ]
[ "YES\n", "NO\n" ]
none
0
[ { "input": "3\n1 0 1", "output": "YES" }, { "input": "3\n1 0 0", "output": "NO" }, { "input": "3\n1 1 0", "output": "YES" }, { "input": "3\n1 1 1", "output": "NO" }, { "input": "3\n0 0 1", "output": "NO" }, { "input": "3\n0 0 0", "output": "NO" }...
1,538,055,614
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
108
0
def check_jacket(_a, _n): un_fastened = 0 if _n == 1: if _a[0] == 0: return 'YES' else: return 'YES' else: for i in range(_n): un_fastened += (1 - _a[i]) if un_fastened > 1: return 'NO' return 'YES' n = int(inp...
Title: Fashion in Berland Time Limit: None seconds Memory Limit: None megabytes Problem Description: According to rules of the Berland fashion, a jacket should be fastened by all the buttons except only one, but not necessarily it should be the last one. Also if the jacket has only one button, it should be fastened,...
```python def check_jacket(_a, _n): un_fastened = 0 if _n == 1: if _a[0] == 0: return 'YES' else: return 'YES' else: for i in range(_n): un_fastened += (1 - _a[i]) if un_fastened > 1: return 'NO' return 'YES' n...
0
282
A
Bit++
PROGRAMMING
800
[ "implementation" ]
null
null
The classic programming language of Bitland is Bit++. This language is so peculiar and complicated. The language is that peculiar as it has exactly one variable, called *x*. Also, there are two operations: - Operation ++ increases the value of variable *x* by 1. - Operation -- decreases the value of variable *x* by...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=150) — the number of statements in the programme. Next *n* lines contain a statement each. Each statement contains exactly one operation (++ or --) and exactly one variable *x* (denoted as letter «X»). Thus, there are no empty statements. The operation and th...
Print a single integer — the final value of *x*.
[ "1\n++X\n", "2\nX++\n--X\n" ]
[ "1\n", "0\n" ]
none
500
[ { "input": "1\n++X", "output": "1" }, { "input": "2\nX++\n--X", "output": "0" }, { "input": "3\n++X\n++X\n++X", "output": "3" }, { "input": "2\n--X\n--X", "output": "-2" }, { "input": "5\n++X\n--X\n++X\n--X\n--X", "output": "-1" }, { "input": "28\nX--\...
1,697,265,656
2,147,483,647
Python 3
OK
TESTS
36
46
0
s=0 for i in range(int(input())): x=input() if '+' in x: s+=1 elif '-' in x: s-=1 print(s)
Title: Bit++ Time Limit: None seconds Memory Limit: None megabytes Problem Description: The classic programming language of Bitland is Bit++. This language is so peculiar and complicated. The language is that peculiar as it has exactly one variable, called *x*. Also, there are two operations: - Operation ++ incre...
```python s=0 for i in range(int(input())): x=input() if '+' in x: s+=1 elif '-' in x: s-=1 print(s) ```
3
825
A
Binary Protocol
PROGRAMMING
1,100
[ "implementation" ]
null
null
Polycarp has just invented a new binary protocol for data transmission. He is encoding positive integer decimal number to binary string using following algorithm: - Each digit is represented with number of '1' characters equal to the value of that digit (for 0 it is zero ones). - Digits are written one by one in ord...
The first line contains one integer number *n* (1<=≤<=*n*<=≤<=89) — length of the string *s*. The second line contains string *s* — sequence of '0' and '1' characters, number in its encoded format. It is guaranteed that the number corresponding to the string is positive and doesn't exceed 109. The string always starts...
Print the decoded number.
[ "3\n111\n", "9\n110011101\n" ]
[ "3\n", "2031\n" ]
none
0
[ { "input": "3\n111", "output": "3" }, { "input": "9\n110011101", "output": "2031" }, { "input": "1\n1", "output": "1" }, { "input": "3\n100", "output": "100" }, { "input": "5\n10001", "output": "1001" }, { "input": "14\n11001100011000", "output": "...
1,610,621,025
585
PyPy 3
OK
TESTS
13
93
0
def solve(): n = int(input()) s = input() k = 0 r = '' for c in s: if c == '0': r += str(k) k = 0 else: k += 1 r += str(k) return r print(solve())
Title: Binary Protocol Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp has just invented a new binary protocol for data transmission. He is encoding positive integer decimal number to binary string using following algorithm: - Each digit is represented with number of '1' charact...
```python def solve(): n = int(input()) s = input() k = 0 r = '' for c in s: if c == '0': r += str(k) k = 0 else: k += 1 r += str(k) return r print(solve()) ```
3
682
B
Alyona and Mex
PROGRAMMING
1,200
[ "sortings" ]
null
null
Someone gave Alyona an array containing *n* positive integers *a*1,<=*a*2,<=...,<=*a**n*. In one operation, Alyona can choose any element of the array and decrease it, i.e. replace with any positive integer that is smaller than the current one. Alyona can repeat this operation as many times as she wants. In particular,...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of elements in the Alyona's array. The second line of the input contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the elements of the array.
Print one positive integer — the maximum possible value of mex of the array after Alyona applies some (possibly none) operations.
[ "5\n1 3 3 3 6\n", "2\n2 1\n" ]
[ "5\n", "3\n" ]
In the first sample case if one will decrease the second element value to 2 and the fifth element value to 4 then the mex value of resulting array 1 2 3 3 4 will be equal to 5. To reach the answer to the second sample case one must not decrease any of the array elements.
1,000
[ { "input": "5\n1 3 3 3 6", "output": "5" }, { "input": "2\n2 1", "output": "3" }, { "input": "1\n1", "output": "2" }, { "input": "1\n1000000000", "output": "2" }, { "input": "1\n2", "output": "2" }, { "input": "2\n1 1", "output": "2" }, { "...
1,467,685,120
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
7
1,000
6,144,000
import sys file=sys.stdin.read().split() n,a=int(file[0]),file[1:] m=1 for i in range(n): if i==0 or int(a[i])>int(a[i-1])+1: for j in range(i+1,n): if a[i]>a[j]: a[i],a[j]=a[j],a[i] if int(a[i])>=m: m+=1 print(m)
Title: Alyona and Mex Time Limit: None seconds Memory Limit: None megabytes Problem Description: Someone gave Alyona an array containing *n* positive integers *a*1,<=*a*2,<=...,<=*a**n*. In one operation, Alyona can choose any element of the array and decrease it, i.e. replace with any positive integer that is small...
```python import sys file=sys.stdin.read().split() n,a=int(file[0]),file[1:] m=1 for i in range(n): if i==0 or int(a[i])>int(a[i-1])+1: for j in range(i+1,n): if a[i]>a[j]: a[i],a[j]=a[j],a[i] if int(a[i])>=m: m+=1 print(m) ```
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,676,809,962
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
0
m,n,a=int(input()),int(input()),int(input()) t=int(m/a)+int(n/a)+2 print(t)
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 m,n,a=int(input()),int(input()),int(input()) t=int(m/a)+int(n/a)+2 print(t) ```
-1
869
B
The Eternal Immortality
PROGRAMMING
1,100
[ "math" ]
null
null
Even if the world is full of counterfeits, I still regard it as wonderful. Pile up herbs and incense, and arise again from the flames and ashes of its predecessor — as is known to many, the phoenix does it like this. The phoenix has a rather long lifespan, and reincarnates itself once every *a*! years. Here *a*! deno...
The first and only line of input contains two space-separated integers *a* and *b* (0<=≤<=*a*<=≤<=*b*<=≤<=1018).
Output one line containing a single decimal digit — the last digit of the value that interests Koyomi.
[ "2 4\n", "0 10\n", "107 109\n" ]
[ "2\n", "0\n", "2\n" ]
In the first example, the last digit of <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/99c47ca8b182f097e38094d12f0c06ce0b081b76.png" style="max-width: 100.0%;max-height: 100.0%;"/> is 2; In the second example, the last digit of <img align="middle" class="tex-formula" src="https://espresso...
1,000
[ { "input": "2 4", "output": "2" }, { "input": "0 10", "output": "0" }, { "input": "107 109", "output": "2" }, { "input": "10 13", "output": "6" }, { "input": "998244355 998244359", "output": "4" }, { "input": "999999999000000000 1000000000000000000", ...
1,507,547,366
2,147,483,647
Python 3
OK
TESTS
63
62
0
a, b = input().split() a, b = int(a), int(b) if (b - a) <= 10: prod = 1 for k in range(a + 1, b + 1): prod *= (k % 10) prod %= 10 print(prod) else: print(0)
Title: The Eternal Immortality Time Limit: None seconds Memory Limit: None megabytes Problem Description: Even if the world is full of counterfeits, I still regard it as wonderful. Pile up herbs and incense, and arise again from the flames and ashes of its predecessor — as is known to many, the phoenix does it like...
```python a, b = input().split() a, b = int(a), int(b) if (b - a) <= 10: prod = 1 for k in range(a + 1, b + 1): prod *= (k % 10) prod %= 10 print(prod) else: print(0) ```
3
7
A
Kalevitch and Chess
PROGRAMMING
1,100
[ "brute force", "constructive algorithms" ]
A. Kalevitch and Chess
2
64
A famous Berland's painter Kalevitch likes to shock the public. One of his last obsessions is chess. For more than a thousand years people have been playing this old game on uninteresting, monotonous boards. Kalevitch decided to put an end to this tradition and to introduce a new attitude to chessboards. As before, th...
The input file contains 8 lines, each of the lines contains 8 characters. The given matrix describes the client's requirements, W character stands for a white square, and B character — for a square painted black. It is guaranteed that client's requirments can be fulfilled with a sequence of allowed strokes (vertical/c...
Output the only number — the minimum amount of rows and columns that Kalevitch has to paint on the white chessboard to meet the client's requirements.
[ "WWWBWWBW\nBBBBBBBB\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\n", "WWWWWWWW\nBBBBBBBB\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\n" ]
[ "3\n", "1\n" ]
none
0
[ { "input": "WWWBWWBW\nBBBBBBBB\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW", "output": "3" }, { "input": "WWWWWWWW\nBBBBBBBB\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW", "output": "1" }, { "input": "WWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWW...
1,622,174,093
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
60
0
W=0 B=0 lt=[] lines = [] while True: line = input() if line: lines.append(line) else: break st=str(lines) a=str(st[2:10]) b=str(st[12:20]) c=str(st[22:30]) d=str(st[32:40]) e=str(st[42:50]) f=str(st[52:60]) g=str(st[62:70]) h=str(st[72:80]) for i in range(8): lt.appen...
Title: Kalevitch and Chess Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: A famous Berland's painter Kalevitch likes to shock the public. One of his last obsessions is chess. For more than a thousand years people have been playing this old game on uninteresting, monotonous boards. Kalevitch de...
```python W=0 B=0 lt=[] lines = [] while True: line = input() if line: lines.append(line) else: break st=str(lines) a=str(st[2:10]) b=str(st[12:20]) c=str(st[22:30]) d=str(st[32:40]) e=str(st[42:50]) f=str(st[52:60]) g=str(st[62:70]) h=str(st[72:80]) for i in range(8): ...
-1
938
A
Word Correction
PROGRAMMING
800
[ "implementation" ]
null
null
Victor tries to write his own text editor, with word correction included. However, the rules of word correction are really strange. Victor thinks that if a word contains two consecutive vowels, then it's kinda weird and it needs to be replaced. So the word corrector works in such a way: as long as there are two consec...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the number of letters in word *s* before the correction. The second line contains a string *s* consisting of exactly *n* lowercase Latin letters — the word before the correction.
Output the word *s* after the correction.
[ "5\nweird\n", "4\nword\n", "5\naaeaa\n" ]
[ "werd\n", "word\n", "a\n" ]
Explanations of the examples: 1. There is only one replace: weird <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> werd;1. No replace needed since there are no two consecutive vowels;1. aaeaa <i...
0
[ { "input": "5\nweird", "output": "werd" }, { "input": "4\nword", "output": "word" }, { "input": "5\naaeaa", "output": "a" }, { "input": "100\naaaaabbbbboyoyoyoyoyacadabbbbbiuiufgiuiuaahjabbbklboyoyoyoyoyaaaaabbbbbiuiuiuiuiuaaaaabbbbbeyiyuyzyw", "output": "abbbbbocadabbbbb...
1,520,330,039
2,147,483,647
Python 3
OK
TESTS
49
77
5,632,000
n=int(input()) string=input() list1=[] temp="" for i in range(0,len(string)): if string[i] in 'aeiouy': temp+=string[i] else: if(len(temp)>0): list1.append(temp) list1.append(string[i]) temp="" if(len(temp)>0): list1.append(temp) for i in list1: ...
Title: Word Correction Time Limit: None seconds Memory Limit: None megabytes Problem Description: Victor tries to write his own text editor, with word correction included. However, the rules of word correction are really strange. Victor thinks that if a word contains two consecutive vowels, then it's kinda weird an...
```python n=int(input()) string=input() list1=[] temp="" for i in range(0,len(string)): if string[i] in 'aeiouy': temp+=string[i] else: if(len(temp)>0): list1.append(temp) list1.append(string[i]) temp="" if(len(temp)>0): list1.append(temp) for i in...
3
675
A
Infinite Sequence
PROGRAMMING
1,100
[ "math" ]
null
null
Vasya likes everything infinite. Now he is studying the properties of a sequence *s*, such that its first element is equal to *a* (*s*1<==<=*a*), and the difference between any two neighbouring elements is equal to *c* (*s**i*<=-<=*s**i*<=-<=1<==<=*c*). In particular, Vasya wonders if his favourite integer *b* appears ...
The first line of the input contain three integers *a*, *b* and *c* (<=-<=109<=≤<=*a*,<=*b*,<=*c*<=≤<=109) — the first element of the sequence, Vasya's favorite number and the difference between any two neighbouring elements of the sequence, respectively.
If *b* appears in the sequence *s* print "YES" (without quotes), otherwise print "NO" (without quotes).
[ "1 7 3\n", "10 10 0\n", "1 -4 5\n", "0 60 50\n" ]
[ "YES\n", "YES\n", "NO\n", "NO\n" ]
In the first sample, the sequence starts from integers 1, 4, 7, so 7 is its element. In the second sample, the favorite integer of Vasya is equal to the first element of the sequence. In the third sample all elements of the sequence are greater than Vasya's favorite integer. In the fourth sample, the sequence starts...
500
[ { "input": "1 7 3", "output": "YES" }, { "input": "10 10 0", "output": "YES" }, { "input": "1 -4 5", "output": "NO" }, { "input": "0 60 50", "output": "NO" }, { "input": "1 -4 -5", "output": "YES" }, { "input": "0 1 0", "output": "NO" }, { ...
1,589,576,008
2,147,483,647
PyPy 3
OK
TESTS
178
156
20,172,800
a,b,c = map(int, input().split()) if(c==0 and a==b): print('YES') elif(c==0): print('NO') elif((b-a)%c==0 and (b-a)//c>=0): print('YES') else: print('NO')
Title: Infinite Sequence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya likes everything infinite. Now he is studying the properties of a sequence *s*, such that its first element is equal to *a* (*s*1<==<=*a*), and the difference between any two neighbouring elements is equal to *c...
```python a,b,c = map(int, input().split()) if(c==0 and a==b): print('YES') elif(c==0): print('NO') elif((b-a)%c==0 and (b-a)//c>=0): print('YES') else: print('NO') ```
3
892
A
Greed
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
Jafar has *n* cans of cola. Each can is described by two integers: remaining volume of cola *a**i* and can's capacity *b**i* (*a**i* <=≤<= *b**i*). Jafar has decided to pour all remaining cola into just 2 cans, determine if he can do this or not!
The first line of the input contains one integer *n* (2<=≤<=*n*<=≤<=100<=000) — number of cola cans. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109) — volume of remaining cola in cans. The third line contains *n* space-separated integers that *b*1,<=*b*2,<=...,<...
Print "YES" (without quotes) if it is possible to pour all remaining cola in 2 cans. Otherwise print "NO" (without quotes). You can print each letter in any case (upper or lower).
[ "2\n3 5\n3 6\n", "3\n6 8 9\n6 10 12\n", "5\n0 0 5 0 0\n1 1 8 10 5\n", "4\n4 1 0 3\n5 2 2 3\n" ]
[ "YES\n", "NO\n", "YES\n", "YES\n" ]
In the first sample, there are already 2 cans, so the answer is "YES".
500
[ { "input": "2\n3 5\n3 6", "output": "YES" }, { "input": "3\n6 8 9\n6 10 12", "output": "NO" }, { "input": "5\n0 0 5 0 0\n1 1 8 10 5", "output": "YES" }, { "input": "4\n4 1 0 3\n5 2 2 3", "output": "YES" }, { "input": "10\n9 10 24 11 1 7 8 3 28 14\n86 20 34 11 22 9...
1,515,744,544
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
171
17,100,800
#!/usr/bin/python # -*- coding: UTF-8 -*- a=int(input()) b=input().split(" ") c=input().split(" ") sum=0 c.sort() sum1=int(c[len(c)-1])+int(c[len(c)-2]) for i in range(len(b)): sum+=int(b[i]) if sum1>=sum: print("YES") else: print("NO")
Title: Greed Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jafar has *n* cans of cola. Each can is described by two integers: remaining volume of cola *a**i* and can's capacity *b**i* (*a**i* <=≤<= *b**i*). Jafar has decided to pour all remaining cola into just 2 cans, determine if he c...
```python #!/usr/bin/python # -*- coding: UTF-8 -*- a=int(input()) b=input().split(" ") c=input().split(" ") sum=0 c.sort() sum1=int(c[len(c)-1])+int(c[len(c)-2]) for i in range(len(b)): sum+=int(b[i]) if sum1>=sum: print("YES") else: print("NO") ```
0
576
A
Vasya and Petya's Game
PROGRAMMING
1,500
[ "math", "number theory" ]
null
null
Vasya and Petya are playing a simple game. Vasya thought of number *x* between 1 and *n*, and Petya tries to guess the number. Petya can ask questions like: "Is the unknown number divisible by number *y*?". The game is played by the following rules: first Petya asks all the questions that interest him (also, he can a...
A single line contains number *n* (1<=≤<=*n*<=≤<=103).
Print the length of the sequence of questions *k* (0<=≤<=*k*<=≤<=*n*), followed by *k* numbers — the questions *y**i* (1<=≤<=*y**i*<=≤<=*n*). If there are several correct sequences of questions of the minimum length, you are allowed to print any of them.
[ "4\n", "6\n" ]
[ "3\n2 4 3 \n", "4\n2 4 3 5 \n" ]
The sequence from the answer to the first sample test is actually correct. If the unknown number is not divisible by one of the sequence numbers, it is equal to 1. If the unknown number is divisible by 4, it is 4. If the unknown number is divisible by 3, then the unknown number is 3. Otherwise, it is equal to 2. Th...
500
[ { "input": "4", "output": "3\n2 4 3 " }, { "input": "6", "output": "4\n2 4 3 5 " }, { "input": "1", "output": "0" }, { "input": "15", "output": "9\n2 4 8 3 9 5 7 11 13 " }, { "input": "19", "output": "12\n2 4 8 16 3 9 5 7 11 13 17 19 " }, { "input": "2...
1,555,647,603
2,147,483,647
Python 3
OK
TESTS
26
217
0
def input_ints(): return list(map(int, input().split())) def main(): n = int(input()) ans = [] for x in range(2, n + 1): s = set() xx = x for y in range(2, n + 1): while xx % y == 0: xx /= y s.add(y) if len(s) == 1...
Title: Vasya and Petya's Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya and Petya are playing a simple game. Vasya thought of number *x* between 1 and *n*, and Petya tries to guess the number. Petya can ask questions like: "Is the unknown number divisible by number *y*?". The...
```python def input_ints(): return list(map(int, input().split())) def main(): n = int(input()) ans = [] for x in range(2, n + 1): s = set() xx = x for y in range(2, n + 1): while xx % y == 0: xx /= y s.add(y) if l...
3
122
A
Lucky Division
PROGRAMMING
1,000
[ "brute force", "number theory" ]
null
null
Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya calls a number almost lucky if it could be evenly divided by some lucky number. Help him find ...
The single line contains an integer *n* (1<=≤<=*n*<=≤<=1000) — the number that needs to be checked.
In the only line print "YES" (without the quotes), if number *n* is almost lucky. Otherwise, print "NO" (without the quotes).
[ "47\n", "16\n", "78\n" ]
[ "YES\n", "YES\n", "NO\n" ]
Note that all lucky numbers are almost lucky as any number is evenly divisible by itself. In the first sample 47 is a lucky number. In the second sample 16 is divisible by 4.
500
[ { "input": "47", "output": "YES" }, { "input": "16", "output": "YES" }, { "input": "78", "output": "NO" }, { "input": "48", "output": "YES" }, { "input": "100", "output": "YES" }, { "input": "107", "output": "NO" }, { "input": "77", "ou...
1,691,974,867
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
18
62
0
n = int(input()) a = str(n) index = 0 for i in a: if i == '4' or i == '7': index +=1 if index >= 2 or n % 4 == 0 or n % 7 == 0: print('YES') else: print('NO')
Title: Lucky Division Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python n = int(input()) a = str(n) index = 0 for i in a: if i == '4' or i == '7': index +=1 if index >= 2 or n % 4 == 0 or n % 7 == 0: print('YES') else: print('NO') ```
0
8
A
Train and Peter
PROGRAMMING
1,200
[ "strings" ]
A. Train and Peter
1
64
Peter likes to travel by train. He likes it so much that on the train he falls asleep. Once in summer Peter was going by train from city A to city B, and as usual, was sleeping. Then he woke up, started to look through the window and noticed that every railway station has a flag of a particular colour. The boy start...
The input data contains three lines. The first line contains a non-empty string, whose length does not exceed 105, the string consists of lowercase Latin letters — the flags' colours at the stations on the way from A to B. On the way from B to A the train passes the same stations, but in reverse order. The second lin...
Output one of the four words without inverted commas: - «forward» — if Peter could see such sequences only on the way from A to B; - «backward» — if Peter could see such sequences on the way from B to A; - «both» — if Peter could see such sequences both on the way from A to B, and on the way from B to A; - «fanta...
[ "atob\na\nb\n", "aaacaaa\naca\naa\n" ]
[ "forward\n", "both\n" ]
It is assumed that the train moves all the time, so one flag cannot be seen twice. There are no flags at stations A and B.
0
[ { "input": "atob\na\nb", "output": "forward" }, { "input": "aaacaaa\naca\naa", "output": "both" }, { "input": "aaa\naa\naa", "output": "fantasy" }, { "input": "astalavista\nastla\nlavista", "output": "fantasy" }, { "input": "abacabadabacaba\nabacaba\nabacaba", ...
1,583,589,332
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
186
0
### A. Train and Peter s=input() a=input() b=input() if a not in s or b not in s or len(a)+len(b) > len(s): print('fantasy') else: A=s.find(a) B=s.rfind(b) s=s[::-1] A1=s.find(a) B1=s.find(b) if A<B and B1<A1: print('both') elif A<B: pri...
Title: Train and Peter Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Peter likes to travel by train. He likes it so much that on the train he falls asleep. Once in summer Peter was going by train from city A to city B, and as usual, was sleeping. Then he woke up, started to look through the...
```python ### A. Train and Peter s=input() a=input() b=input() if a not in s or b not in s or len(a)+len(b) > len(s): print('fantasy') else: A=s.find(a) B=s.rfind(b) s=s[::-1] A1=s.find(a) B1=s.find(b) if A<B and B1<A1: print('both') elif A<B: ...
0
743
C
Vladik and fractions
PROGRAMMING
1,500
[ "brute force", "constructive algorithms", "math", "number theory" ]
null
null
Vladik and Chloe decided to determine who of them is better at math. Vladik claimed that for any positive integer *n* he can represent fraction as a sum of three distinct positive fractions in form . Help Vladik with that, i.e for a given *n* find three distinct positive integers *x*, *y* and *z* such that . Because ...
The single line contains single integer *n* (1<=≤<=*n*<=≤<=104).
If the answer exists, print 3 distinct numbers *x*, *y* and *z* (1<=≤<=*x*,<=*y*,<=*z*<=≤<=109, *x*<=≠<=*y*, *x*<=≠<=*z*, *y*<=≠<=*z*). Otherwise print -1. If there are multiple answers, print any of them.
[ "3\n", "7\n" ]
[ "2 7 42\n", "7 8 56\n" ]
none
1,250
[ { "input": "3", "output": "2 7 42" }, { "input": "7", "output": "7 8 56" }, { "input": "2", "output": "2 3 6" }, { "input": "5", "output": "5 6 30" }, { "input": "4", "output": "4 5 20" }, { "input": "7", "output": "7 8 56" }, { "input": "8...
1,627,663,894
2,147,483,647
Python 3
OK
TESTS
62
77
6,758,400
n=int(input()) print(-1 if n==1 else (" ".join(map(str,[n,n+1,n*n+n]))))
Title: Vladik and fractions Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vladik and Chloe decided to determine who of them is better at math. Vladik claimed that for any positive integer *n* he can represent fraction as a sum of three distinct positive fractions in form . Help Vladik ...
```python n=int(input()) print(-1 if n==1 else (" ".join(map(str,[n,n+1,n*n+n])))) ```
3
427
B
Prison Transfer
PROGRAMMING
1,100
[ "data structures", "implementation" ]
null
null
The prison of your city has *n* prisoners. As the prison can't accommodate all of them, the city mayor has decided to transfer *c* of the prisoners to a prison located in another city. For this reason, he made the *n* prisoners to stand in a line, with a number written on their chests. The number is the severity of th...
The first line of input will contain three space separated integers *n* (1<=≤<=*n*<=≤<=2·105), *t* (0<=≤<=*t*<=≤<=109) and *c* (1<=≤<=*c*<=≤<=*n*). The next line will contain *n* space separated integers, the *i**th* integer is the severity *i**th* prisoner's crime. The value of crime severities will be non-negative an...
Print a single integer — the number of ways you can choose the *c* prisoners.
[ "4 3 3\n2 3 1 1\n", "1 1 1\n2\n", "11 4 2\n2 2 0 7 3 2 2 4 9 1 4\n" ]
[ "2\n", "0\n", "6\n" ]
none
1,000
[ { "input": "4 3 3\n2 3 1 1", "output": "2" }, { "input": "1 1 1\n2", "output": "0" }, { "input": "11 4 2\n2 2 0 7 3 2 2 4 9 1 4", "output": "6" }, { "input": "57 2 10\n7 5 2 7 4 1 0 5 2 9 2 9 8 6 6 5 9 6 8 1 0 1 0 3 2 6 5 2 8 8 8 8 0 9 4 3 6 6 2 4 5 1 2 0 1 7 1 1 5 4 5 0 7 5 ...
1,680,647,441
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
124
38,502,400
a,b,c = list(map(int, input().split())) lista = input() lista_result = [] for i in range(len(lista)): if lista[i] != " ": if int(lista[i]) > b: lista_result.append("-") else: lista_result.append(lista[i]) cont = 0 lista_intervalo =[] for i in range(len(lista_result)): i...
Title: Prison Transfer Time Limit: None seconds Memory Limit: None megabytes Problem Description: The prison of your city has *n* prisoners. As the prison can't accommodate all of them, the city mayor has decided to transfer *c* of the prisoners to a prison located in another city. For this reason, he made the *n* ...
```python a,b,c = list(map(int, input().split())) lista = input() lista_result = [] for i in range(len(lista)): if lista[i] != " ": if int(lista[i]) > b: lista_result.append("-") else: lista_result.append(lista[i]) cont = 0 lista_intervalo =[] for i in range(len(lista_resu...
0
546
A
Soldier and Bananas
PROGRAMMING
800
[ "brute force", "implementation", "math" ]
null
null
A soldier wants to buy *w* bananas in the shop. He has to pay *k* dollars for the first banana, 2*k* dollars for the second one and so on (in other words, he has to pay *i*·*k* dollars for the *i*-th banana). He has *n* dollars. How many dollars does he have to borrow from his friend soldier to buy *w* bananas?
The first line contains three positive integers *k*,<=*n*,<=*w* (1<=<=≤<=<=*k*,<=*w*<=<=≤<=<=1000, 0<=≤<=*n*<=≤<=109), the cost of the first banana, initial number of dollars the soldier has and number of bananas he wants.
Output one integer — the amount of dollars that the soldier must borrow from his friend. If he doesn't have to borrow money, output 0.
[ "3 17 4\n" ]
[ "13" ]
none
500
[ { "input": "3 17 4", "output": "13" }, { "input": "1 2 1", "output": "0" }, { "input": "1 1 1", "output": "0" }, { "input": "1 5 6", "output": "16" }, { "input": "1 1000000000 1", "output": "0" }, { "input": "1000 0 1000", "output": "500500000" }...
1,694,525,769
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
15
0
k,n,w = map(int, input().split()) sum1 = 0 for i in range(w): sum1 += (i+1)*k print(sum1-n)
Title: Soldier and Bananas Time Limit: None seconds Memory Limit: None megabytes Problem Description: A soldier wants to buy *w* bananas in the shop. He has to pay *k* dollars for the first banana, 2*k* dollars for the second one and so on (in other words, he has to pay *i*·*k* dollars for the *i*-th banana). He h...
```python k,n,w = map(int, input().split()) sum1 = 0 for i in range(w): sum1 += (i+1)*k print(sum1-n) ```
0
747
B
Mammoth's Genome Decoding
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
The process of mammoth's genome decoding in Berland comes to its end! One of the few remaining tasks is to restore unrecognized nucleotides in a found chain *s*. Each nucleotide is coded with a capital letter of English alphabet: 'A', 'C', 'G' or 'T'. Unrecognized nucleotides are coded by a question mark '?'. Thus, *s...
The first line contains the integer *n* (4<=≤<=*n*<=≤<=255) — the length of the genome. The second line contains the string *s* of length *n* — the coded genome. It consists of characters 'A', 'C', 'G', 'T' and '?'.
If it is possible to decode the genome, print it. If there are multiple answer, print any of them. If it is not possible, print three equals signs in a row: "===" (without quotes).
[ "8\nAG?C??CT\n", "4\nAGCT\n", "6\n????G?\n", "4\nAA??\n" ]
[ "AGACGTCT\n", "AGCT\n", "===\n", "===\n" ]
In the first example you can replace the first question mark with the letter 'A', the second question mark with the letter 'G', the third question mark with the letter 'T', then each nucleotide in the genome would be presented twice. In the second example the genome is already decoded correctly and each nucleotide is ...
1,000
[ { "input": "8\nAG?C??CT", "output": "AGACGTCT" }, { "input": "4\nAGCT", "output": "AGCT" }, { "input": "6\n????G?", "output": "===" }, { "input": "4\nAA??", "output": "===" }, { "input": "4\n????", "output": "ACGT" }, { "input": "252\n???????GCG??T??TT...
1,545,360,315
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
124
102,400
from collections import Counter n = int(input()) s = input() c = Counter(s.replace('?','')) if s.count('?') == n: print('ACGT') elif len(set(s.replace('?',''))) < 4 and n >= 4: print('===') else: print(c) s = list(s) for i in c.keys(): for j in range(n // 4 - c.get(i)): s[s.index('?')] = i pr...
Title: Mammoth's Genome Decoding Time Limit: None seconds Memory Limit: None megabytes Problem Description: The process of mammoth's genome decoding in Berland comes to its end! One of the few remaining tasks is to restore unrecognized nucleotides in a found chain *s*. Each nucleotide is coded with a capital letter...
```python from collections import Counter n = int(input()) s = input() c = Counter(s.replace('?','')) if s.count('?') == n: print('ACGT') elif len(set(s.replace('?',''))) < 4 and n >= 4: print('===') else: print(c) s = list(s) for i in c.keys(): for j in range(n // 4 - c.get(i)): s[s.index('?')...
0
336
A
Vasily the Bear and Triangle
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Vasily the bear has a favorite rectangle, it has one vertex at point (0,<=0), and the opposite vertex at point (*x*,<=*y*). Of course, the sides of Vasya's favorite rectangle are parallel to the coordinate axes. Vasya also loves triangles, if the triangles have one vertex at point *B*<==<=(0,<=0). That's why today he...
The first line contains two integers *x*,<=*y* (<=-<=109<=≤<=*x*,<=*y*<=≤<=109,<=*x*<=≠<=0,<=*y*<=≠<=0).
Print in the single line four integers *x*1,<=*y*1,<=*x*2,<=*y*2 — the coordinates of the required points.
[ "10 5\n", "-10 5\n" ]
[ "0 15 15 0\n", "-15 0 0 15\n" ]
<img class="tex-graphics" src="https://espresso.codeforces.com/a9ea2088c4294ce8f23801562fda36b830df2c3f.png" style="max-width: 100.0%;max-height: 100.0%;"/> Figure to the first sample
500
[ { "input": "10 5", "output": "0 15 15 0" }, { "input": "-10 5", "output": "-15 0 0 15" }, { "input": "20 -10", "output": "0 -30 30 0" }, { "input": "-10 -1000000000", "output": "-1000000010 0 0 -1000000010" }, { "input": "-1000000000 -1000000000", "output": "-...
1,625,640,012
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
92
0
x, y = map(int, input().split()) if x > 0 and y > 0: a = x + y print("{} {} {} {}".format(0, a, a, 0)) elif x < 0 and y > 0: a = y - x print("{} {} {} {}".format(0, a, -a, 0)) elif x > 0 and y < 0: a = x - y print("{} {} {} {}".format(0, -a, a, 0)) else: a = -x - y print("{} ...
Title: Vasily the Bear and Triangle Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily the bear has a favorite rectangle, it has one vertex at point (0,<=0), and the opposite vertex at point (*x*,<=*y*). Of course, the sides of Vasya's favorite rectangle are parallel to the coordinate ...
```python x, y = map(int, input().split()) if x > 0 and y > 0: a = x + y print("{} {} {} {}".format(0, a, a, 0)) elif x < 0 and y > 0: a = y - x print("{} {} {} {}".format(0, a, -a, 0)) elif x > 0 and y < 0: a = x - y print("{} {} {} {}".format(0, -a, a, 0)) else: a = -x - y ...
0
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,489,435,664
2,147,483,647
Python 3
OK
TESTS
81
124
4,608,000
def is_in_equilibrium(v,n): s1=0 s2=0 s3=0 for i in range(n): j=list(map(int,v[i])) s1+=j[0] s2+=j[1] s3+=j[2] return s1==0 and s2==0 and s3==0 if __name__=='__main__': n=int(input()) ip=[] for i in range(n): j=map(int,input().strip()...
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python def is_in_equilibrium(v,n): s1=0 s2=0 s3=0 for i in range(n): j=list(map(int,v[i])) s1+=j[0] s2+=j[1] s3+=j[2] return s1==0 and s2==0 and s3==0 if __name__=='__main__': n=int(input()) ip=[] for i in range(n): j=map(int,input...
3.960417
993
A
Two Squares
PROGRAMMING
1,600
[ "geometry", "implementation" ]
null
null
You are given two squares, one with sides parallel to the coordinate axes, and another one with sides at 45 degrees to the coordinate axes. Find whether the two squares intersect. The interior of the square is considered to be part of the square, i.e. if one square is completely inside another, they intersect. If the ...
The input data consists of two lines, one for each square, both containing 4 pairs of integers. Each pair represents coordinates of one vertex of the square. Coordinates within each line are either in clockwise or counterclockwise order. The first line contains the coordinates of the square with sides parallel to the ...
Print "Yes" if squares intersect, otherwise print "No". You can print each letter in any case (upper or lower).
[ "0 0 6 0 6 6 0 6\n1 3 3 5 5 3 3 1\n", "0 0 6 0 6 6 0 6\n7 3 9 5 11 3 9 1\n", "6 0 6 6 0 6 0 0\n7 4 4 7 7 10 10 7\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first example the second square lies entirely within the first square, so they do intersect. In the second sample squares do not have any points in common. Here are images corresponding to the samples:
500
[ { "input": "0 0 6 0 6 6 0 6\n1 3 3 5 5 3 3 1", "output": "YES" }, { "input": "0 0 6 0 6 6 0 6\n7 3 9 5 11 3 9 1", "output": "NO" }, { "input": "6 0 6 6 0 6 0 0\n7 4 4 7 7 10 10 7", "output": "YES" }, { "input": "0 0 6 0 6 6 0 6\n8 4 4 8 8 12 12 8", "output": "YES" }, ...
1,634,114,110
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
46
6,963,200
def vnutry(x1,y1,x2,y2,x3,y3,x4,y4,x,y): v1=(x2-x1)*(y-y1)-(y2-y1)*(x-x1) v2=(x3-x4)*(y-y4)-(y3-y4)*(x-x4) v3=(x1-x4)*(y-y4)-(y1-y4)*(x-x4) v4=(x2-x3)*(y-y3)-(y2-y3)*(x-x3) if v1*v2<=0 and v3*v4<=0: return True else: return False x1,y1,x2,y2,x3,y3,x4,y4=map(int,inp...
Title: Two Squares Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two squares, one with sides parallel to the coordinate axes, and another one with sides at 45 degrees to the coordinate axes. Find whether the two squares intersect. The interior of the square is considered t...
```python def vnutry(x1,y1,x2,y2,x3,y3,x4,y4,x,y): v1=(x2-x1)*(y-y1)-(y2-y1)*(x-x1) v2=(x3-x4)*(y-y4)-(y3-y4)*(x-x4) v3=(x1-x4)*(y-y4)-(y1-y4)*(x-x4) v4=(x2-x3)*(y-y3)-(y2-y3)*(x-x3) if v1*v2<=0 and v3*v4<=0: return True else: return False x1,y1,x2,y2,x3,y3,x4,y4=m...
0
660
C
Hard Process
PROGRAMMING
1,600
[ "binary search", "dp", "two pointers" ]
null
null
You are given an array *a* with *n* elements. Each element of *a* is either 0 or 1. Let's denote the length of the longest subsegment of consecutive elements in *a*, consisting of only numbers one, as *f*(*a*). You can change no more than *k* zeroes to ones to maximize *f*(*a*).
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=3·105,<=0<=≤<=*k*<=≤<=*n*) — the number of elements in *a* and the parameter *k*. The second line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=1) — the elements of *a*.
On the first line print a non-negative integer *z* — the maximal value of *f*(*a*) after no more than *k* changes of zeroes to ones. On the second line print *n* integers *a**j* — the elements of the array *a* after the changes. If there are multiple answers, you can print any one of them.
[ "7 1\n1 0 0 1 1 0 1\n", "10 2\n1 0 0 1 0 1 0 1 0 1\n" ]
[ "4\n1 0 0 1 1 1 1\n", "5\n1 0 0 1 1 1 1 1 0 1\n" ]
none
0
[ { "input": "7 1\n1 0 0 1 1 0 1", "output": "4\n1 0 0 1 1 1 1" }, { "input": "10 2\n1 0 0 1 0 1 0 1 0 1", "output": "5\n1 0 0 1 1 1 1 1 0 1" }, { "input": "1 0\n0", "output": "0\n0" }, { "input": "1 0\n0", "output": "0\n0" }, { "input": "7 0\n0 1 0 0 0 1 0", "o...
1,665,911,579
2,147,483,647
Python 3
OK
TESTS
38
638
5,222,400
n,k=map(int, input().split()) l=list(map(int, input().split())) i=0 j=0 t=0 s=-1 e=-1 ans=-1 while j<n: if l[j]==0: t+=1 while t>k: if l[i]==0: t-=1 i+=1 else: i+=1 if ans<j-i+1: ans=j-i+1 s=i e=j ...
Title: Hard Process Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array *a* with *n* elements. Each element of *a* is either 0 or 1. Let's denote the length of the longest subsegment of consecutive elements in *a*, consisting of only numbers one, as *f*(*a*). You can ch...
```python n,k=map(int, input().split()) l=list(map(int, input().split())) i=0 j=0 t=0 s=-1 e=-1 ans=-1 while j<n: if l[j]==0: t+=1 while t>k: if l[i]==0: t-=1 i+=1 else: i+=1 if ans<j-i+1: ans=j-i+1 s=i ...
3
645
C
Enduring Exodus
PROGRAMMING
1,600
[ "binary search", "two pointers" ]
null
null
In an attempt to escape the Mischievous Mess Makers' antics, Farmer John has abandoned his farm and is traveling to the other side of Bovinia. During the journey, he and his *k* cows have decided to stay at the luxurious Grand Moo-dapest Hotel. The hotel consists of *n* rooms located in a row, some of which are occupie...
The first line of the input contains two integers *n* and *k* (1<=≤<=*k*<=&lt;<=*n*<=≤<=100<=000) — the number of rooms in the hotel and the number of cows travelling with Farmer John. The second line contains a string of length *n* describing the rooms. The *i*-th character of the string will be '0' if the *i*-th roo...
Print the minimum possible distance between Farmer John's room and his farthest cow.
[ "7 2\n0100100\n", "5 1\n01010\n", "3 2\n000\n" ]
[ "2\n", "2\n", "1\n" ]
In the first sample, Farmer John can book room 3 for himself, and rooms 1 and 4 for his cows. The distance to the farthest cow is 2. Note that it is impossible to make this distance 1, as there is no block of three consecutive unoccupied rooms. In the second sample, Farmer John can book room 1 for himself and room 3 f...
1,500
[ { "input": "7 2\n0100100", "output": "2" }, { "input": "5 1\n01010", "output": "2" }, { "input": "3 2\n000", "output": "1" }, { "input": "10 1\n1101111101", "output": "6" }, { "input": "2 1\n00", "output": "1" }, { "input": "3 1\n010", "output": "2...
1,522,314,891
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
15
140
7,168,000
n,k=map(int,input().split()) a=input() ma=0;po=0;p=a.index('0');r=0;s=0 for i in range(p,n): if a[i]=='0': r+=1 if r==k+1: break po=i;dis=po-p;r=p;s=po while True: try: po=a.index('0',po+1) except:break try: p=a.index('0',p+1) except:break if p...
Title: Enduring Exodus Time Limit: None seconds Memory Limit: None megabytes Problem Description: In an attempt to escape the Mischievous Mess Makers' antics, Farmer John has abandoned his farm and is traveling to the other side of Bovinia. During the journey, he and his *k* cows have decided to stay at the luxuriou...
```python n,k=map(int,input().split()) a=input() ma=0;po=0;p=a.index('0');r=0;s=0 for i in range(p,n): if a[i]=='0': r+=1 if r==k+1: break po=i;dis=po-p;r=p;s=po while True: try: po=a.index('0',po+1) except:break try: p=a.index('0',p+1) except:break...
0
79
B
Colorful Field
PROGRAMMING
1,400
[ "implementation", "sortings" ]
B. Colorful Field
2
256
Fox Ciel saw a large field while she was on a bus. The field was a *n*<=×<=*m* rectangle divided into 1<=×<=1 cells. Some cells were wasteland, and other each cell contained crop plants: either carrots or kiwis or grapes. After seeing the field carefully, Ciel found that the crop plants of each cell were planted in f...
In the first line there are four positive integers *n*,<=*m*,<=*k*,<=*t* (1<=≤<=*n*<=≤<=4·104,<=1<=≤<=*m*<=≤<=4·104,<=1<=≤<=*k*<=≤<=103,<=1<=≤<=*t*<=≤<=103), each of which represents the height of the field, the width of the field, the number of waste cells and the number of queries that ask the kind of crop plants in ...
For each query, if the cell is waste, print Waste. Otherwise, print the name of crop plants in the cell: either Carrots or Kiwis or Grapes.
[ "4 5 5 6\n4 3\n1 3\n3 3\n2 5\n3 2\n1 3\n1 4\n2 3\n2 4\n1 1\n1 1\n" ]
[ "Waste\nGrapes\nCarrots\nKiwis\nCarrots\nCarrots\n" ]
The sample corresponds to the figure in the statement.
1,000
[ { "input": "4 5 5 6\n4 3\n1 3\n3 3\n2 5\n3 2\n1 3\n1 4\n2 3\n2 4\n1 1\n1 1", "output": "Waste\nGrapes\nCarrots\nKiwis\nCarrots\nCarrots" }, { "input": "2 3 2 2\n1 1\n2 2\n2 1\n2 2", "output": "Grapes\nWaste" }, { "input": "31 31 31 4\n4 9\n16 27\n11 29\n8 28\n11 2\n10 7\n22 6\n1 25\n14 8...
1,630,063,400
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
3
2,000
22,118,400
n,m,k,t = map(int, input().split()) waste = [ list(map(int, input().split())) for i in range(k)] qry = [ list(map(int, input().split())) for i in range(t)] for i in range(t): qry[i].append(i) ans = ['']*(t) qry.sort() waste.sort() d = {0: "Carrots", 2: "Grapes", 1: "Kiwis", -2: 'Waste'} q,w = 0,0 ...
Title: Colorful Field Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Fox Ciel saw a large field while she was on a bus. The field was a *n*<=×<=*m* rectangle divided into 1<=×<=1 cells. Some cells were wasteland, and other each cell contained crop plants: either carrots or kiwis or grapes. ...
```python n,m,k,t = map(int, input().split()) waste = [ list(map(int, input().split())) for i in range(k)] qry = [ list(map(int, input().split())) for i in range(t)] for i in range(t): qry[i].append(i) ans = ['']*(t) qry.sort() waste.sort() d = {0: "Carrots", 2: "Grapes", 1: "Kiwis", -2: 'Waste'} q...
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,591,883,098
2,147,483,647
PyPy 3
OK
TESTS
30
280
0
s=input() sl=list(s) su=0 sl=0 for i in range(len(s)): if(s[i].isupper()): su+=1 else: sl+=1 if(su>sl): s=s.upper() else: s=s.lower() print(s)
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 s=input() sl=list(s) su=0 sl=0 for i in range(len(s)): if(s[i].isupper()): su+=1 else: sl+=1 if(su>sl): s=s.upper() else: s=s.lower() print(s) ```
3.93
389
B
Fox and Cross
PROGRAMMING
1,100
[ "greedy", "implementation" ]
null
null
Fox Ciel has a board with *n* rows and *n* columns. So, the board consists of *n*<=×<=*n* cells. Each cell contains either a symbol '.', or a symbol '#'. A cross on the board is a connected set of exactly five cells of the board that looks like a cross. The picture below shows how it looks. Ciel wants to draw several...
The first line contains an integer *n* (3<=≤<=*n*<=≤<=100) — the size of the board. Each of the next *n* lines describes one row of the board. The *i*-th line describes the *i*-th row of the board and consists of *n* characters. Each character is either a symbol '.', or a symbol '#'.
Output a single line with "YES" if Ciel can draw the crosses in the described way. Otherwise output a single line with "NO".
[ "5\n.#...\n####.\n.####\n...#.\n.....\n", "4\n####\n####\n####\n####\n", "6\n.#....\n####..\n.####.\n.#.##.\n######\n.#..#.\n", "6\n.#..#.\n######\n.####.\n.####.\n######\n.#..#.\n", "3\n...\n...\n...\n" ]
[ "YES\n", "NO\n", "YES\n", "NO\n", "YES\n" ]
In example 1, you can draw two crosses. The picture below shows what they look like. In example 2, the board contains 16 cells with '#', but each cross contains 5. Since 16 is not a multiple of 5, so it's impossible to cover all.
1,000
[ { "input": "4\n####\n####\n####\n####", "output": "NO" }, { "input": "6\n.#....\n####..\n.####.\n.#.##.\n######\n.#..#.", "output": "YES" }, { "input": "6\n.#..#.\n######\n.####.\n.####.\n######\n.#..#.", "output": "NO" }, { "input": "5\n.....\n.#...\n####.\n.####\n...#.", ...
1,681,622,600
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
24
46
0
n = int(input()) cnt = 0 for _ in range(n): for i in input(): if i == '#': cnt += 1 # print(cnt) if cnt%5 == 0: print('YES') else: print('NO')
Title: Fox and Cross Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel has a board with *n* rows and *n* columns. So, the board consists of *n*<=×<=*n* cells. Each cell contains either a symbol '.', or a symbol '#'. A cross on the board is a connected set of exactly five cells of t...
```python n = int(input()) cnt = 0 for _ in range(n): for i in input(): if i == '#': cnt += 1 # print(cnt) if cnt%5 == 0: print('YES') else: print('NO') ```
0
1,006
F
Xor-Paths
PROGRAMMING
2,100
[ "bitmasks", "brute force", "dp", "meet-in-the-middle" ]
null
null
There is a rectangular grid of size $n \times m$. Each cell has a number written on it; the number on the cell ($i, j$) is $a_{i, j}$. Your task is to calculate the number of paths from the upper-left cell ($1, 1$) to the bottom-right cell ($n, m$) meeting the following constraints: - You can move to the right or to ...
The first line of the input contains three integers $n$, $m$ and $k$ ($1 \le n, m \le 20$, $0 \le k \le 10^{18}$) — the height and the width of the grid, and the number $k$. The next $n$ lines contain $m$ integers each, the $j$-th element in the $i$-th line is $a_{i, j}$ ($0 \le a_{i, j} \le 10^{18}$).
Print one integer — the number of paths from ($1, 1$) to ($n, m$) with xor sum equal to $k$.
[ "3 3 11\n2 1 5\n7 10 0\n12 6 4\n", "3 4 2\n1 3 3 3\n0 3 3 2\n3 0 1 1\n", "3 4 1000000000000000000\n1 3 3 3\n0 3 3 2\n3 0 1 1\n" ]
[ "3\n", "5\n", "0\n" ]
All the paths from the first example: - $(1, 1) \rightarrow (2, 1) \rightarrow (3, 1) \rightarrow (3, 2) \rightarrow (3, 3)$; - $(1, 1) \rightarrow (2, 1) \rightarrow (2, 2) \rightarrow (2, 3) \rightarrow (3, 3)$; - $(1, 1) \rightarrow (1, 2) \rightarrow (2, 2) \rightarrow (3, 2) \rightarrow (3, 3)$. All the path...
0
[ { "input": "3 3 11\n2 1 5\n7 10 0\n12 6 4", "output": "3" }, { "input": "3 4 2\n1 3 3 3\n0 3 3 2\n3 0 1 1", "output": "5" }, { "input": "3 4 1000000000000000000\n1 3 3 3\n0 3 3 2\n3 0 1 1", "output": "0" }, { "input": "1 1 1000000000000000000\n1000000000000000000", "outpu...
1,650,842,988
6,888
PyPy 3-64
RUNTIME_ERROR
TESTS
0
61
3,481,600
from sys import stdin raw_input = lambda: stdin.readline().rstrip() input = lambda: int(raw_input()) I=lambda: list(map(int, raw_input().split())) xrange = range n,m,k = I() mat = [] dp = [] for _ in xrange(n): a = I() mat.append(a) dp.append([{} for _ in xrange(m)]) dp[n-1][m-1] = {k^mat[n-1][m-1]: ...
Title: Xor-Paths Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is a rectangular grid of size $n \times m$. Each cell has a number written on it; the number on the cell ($i, j$) is $a_{i, j}$. Your task is to calculate the number of paths from the upper-left cell ($1, 1$) to the bot...
```python from sys import stdin raw_input = lambda: stdin.readline().rstrip() input = lambda: int(raw_input()) I=lambda: list(map(int, raw_input().split())) xrange = range n,m,k = I() mat = [] dp = [] for _ in xrange(n): a = I() mat.append(a) dp.append([{} for _ in xrange(m)]) dp[n-1][m-1] = {k^mat[n...
-1
334
B
Eight Point Sets
PROGRAMMING
1,400
[ "sortings" ]
null
null
Gerald is very particular to eight point sets. He thinks that any decent eight point set must consist of all pairwise intersections of three distinct integer vertical straight lines and three distinct integer horizontal straight lines, except for the average of these nine points. In other words, there must be three int...
The input consists of eight lines, the *i*-th line contains two space-separated integers *x**i* and *y**i* (0<=≤<=*x**i*,<=*y**i*<=≤<=106). You do not have any other conditions for these points.
In a single line print word "respectable", if the given set of points corresponds to Gerald's decency rules, and "ugly" otherwise.
[ "0 0\n0 1\n0 2\n1 0\n1 2\n2 0\n2 1\n2 2\n", "0 0\n1 0\n2 0\n3 0\n4 0\n5 0\n6 0\n7 0\n", "1 1\n1 2\n1 3\n2 1\n2 2\n2 3\n3 1\n3 2\n" ]
[ "respectable\n", "ugly\n", "ugly\n" ]
none
1,000
[ { "input": "0 0\n0 1\n0 2\n1 0\n1 2\n2 0\n2 1\n2 2", "output": "respectable" }, { "input": "0 0\n1 0\n2 0\n3 0\n4 0\n5 0\n6 0\n7 0", "output": "ugly" }, { "input": "1 1\n1 2\n1 3\n2 1\n2 2\n2 3\n3 1\n3 2", "output": "ugly" }, { "input": "0 0\n0 0\n0 0\n0 0\n0 0\n0 0\n0 0\n0 0...
1,545,383,746
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
24
218
0
points_set = [] for i in range(8): points_set.append([int(i) for i in input().split()]) x_list = [] y_list = [] x_count = 0 y_count = 0 for i in points_set: if i[0] not in x_list: x_list.append(i[0]) x_count += 1 if i[1] not in y_list: y_list.append(i[1]) y_cou...
Title: Eight Point Sets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Gerald is very particular to eight point sets. He thinks that any decent eight point set must consist of all pairwise intersections of three distinct integer vertical straight lines and three distinct integer horizonta...
```python points_set = [] for i in range(8): points_set.append([int(i) for i in input().split()]) x_list = [] y_list = [] x_count = 0 y_count = 0 for i in points_set: if i[0] not in x_list: x_list.append(i[0]) x_count += 1 if i[1] not in y_list: y_list.append(i[1]) ...
0
260
A
Adding Digits
PROGRAMMING
1,400
[ "implementation", "math" ]
null
null
Vasya has got two number: *a* and *b*. However, Vasya finds number *a* too short. So he decided to repeat the operation of lengthening number *a* *n* times. One operation of lengthening a number means adding exactly one digit to the number (in the decimal notation) to the right provided that the resulting number is di...
The first line contains three integers: *a*,<=*b*,<=*n* (1<=≤<=*a*,<=*b*,<=*n*<=≤<=105).
In a single line print the integer without leading zeros, which Vasya can get when he applies the lengthening operations to number *a* *n* times. If no such number exists, then print number -1. If there are multiple possible answers, print any of them.
[ "5 4 5\n", "12 11 1\n", "260 150 10\n" ]
[ "524848\n", "121\n", "-1\n" ]
none
500
[ { "input": "5 4 5", "output": "524848" }, { "input": "12 11 1", "output": "121" }, { "input": "260 150 10", "output": "-1" }, { "input": "78843 5684 42717", "output": "-1" }, { "input": "93248 91435 1133", "output": "-1" }, { "input": "100000 10 64479"...
1,673,621,903
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
import sys sys.setrecursionlimit(1000000) a, b, n = map(int, input().split()) def recursion(a, b, n, i, cur_result): if i > n or (a % b != 0 and i != 0): return -1 elif a % b == 0: return cur_result for k in range(0, 9): result = recursion( ((a % b) * ...
Title: Adding Digits Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has got two number: *a* and *b*. However, Vasya finds number *a* too short. So he decided to repeat the operation of lengthening number *a* *n* times. One operation of lengthening a number means adding exactly one ...
```python import sys sys.setrecursionlimit(1000000) a, b, n = map(int, input().split()) def recursion(a, b, n, i, cur_result): if i > n or (a % b != 0 and i != 0): return -1 elif a % b == 0: return cur_result for k in range(0, 9): result = recursion( (...
0
932
A
Palindromic Supersequence
PROGRAMMING
800
[ "constructive algorithms" ]
null
null
You are given a string *A*. Find a string *B*, where *B* is a palindrome and *A* is a subsequence of *B*. A subsequence of a string is a string that can be derived from it by deleting some (not necessarily consecutive) characters without changing the order of the remaining characters. For example, "cotst" is a subsequ...
First line contains a string *A* (1<=≤<=|*A*|<=≤<=103) consisting of lowercase Latin letters, where |*A*| is a length of *A*.
Output single line containing *B* consisting of only lowercase Latin letters. You do not need to find the shortest answer, the only restriction is that the length of string *B* should not exceed 104. If there are many possible *B*, print any of them.
[ "aba\n", "ab\n" ]
[ "aba", "aabaa" ]
In the first example, "aba" is a subsequence of "aba" which is a palindrome. In the second example, "ab" is a subsequence of "aabaa" which is a palindrome.
500
[ { "input": "aba", "output": "abaaba" }, { "input": "ab", "output": "abba" }, { "input": "krnyoixirslfszfqivgkaflgkctvbvksipwomqxlyqxhlbceuhbjbfnhofcgpgwdseffycthmlpcqejgskwjkbkbbmifnurnwyhevsoqzmtvzgfiqajfrgyuzxnrtxectcnlyoisbglpdbjbslxlpoymrcxmdtqhcnlvtqdwftuzgbdxsyscwbrguostbelnvtaqdmk...
1,566,119,510
2,147,483,647
Python 3
OK
TESTS
48
109
0
s=input() print(s+''.join(reversed(s)))
Title: Palindromic Supersequence Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a string *A*. Find a string *B*, where *B* is a palindrome and *A* is a subsequence of *B*. A subsequence of a string is a string that can be derived from it by deleting some (not necessarily co...
```python s=input() print(s+''.join(reversed(s))) ```
3
915
A
Garden
PROGRAMMING
900
[ "implementation" ]
null
null
Luba thinks about watering her garden. The garden can be represented as a segment of length *k*. Luba has got *n* buckets, the *i*-th bucket allows her to water some continuous subsegment of garden of length exactly *a**i* each hour. Luba can't water any parts of the garden that were already watered, also she can't wat...
The first line of input contains two integer numbers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=100) — the number of buckets and the length of the garden, respectively. The second line of input contains *n* integer numbers *a**i* (1<=≤<=*a**i*<=≤<=100) — the length of the segment that can be watered by the *i*-th bucket in one ...
Print one integer number — the minimum number of hours required to water the garden.
[ "3 6\n2 3 5\n", "6 7\n1 2 3 4 5 6\n" ]
[ "2\n", "7\n" ]
In the first test the best option is to choose the bucket that allows to water the segment of length 3. We can't choose the bucket that allows to water the segment of length 5 because then we can't water the whole garden. In the second test we can choose only the bucket that allows us to water the segment of length 1.
0
[ { "input": "3 6\n2 3 5", "output": "2" }, { "input": "6 7\n1 2 3 4 5 6", "output": "7" }, { "input": "5 97\n1 10 50 97 2", "output": "1" }, { "input": "5 97\n1 10 50 100 2", "output": "97" }, { "input": "100 100\n2 46 24 18 86 90 31 38 84 49 58 28 15 80 14 24 87 5...
1,516,565,839
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
x, k = map(int, input().split("")) lengthList = [list(int(p) for p in input().split()) for i in range(int(input()))] val = [] val = [n for n in lengthList if isinstance((k/n), int) == True] y = max(val) print(y
Title: Garden Time Limit: None seconds Memory Limit: None megabytes Problem Description: Luba thinks about watering her garden. The garden can be represented as a segment of length *k*. Luba has got *n* buckets, the *i*-th bucket allows her to water some continuous subsegment of garden of length exactly *a**i* each ...
```python x, k = map(int, input().split("")) lengthList = [list(int(p) for p in input().split()) for i in range(int(input()))] val = [] val = [n for n in lengthList if isinstance((k/n), int) == True] y = max(val) print(y ```
-1
433
B
Kuriyama Mirai's Stones
PROGRAMMING
1,200
[ "dp", "implementation", "sortings" ]
null
null
Kuriyama Mirai has killed many monsters and got many (namely *n*) stones. She numbers the stones from 1 to *n*. The cost of the *i*-th stone is *v**i*. Kuriyama Mirai wants to know something about these stones so she will ask you two kinds of questions: 1. She will tell you two numbers, *l* and *r* (1<=≤<=*l*<=≤<=*r*...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=105). The second line contains *n* integers: *v*1,<=*v*2,<=...,<=*v**n* (1<=≤<=*v**i*<=≤<=109) — costs of the stones. The third line contains an integer *m* (1<=≤<=*m*<=≤<=105) — the number of Kuriyama Mirai's questions. Then follow *m* lines, each line contains t...
Print *m* lines. Each line must contain an integer — the answer to Kuriyama Mirai's question. Print the answers to the questions in the order of input.
[ "6\n6 4 2 7 2 7\n3\n2 3 6\n1 3 4\n1 1 6\n", "4\n5 5 2 3\n10\n1 2 4\n2 1 4\n1 1 1\n2 1 4\n2 1 2\n1 1 1\n1 3 3\n1 1 3\n1 4 4\n1 2 2\n" ]
[ "24\n9\n28\n", "10\n15\n5\n15\n5\n5\n2\n12\n3\n5\n" ]
Please note that the answers to the questions may overflow 32-bit integer type.
1,500
[ { "input": "6\n6 4 2 7 2 7\n3\n2 3 6\n1 3 4\n1 1 6", "output": "24\n9\n28" }, { "input": "4\n5 5 2 3\n10\n1 2 4\n2 1 4\n1 1 1\n2 1 4\n2 1 2\n1 1 1\n1 3 3\n1 1 3\n1 4 4\n1 2 2", "output": "10\n15\n5\n15\n5\n5\n2\n12\n3\n5" }, { "input": "4\n2 2 3 6\n9\n2 2 3\n1 1 3\n2 2 3\n2 2 3\n2 2 2\n1...
1,692,216,702
2,147,483,647
Python 3
MEMORY_LIMIT_EXCEEDED
TESTS
3
1,029
268,390,400
n = int(input()) v = list(map(int,input().split())) u = sorted(v) dv, du = {}, {} for l in range(1,n+1): for r in range(l,n+1): if l==r: dv[(l,r)] = v[r-1] du[(l,r)] = u[r-1] continue dv[(l,r)] = dv[(l,r-1)] + v[r-1] du[(l,r)] = du[(l,r-1)] + u...
Title: Kuriyama Mirai's Stones Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kuriyama Mirai has killed many monsters and got many (namely *n*) stones. She numbers the stones from 1 to *n*. The cost of the *i*-th stone is *v**i*. Kuriyama Mirai wants to know something about these stones s...
```python n = int(input()) v = list(map(int,input().split())) u = sorted(v) dv, du = {}, {} for l in range(1,n+1): for r in range(l,n+1): if l==r: dv[(l,r)] = v[r-1] du[(l,r)] = u[r-1] continue dv[(l,r)] = dv[(l,r-1)] + v[r-1] du[(l,r)] = du[(l...
0
984
A
Game
PROGRAMMING
800
[ "sortings" ]
null
null
Two players play a game. Initially there are $n$ integers $a_1, a_2, \ldots, a_n$ written on the board. Each turn a player selects one number and erases it from the board. This continues until there is only one number left on the board, i. e. $n - 1$ turns are made. The first player makes the first move, then players ...
The first line contains one integer $n$ ($1 \le n \le 1000$) — the number of numbers on the board. The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ($1 \le a_i \le 10^6$).
Print one number that will be left on the board.
[ "3\n2 1 3\n", "3\n2 2 2\n" ]
[ "2", "2" ]
In the first sample, the first player erases $3$ and the second erases $1$. $2$ is left on the board. In the second sample, $2$ is left on the board regardless of the actions of the players.
500
[ { "input": "3\n2 1 3", "output": "2" }, { "input": "3\n2 2 2", "output": "2" }, { "input": "9\n44 53 51 80 5 27 74 79 94", "output": "53" }, { "input": "10\n38 82 23 37 96 4 81 60 67 86", "output": "60" }, { "input": "10\n58 26 77 15 53 81 68 48 22 65", "outpu...
1,613,723,085
2,147,483,647
Python 3
OK
TESTS
35
77
307,200
n=int(input()) li=[int(i) for i in input().split()] i=0 while(len(li)!=1): if i%2==0: li.remove(max(li)) else: li.remove(min(li)) i+=1 print(*li)
Title: Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two players play a game. Initially there are $n$ integers $a_1, a_2, \ldots, a_n$ written on the board. Each turn a player selects one number and erases it from the board. This continues until there is only one number left on the...
```python n=int(input()) li=[int(i) for i in input().split()] i=0 while(len(li)!=1): if i%2==0: li.remove(max(li)) else: li.remove(min(li)) i+=1 print(*li) ```
3
366
A
Dima and Guards
PROGRAMMING
1,100
[ "implementation" ]
null
null
Nothing has changed since the last round. Dima and Inna still love each other and want to be together. They've made a deal with Seryozha and now they need to make a deal with the dorm guards... There are four guardposts in Dima's dorm. Each post contains two guards (in Russia they are usually elderly women). You can b...
The first line of the input contains integer *n* (1<=≤<=*n*<=≤<=105) — the money Dima wants to spend. Then follow four lines describing the guardposts. Each line contains four integers *a*,<=*b*,<=*c*,<=*d* (1<=≤<=*a*,<=*b*,<=*c*,<=*d*<=≤<=105) — the minimum price of the chocolate and the minimum price of the juice for...
In a single line of the output print three space-separated integers: the number of the guardpost, the cost of the first present and the cost of the second present. If there is no guardpost Dima can sneak Inna through at such conditions, print -1 in a single line. The guardposts are numbered from 1 to 4 according to t...
[ "10\n5 6 5 6\n6 6 7 7\n5 8 6 6\n9 9 9 9\n", "10\n6 6 6 6\n7 7 7 7\n4 4 4 4\n8 8 8 8\n", "5\n3 3 3 3\n3 3 3 3\n3 3 3 3\n3 3 3 3\n" ]
[ "1 5 5\n", "3 4 6\n", "-1\n" ]
Explanation of the first example. The only way to spend 10 rubles to buy the gifts that won't be less than the minimum prices is to buy two 5 ruble chocolates to both guards from the first guardpost. Explanation of the second example. Dima needs 12 rubles for the first guardpost, 14 for the second one, 16 for the fo...
500
[ { "input": "10\n5 6 5 6\n6 6 7 7\n5 8 6 6\n9 9 9 9", "output": "1 5 5" }, { "input": "10\n6 6 6 6\n7 7 7 7\n4 4 4 4\n8 8 8 8", "output": "3 4 6" }, { "input": "5\n3 3 3 3\n3 3 3 3\n3 3 3 3\n3 3 3 3", "output": "-1" }, { "input": "100000\n100000 100000 100000 100000\n100000 10...
1,513,962,554
2,147,483,647
PyPy 3
OK
TESTS
29
93
23,142,400
def main(): n = int(input()) g = [] for i in range(4): g.append(list(map(int, input().split(' ')))) for i in range(4): a = min(g[i][0], g[i][1]) b = min(g[i][2], g[i][3]) if a + b <= n: return "{} {} {}".format(i + 1, a, b + (n - a - b)) return -1 print(ma...
Title: Dima and Guards Time Limit: None seconds Memory Limit: None megabytes Problem Description: Nothing has changed since the last round. Dima and Inna still love each other and want to be together. They've made a deal with Seryozha and now they need to make a deal with the dorm guards... There are four guardpost...
```python def main(): n = int(input()) g = [] for i in range(4): g.append(list(map(int, input().split(' ')))) for i in range(4): a = min(g[i][0], g[i][1]) b = min(g[i][2], g[i][3]) if a + b <= n: return "{} {} {}".format(i + 1, a, b + (n - a - b)) return -...
3
785
A
Anton and Polyhedrons
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Anton's favourite geometric figures are regular polyhedrons. Note that there are five kinds of regular polyhedrons: - Tetrahedron. Tetrahedron has 4 triangular faces. - Cube. Cube has 6 square faces. - Octahedron. Octahedron has 8 triangular faces. - Dodecahedron. Dodecahedron has 12 pentagonal faces. - Icosahed...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of polyhedrons in Anton's collection. Each of the following *n* lines of the input contains a string *s**i* — the name of the *i*-th polyhedron in Anton's collection. The string can look like this: - "Tetrahedron" (withou...
Output one number — the total number of faces in all the polyhedrons in Anton's collection.
[ "4\nIcosahedron\nCube\nTetrahedron\nDodecahedron\n", "3\nDodecahedron\nOctahedron\nOctahedron\n" ]
[ "42\n", "28\n" ]
In the first sample Anton has one icosahedron, one cube, one tetrahedron and one dodecahedron. Icosahedron has 20 faces, cube has 6 faces, tetrahedron has 4 faces and dodecahedron has 12 faces. In total, they have 20 + 6 + 4 + 12 = 42 faces.
500
[ { "input": "4\nIcosahedron\nCube\nTetrahedron\nDodecahedron", "output": "42" }, { "input": "3\nDodecahedron\nOctahedron\nOctahedron", "output": "28" }, { "input": "25\nIcosahedron\nOctahedron\nTetrahedron\nDodecahedron\nCube\nIcosahedron\nOctahedron\nCube\nTetrahedron\nIcosahedron\nIcosa...
1,676,490,299
2,147,483,647
Python 3
OK
TESTS
30
296
0
T = int(input().strip()) count = 0 for _ in range(T): poly = input().strip() if(poly == "Tetrahedron"): count += 4 elif(poly == "Cube"): count += 6 elif(poly == "Octahedron"): count += 8 elif(poly == "Dodecahedron"): count += 12 elif(poly == "Icosahedron"): count += 20 print(count)
Title: Anton and Polyhedrons Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anton's favourite geometric figures are regular polyhedrons. Note that there are five kinds of regular polyhedrons: - Tetrahedron. Tetrahedron has 4 triangular faces. - Cube. Cube has 6 square faces. - Octahe...
```python T = int(input().strip()) count = 0 for _ in range(T): poly = input().strip() if(poly == "Tetrahedron"): count += 4 elif(poly == "Cube"): count += 6 elif(poly == "Octahedron"): count += 8 elif(poly == "Dodecahedron"): count += 12 elif(poly == "Icosahedron"): count += 20 print(coun...
3