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
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,696,437,140
2,147,483,647
Python 3
OK
TESTS
25
92
0
matrix=[list(map(int,input().split())) for _ in range(5)] row_wo=-1 col_wo=-1 for i in range(5): for j in range(5): if matrix[i][j]==1: row_wo=i col_wo=j vertical_moves=abs(2-row_wo) horizontal_moves=abs(2-col_wo) print(vertical_moves+horizontal_moves)
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 matrix=[list(map(int,input().split())) for _ in range(5)] row_wo=-1 col_wo=-1 for i in range(5): for j in range(5): if matrix[i][j]==1: row_wo=i col_wo=j vertical_moves=abs(2-row_wo) horizontal_moves=abs(2-col_wo) print(vertical_moves+horizontal_moves) ```
3
160
A
Twins
PROGRAMMING
900
[ "greedy", "sortings" ]
null
null
Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very well know what it's like. Now let's imagine a typical morning in your family. You haven't w...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of coins. The second line contains a sequence of *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=100) — the coins' values. All numbers are separated with spaces.
In the single line print the single number — the minimum needed number of coins.
[ "2\n3 3\n", "3\n2 1 2\n" ]
[ "2\n", "2\n" ]
In the first sample you will have to take 2 coins (you and your twin have sums equal to 6, 0 correspondingly). If you take 1 coin, you get sums 3, 3. If you take 0 coins, you get sums 0, 6. Those variants do not satisfy you as your sum should be strictly more that your twins' sum. In the second sample one coin isn't e...
500
[ { "input": "2\n3 3", "output": "2" }, { "input": "3\n2 1 2", "output": "2" }, { "input": "1\n5", "output": "1" }, { "input": "5\n4 2 2 2 2", "output": "3" }, { "input": "7\n1 10 1 2 1 1 1", "output": "1" }, { "input": "5\n3 2 3 3 1", "output": "3" ...
1,694,357,467
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
62
0
n = int(input()) coin_list = sorted(list(map(int,input().split()))) coin_list.reverse() number = sum(coin_list) if n == int(len(coin_list)): for i in range(n): if sum(coin_list[0:i]) > n-sum(coin_list[0:i]): k = i + 1 break print(k)
Title: Twins Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very w...
```python n = int(input()) coin_list = sorted(list(map(int,input().split()))) coin_list.reverse() number = sum(coin_list) if n == int(len(coin_list)): for i in range(n): if sum(coin_list[0:i]) > n-sum(coin_list[0:i]): k = i + 1 break print(k) ```
-1
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,655,916,220
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n = int(input()) m = int(input()) a = int(input()) x = int(n/a) if (n%a) != 0: x+=1 y = int(m/a) if (m%a) != 0: y+=1 print(x*y) #https://vjudge.net/contest/500525#problem/E
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 = int(input()) m = int(input()) a = int(input()) x = int(n/a) if (n%a) != 0: x+=1 y = int(m/a) if (m%a) != 0: y+=1 print(x*y) #https://vjudge.net/contest/500525#problem/E ```
-1
114
A
Cifera
PROGRAMMING
1,000
[ "math" ]
null
null
When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousand and "tma tmyschaya" (which literally means "the tma of tmas") used to stand for a million...
The first input line contains integer number *k*, the second line contains integer number *l* (2<=≤<=*k*,<=*l*<=≤<=231<=-<=1).
You should print in the first line of the output "YES", if the number belongs to the set petriciumus cifera and otherwise print "NO". If the number belongs to the set, then print on the seconds line the only number — the importance of number *l*.
[ "5\n25\n", "3\n8\n" ]
[ "YES\n1\n", "NO\n" ]
none
500
[ { "input": "5\n25", "output": "YES\n1" }, { "input": "3\n8", "output": "NO" }, { "input": "123\n123", "output": "YES\n0" }, { "input": "99\n970300", "output": "NO" }, { "input": "1000\n6666666", "output": "NO" }, { "input": "59\n3571", "output": "N...
1,571,068,027
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
186
0
n = int(input()) k = int(input()) err = 0 s = 0 while err != 1 and n != k: if n % k == 0: n /= k s += 1 else: err = 1 if err == 1: print("NO") else: print("YES") print(s)
Title: Cifera Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousa...
```python n = int(input()) k = int(input()) err = 0 s = 0 while err != 1 and n != k: if n % k == 0: n /= k s += 1 else: err = 1 if err == 1: print("NO") else: print("YES") print(s) ```
0
669
A
Little Artem and Presents
PROGRAMMING
800
[ "math" ]
null
null
Little Artem got *n* stones on his birthday and now wants to give some of them to Masha. He knows that Masha cares more about the fact of receiving the present, rather than the value of that present, so he wants to give her stones as many times as possible. However, Masha remembers the last present she received, so Art...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=109) — number of stones Artem received on his birthday.
Print the maximum possible number of times Artem can give presents to Masha.
[ "1\n", "2\n", "3\n", "4\n" ]
[ "1\n", "1\n", "2\n", "3\n" ]
In the first sample, Artem can only give 1 stone to Masha. In the second sample, Atrem can give Masha 1 or 2 stones, though he can't give her 1 stone two times. In the third sample, Atrem can first give Masha 2 stones, a then 1 more stone. In the fourth sample, Atrem can first give Masha 1 stone, then 2 stones, and ...
500
[ { "input": "1", "output": "1" }, { "input": "2", "output": "1" }, { "input": "3", "output": "2" }, { "input": "4", "output": "3" }, { "input": "100", "output": "67" }, { "input": "101", "output": "67" }, { "input": "102", "output": "68"...
1,470,267,569
2,147,483,647
Python 3
OK
TESTS
26
62
0
n = int(input()) k = 0 if n in range(3,n+1,3): a = 2+2*((n-3)/3) else: a = 3+2*(((n-n%3)-3)/3) print(int(a))
Title: Little Artem and Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Artem got *n* stones on his birthday and now wants to give some of them to Masha. He knows that Masha cares more about the fact of receiving the present, rather than the value of that present, so he wan...
```python n = int(input()) k = 0 if n in range(3,n+1,3): a = 2+2*((n-3)/3) else: a = 3+2*(((n-n%3)-3)/3) print(int(a)) ```
3
892
B
Wrath
PROGRAMMING
1,200
[ "greedy", "implementation", "two pointers" ]
null
null
Hands that shed innocent blood! There are *n* guilty people in a line, the *i*-th of them holds a claw with length *L**i*. The bell rings and every person kills some of people in front of him. All people kill others at the same time. Namely, the *i*-th person kills the *j*-th person if and only if *j*<=&lt;<=*i* and *...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=106) — the number of guilty people. Second line contains *n* space-separated integers *L*1,<=*L*2,<=...,<=*L**n* (0<=≤<=*L**i*<=≤<=109), where *L**i* is the length of the *i*-th person's claw.
Print one integer — the total number of alive people after the bell rings.
[ "4\n0 1 0 10\n", "2\n0 0\n", "10\n1 1 3 0 0 0 2 1 0 3\n" ]
[ "1\n", "2\n", "3\n" ]
In first sample the last person kills everyone in front of him.
1,000
[ { "input": "4\n0 1 0 10", "output": "1" }, { "input": "2\n0 0", "output": "2" }, { "input": "10\n1 1 3 0 0 0 2 1 0 3", "output": "3" }, { "input": "10\n0 0 2 0 0 3 3 2 2 0", "output": "2" }, { "input": "1\n0", "output": "1" }, { "input": "5\n0 0 0 1 0"...
1,560,421,528
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
8
2,000
77,107,200
n = int(input()) a = list(map(int, input().split(' '))) d = [0] * (n+1) for i in range(n-1, 0, -1): for j in range(1,a[i]+1): # print("i-j ", i-j) if j <= i: d[i-j] += 1 cnt = 0 for i in range(n): if d[i] == 0: # print(i) cnt += 1 print(cnt)
Title: Wrath Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hands that shed innocent blood! There are *n* guilty people in a line, the *i*-th of them holds a claw with length *L**i*. The bell rings and every person kills some of people in front of him. All people kill others at the same ...
```python n = int(input()) a = list(map(int, input().split(' '))) d = [0] * (n+1) for i in range(n-1, 0, -1): for j in range(1,a[i]+1): # print("i-j ", i-j) if j <= i: d[i-j] += 1 cnt = 0 for i in range(n): if d[i] == 0: # print(i) cnt += 1 print(cnt) ```
0
620
A
Professor GukiZ's Robot
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Professor GukiZ makes a new robot. The robot are in the point with coordinates (*x*1,<=*y*1) and should go to the point (*x*2,<=*y*2). In a single step the robot can change any of its coordinates (maybe both of them) by one (decrease or increase). So the robot can move in one of the 8 directions. Find the minimal numbe...
The first line contains two integers *x*1,<=*y*1 (<=-<=109<=≤<=*x*1,<=*y*1<=≤<=109) — the start position of the robot. The second line contains two integers *x*2,<=*y*2 (<=-<=109<=≤<=*x*2,<=*y*2<=≤<=109) — the finish position of the robot.
Print the only integer *d* — the minimal number of steps to get the finish position.
[ "0 0\n4 5\n", "3 4\n6 1\n" ]
[ "5\n", "3\n" ]
In the first example robot should increase both of its coordinates by one four times, so it will be in position (4, 4). After that robot should simply increase its *y* coordinate and get the finish position. In the second example robot should simultaneously increase *x* coordinate and decrease *y* coordinate by one th...
0
[ { "input": "0 0\n4 5", "output": "5" }, { "input": "3 4\n6 1", "output": "3" }, { "input": "0 0\n4 6", "output": "6" }, { "input": "1 1\n-3 -5", "output": "6" }, { "input": "-1 -1\n-10 100", "output": "101" }, { "input": "1 -1\n100 -100", "output":...
1,513,142,907
2,147,483,647
Python 3
OK
TESTS
75
62
5,632,000
p1=list(map(int,input().split())) x1=p1[0] y1=p1[1] p2=list(map(int,input().split())) x2=p2[0] y2=p2[1] yo1=abs(x1-x2) yo2=abs(y1-y2) chota=min(yo1,yo2) bada=max(yo1,yo2) ans=chota+(bada-chota) print(ans)
Title: Professor GukiZ's Robot Time Limit: None seconds Memory Limit: None megabytes Problem Description: Professor GukiZ makes a new robot. The robot are in the point with coordinates (*x*1,<=*y*1) and should go to the point (*x*2,<=*y*2). In a single step the robot can change any of its coordinates (maybe both of ...
```python p1=list(map(int,input().split())) x1=p1[0] y1=p1[1] p2=list(map(int,input().split())) x2=p2[0] y2=p2[1] yo1=abs(x1-x2) yo2=abs(y1-y2) chota=min(yo1,yo2) bada=max(yo1,yo2) ans=chota+(bada-chota) print(ans) ```
3
137
B
Permutation
PROGRAMMING
1,000
[ "greedy" ]
null
null
"Hey, it's homework time" — thought Polycarpus and of course he started with his favourite subject, IT. Polycarpus managed to solve all tasks but for the last one in 20 minutes. However, as he failed to solve the last task after some considerable time, the boy asked you to help him. The sequence of *n* integers is cal...
The first line of the input data contains an integer *n* (1<=≤<=*n*<=≤<=5000) which represents how many numbers are in the sequence. The second line contains a sequence of integers *a**i* (1<=≤<=*a**i*<=≤<=5000,<=1<=≤<=*i*<=≤<=*n*).
Print the only number — the minimum number of changes needed to get the permutation.
[ "3\n3 1 2\n", "2\n2 2\n", "5\n5 3 3 3 1\n" ]
[ "0\n", "1\n", "2\n" ]
The first sample contains the permutation, which is why no replacements are required. In the second sample it is enough to replace the first element with the number 1 and that will make the sequence the needed permutation. In the third sample we can replace the second element with number 4 and the fourth element with...
1,000
[ { "input": "3\n3 1 2", "output": "0" }, { "input": "2\n2 2", "output": "1" }, { "input": "5\n5 3 3 3 1", "output": "2" }, { "input": "5\n6 6 6 6 6", "output": "5" }, { "input": "10\n1 1 2 2 8 8 7 7 9 9", "output": "5" }, { "input": "8\n9 8 7 6 5 4 3 2"...
1,693,560,587
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
62
0
n = int(input()) arr = list(map(int, input().split())) arr_sorted = sorted(arr) expected = 1 count = 0 for element in arr_sorted : if element != expected: count+=1 expected+=1 print(count)
Title: Permutation Time Limit: None seconds Memory Limit: None megabytes Problem Description: "Hey, it's homework time" — thought Polycarpus and of course he started with his favourite subject, IT. Polycarpus managed to solve all tasks but for the last one in 20 minutes. However, as he failed to solve the last task ...
```python n = int(input()) arr = list(map(int, input().split())) arr_sorted = sorted(arr) expected = 1 count = 0 for element in arr_sorted : if element != expected: count+=1 expected+=1 print(count) ```
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,675,519,478
2,147,483,647
Python 3
OK
TESTS
52
92
4,300,800
# LUOGU_RID: 101468449 n, *a = map(int, open(0).read().split()) s = sum(a) & 1 print(n - sum((x & 1) ^ s for x in a))
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 # LUOGU_RID: 101468449 n, *a = map(int, open(0).read().split()) s = sum(a) & 1 print(n - sum((x & 1) ^ s for x in a)) ```
3
897
A
Scarborough Fair
PROGRAMMING
800
[ "implementation" ]
null
null
Parsley, sage, rosemary and thyme. Remember me to one who lives there. He once was the true love of mine. Willem is taking the girl to the highest building in island No.28, however, neither of them knows how to get there. Willem asks his friend, Grick for directions, Grick helped them, and gave them a task. Althou...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100). The second line contains a string *s* of length *n*, consisting of lowercase English letters. Each of the next *m* lines contains four parameters *l*,<=*r*,<=*c*1,<=*c*2 (1<=≤<=*l*<=≤<=*r*<=≤<=*n*, *c*1,<=*c*2 are lowercase English letters), ...
Output string *s* after performing *m* operations described above.
[ "3 1\nioi\n1 1 i n\n", "5 3\nwxhak\n3 3 h x\n1 5 x a\n1 3 w g\n" ]
[ "noi", "gaaak" ]
For the second example: After the first operation, the string is wxxak. After the second operation, the string is waaak. After the third operation, the string is gaaak.
500
[ { "input": "3 1\nioi\n1 1 i n", "output": "noi" }, { "input": "5 3\nwxhak\n3 3 h x\n1 5 x a\n1 3 w g", "output": "gaaak" }, { "input": "9 51\nbhfbdcgff\n2 3 b b\n2 8 e f\n3 8 g f\n5 7 d a\n1 5 e b\n3 4 g b\n6 7 c d\n3 6 e g\n3 6 e h\n5 6 a e\n7 9 a c\n4 9 a h\n3 7 c b\n6 9 b g\n1 7 h b\n...
1,573,157,749
2,147,483,647
Python 3
OK
TESTS
47
124
0
n,m=map(int,input().split()) k=input() s=[] for i in k: s.append(i) for i in range(m): a,b,c,d=input().split() for j in range(int(a)-1,int(b)): if s[j]==c: s[j]=d for i in s: print(i,end='')
Title: Scarborough Fair Time Limit: None seconds Memory Limit: None megabytes Problem Description: Parsley, sage, rosemary and thyme. Remember me to one who lives there. He once was the true love of mine. Willem is taking the girl to the highest building in island No.28, however, neither of them knows how to get ...
```python n,m=map(int,input().split()) k=input() s=[] for i in k: s.append(i) for i in range(m): a,b,c,d=input().split() for j in range(int(a)-1,int(b)): if s[j]==c: s[j]=d for i in s: print(i,end='') ```
3
805
A
Fake NP
PROGRAMMING
1,000
[ "greedy", "math" ]
null
null
Tavak and Seyyed are good friends. Seyyed is very funny and he told Tavak to solve the following problem instead of longest-path. You are given *l* and *r*. For all integers from *l* to *r*, inclusive, we wrote down all of their integer divisors except 1. Find the integer that we wrote down the maximum number of times...
The first line contains two integers *l* and *r* (2<=≤<=*l*<=≤<=*r*<=≤<=109).
Print single integer, the integer that appears maximum number of times in the divisors. If there are multiple answers, print any of them.
[ "19 29\n", "3 6\n" ]
[ "2\n", "3\n" ]
Definition of a divisor: [https://www.mathsisfun.com/definitions/divisor-of-an-integer-.html](https://www.mathsisfun.com/definitions/divisor-of-an-integer-.html) The first example: from 19 to 29 these numbers are divisible by 2: {20, 22, 24, 26, 28}. The second example: from 3 to 6 these numbers are divisible by 3: {...
500
[ { "input": "19 29", "output": "2" }, { "input": "3 6", "output": "2" }, { "input": "39 91", "output": "2" }, { "input": "76 134", "output": "2" }, { "input": "93 95", "output": "2" }, { "input": "17 35", "output": "2" }, { "input": "94 95",...
1,624,720,944
2,147,483,647
Python 3
OK
TESTS
93
77
0
l,r=map(int,input().split()) if r-l+1>10: print(2) elif l==r: print(l) else: x,y=0,0 for i in range(l,r+1): if i%2==0: x+=1 elif i%3==0: y+=1 if x>y: print(2) else: print(3)
Title: Fake NP Time Limit: None seconds Memory Limit: None megabytes Problem Description: Tavak and Seyyed are good friends. Seyyed is very funny and he told Tavak to solve the following problem instead of longest-path. You are given *l* and *r*. For all integers from *l* to *r*, inclusive, we wrote down all of the...
```python l,r=map(int,input().split()) if r-l+1>10: print(2) elif l==r: print(l) else: x,y=0,0 for i in range(l,r+1): if i%2==0: x+=1 elif i%3==0: y+=1 if x>y: print(2) else: print(3) ```
3
760
B
Frodo and pillows
PROGRAMMING
1,500
[ "binary search", "greedy" ]
null
null
*n* hobbits are planning to spend the night at Frodo's house. Frodo has *n* beds standing in a row and *m* pillows (*n*<=≤<=*m*). Each hobbit needs a bed and at least one pillow to sleep, however, everyone wants as many pillows as possible. Of course, it's not always possible to share pillows equally, but any hobbit ge...
The only line contain three integers *n*, *m* and *k* (1<=≤<=*n*<=≤<=*m*<=≤<=109, 1<=≤<=*k*<=≤<=*n*) — the number of hobbits, the number of pillows and the number of Frodo's bed.
Print single integer — the maximum number of pillows Frodo can have so that no one is hurt.
[ "4 6 2\n", "3 10 3\n", "3 6 1\n" ]
[ "2\n", "4\n", "3\n" ]
In the first example Frodo can have at most two pillows. In this case, he can give two pillows to the hobbit on the first bed, and one pillow to each of the hobbits on the third and the fourth beds. In the second example Frodo can take at most four pillows, giving three pillows to each of the others. In the third exa...
1,000
[ { "input": "4 6 2", "output": "2" }, { "input": "3 10 3", "output": "4" }, { "input": "3 6 1", "output": "3" }, { "input": "3 3 3", "output": "1" }, { "input": "1 1 1", "output": "1" }, { "input": "1 1000000000 1", "output": "1000000000" }, { ...
1,485,174,419
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
4,812,800
from math import * n,m,k=map(int,input().split()) r,l=0,0 if k!=n: r=n-k if k!=1: l=k-1 s=max(l,r)+1 if l>r: S=((1+l)*(l)//2)+((s-1+s-r)*r//2) else: S=((1+r)*(r)//2)+((s-1+s-l)*l//2) S+=max(l,r)+1 print(S,s) L,R=max(l,r),min(l,r) if (L-1)>R: B=False L-=1 else: L-=1 ...
Title: Frodo and pillows Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* hobbits are planning to spend the night at Frodo's house. Frodo has *n* beds standing in a row and *m* pillows (*n*<=≤<=*m*). Each hobbit needs a bed and at least one pillow to sleep, however, everyone wants as ma...
```python from math import * n,m,k=map(int,input().split()) r,l=0,0 if k!=n: r=n-k if k!=1: l=k-1 s=max(l,r)+1 if l>r: S=((1+l)*(l)//2)+((s-1+s-r)*r//2) else: S=((1+r)*(r)//2)+((s-1+s-l)*l//2) S+=max(l,r)+1 print(S,s) L,R=max(l,r),min(l,r) if (L-1)>R: B=False L-=1 else: ...
0
614
B
Gena's Code
PROGRAMMING
1,400
[ "implementation", "math" ]
null
null
It's the year 4527 and the tanks game that we all know and love still exists. There also exists Great Gena's code, written in 2016. The problem this code solves is: given the number of tanks that go into the battle from each country, find their product. If it is turns to be too large, then the servers might have not en...
The first line of the input contains the number of countries *n* (1<=≤<=*n*<=≤<=100<=000). The second line contains *n* non-negative integers *a**i* without leading zeroes — the number of tanks of the *i*-th country. It is guaranteed that the second line contains at least *n*<=-<=1 beautiful numbers and the total leng...
Print a single number without leading zeroes — the product of the number of tanks presented by each country.
[ "3\n5 10 1\n", "4\n1 1 10 11\n", "5\n0 3 1 100 1\n" ]
[ "50", "110", "0" ]
In sample 1 numbers 10 and 1 are beautiful, number 5 is not not. In sample 2 number 11 is not beautiful (contains two '1's), all others are beautiful. In sample 3 number 3 is not beautiful, all others are beautiful.
1,000
[ { "input": "3\n5 10 1", "output": "50" }, { "input": "4\n1 1 10 11", "output": "110" }, { "input": "5\n0 3 1 100 1", "output": "0" }, { "input": "40\n10 100 10 1 10 10 100 10 10 100 10 100 100 10 1824868942 100 100 1 10 100 100 10 100 100 10 100 10 1 10 100 100 100 10 1 10 1 ...
1,694,788,065
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
x = int(input()) ans = 1 for i in range(x): temp = int(input) ans = ans * temp print(ans)
Title: Gena's Code Time Limit: None seconds Memory Limit: None megabytes Problem Description: It's the year 4527 and the tanks game that we all know and love still exists. There also exists Great Gena's code, written in 2016. The problem this code solves is: given the number of tanks that go into the battle from eac...
```python x = int(input()) ans = 1 for i in range(x): temp = int(input) ans = ans * temp print(ans) ```
-1
230
B
T-primes
PROGRAMMING
1,300
[ "binary search", "implementation", "math", "number theory" ]
null
null
We know that prime numbers are positive integers that have exactly two distinct positive divisors. Similarly, we'll call a positive integer *t* Т-prime, if *t* has exactly three distinct positive divisors. You are given an array of *n* positive integers. For each of them determine whether it is Т-prime or not.
The first line contains a single positive integer, *n* (1<=≤<=*n*<=≤<=105), showing how many numbers are in the array. The next line contains *n* space-separated integers *x**i* (1<=≤<=*x**i*<=≤<=1012). Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is advised to use the cin, cout st...
Print *n* lines: the *i*-th line should contain "YES" (without the quotes), if number *x**i* is Т-prime, and "NO" (without the quotes), if it isn't.
[ "3\n4 5 6\n" ]
[ "YES\nNO\nNO\n" ]
The given test has three numbers. The first number 4 has exactly three divisors — 1, 2 and 4, thus the answer for this number is "YES". The second number 5 has two divisors (1 and 5), and the third number 6 has four divisors (1, 2, 3, 6), hence the answer for them is "NO".
500
[ { "input": "3\n4 5 6", "output": "YES\nNO\nNO" }, { "input": "2\n48 49", "output": "NO\nYES" }, { "input": "10\n10 9 8 7 6 5 4 3 2 1", "output": "NO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO" }, { "input": "1\n36", "output": "NO" }, { "input": "1\n999966000289", "...
1,699,848,466
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
62
0
n=int(input()) a=list(map(int,input().split())) m=int(max(a)**.5)+10 p=[1]*(m+1) p[0]=0; p[1]=0; i=0 while i*i<=m: if p[i]: for j in range(i*i, m+1, i): p[j]=0 for x in range(len(a)): if i*i==a[x]: a[x]=0 i+=1 for i in a: print('YES' if not i else 'NO')
Title: T-primes Time Limit: None seconds Memory Limit: None megabytes Problem Description: We know that prime numbers are positive integers that have exactly two distinct positive divisors. Similarly, we'll call a positive integer *t* Т-prime, if *t* has exactly three distinct positive divisors. You are given an ar...
```python n=int(input()) a=list(map(int,input().split())) m=int(max(a)**.5)+10 p=[1]*(m+1) p[0]=0; p[1]=0; i=0 while i*i<=m: if p[i]: for j in range(i*i, m+1, i): p[j]=0 for x in range(len(a)): if i*i==a[x]: a[x]=0 i+=1 for i in a: print('YES' if not i el...
0
630
A
Again Twenty Five!
PROGRAMMING
800
[ "number theory" ]
null
null
The HR manager was disappointed again. The last applicant failed the interview the same way as 24 previous ones. "Do I give such a hard task?" — the HR manager thought. "Just raise number 5 to the power of *n* and get last two digits of the number. Yes, of course, *n* can be rather big, and one cannot find the power us...
The only line of the input contains a single integer *n* (2<=≤<=*n*<=≤<=2·1018) — the power in which you need to raise number 5.
Output the last two digits of 5*n* without spaces between them.
[ "2\n" ]
[ "25" ]
none
0
[ { "input": "2", "output": "25" }, { "input": "7", "output": "25" }, { "input": "1000000000000000000", "output": "25" }, { "input": "2000000000000000000", "output": "25" }, { "input": "987654321012345678", "output": "25" } ]
1,693,137,379
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
2
500
5,222,400
i = int(input()) x = 5**i l = str(x) c = l[::-1] v = c[0:2] g = v[::-1] print(g)
Title: Again Twenty Five! Time Limit: None seconds Memory Limit: None megabytes Problem Description: The HR manager was disappointed again. The last applicant failed the interview the same way as 24 previous ones. "Do I give such a hard task?" — the HR manager thought. "Just raise number 5 to the power of *n* and ge...
```python i = int(input()) x = 5**i l = str(x) c = l[::-1] v = c[0:2] g = v[::-1] print(g) ```
0
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,548,858,814
2,147,483,647
Python 3
OK
TESTS
36
483
22,835,200
n = int(input()) e = input() a = [int(x) for x in e.split()] a.sort(reverse=True) ans, ans1 = sum(a), sum(a) for i in range(len(a) - 1, 0, -1): ans += a[i] ans1 -= a[i] ans += ans1 print(ans)
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()) e = input() a = [int(x) for x in e.split()] a.sort(reverse=True) ans, ans1 = sum(a), sum(a) for i in range(len(a) - 1, 0, -1): ans += a[i] ans1 -= a[i] ans += ans1 print(ans) ```
3
637
B
Chat Order
PROGRAMMING
1,200
[ "*special", "binary search", "constructive algorithms", "data structures", "sortings" ]
null
null
Polycarp is a big lover of killing time in social networks. A page with a chatlist in his favourite network is made so that when a message is sent to some friend, his friend's chat rises to the very top of the page. The relative order of the other chats doesn't change. If there was no chat with this friend before, then...
The first line contains integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of Polycarpus' messages. Next *n* lines enlist the message recipients in the order in which the messages were sent. The name of each participant is a non-empty sequence of lowercase English letters of length at most 10.
Print all the recipients to who Polycarp talked to in the order of chats with them, from top to bottom.
[ "4\nalex\nivan\nroman\nivan\n", "8\nalina\nmaria\nekaterina\ndarya\ndarya\nekaterina\nmaria\nalina\n" ]
[ "ivan\nroman\nalex\n", "alina\nmaria\nekaterina\ndarya\n" ]
In the first test case Polycarpus first writes to friend by name "alex", and the list looks as follows: 1. alex Then Polycarpus writes to friend by name "ivan" and the list looks as follows: 1. ivan 1. alex Polycarpus writes the third message to friend by name "roman" and the list looks as follows: 1. roman 1...
1,000
[ { "input": "4\nalex\nivan\nroman\nivan", "output": "ivan\nroman\nalex" }, { "input": "8\nalina\nmaria\nekaterina\ndarya\ndarya\nekaterina\nmaria\nalina", "output": "alina\nmaria\nekaterina\ndarya" }, { "input": "1\nwdi", "output": "wdi" }, { "input": "2\nypg\nypg", "outpu...
1,602,672,448
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
11
3,000
3,788,800
n = int(input()) a = [0]*n for i in range(n): a[i] = input() for i in range(n-1, -1, -1): if a[i] not in a[i+1:]: print(a[i])
Title: Chat Order Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp is a big lover of killing time in social networks. A page with a chatlist in his favourite network is made so that when a message is sent to some friend, his friend's chat rises to the very top of the page. The rela...
```python n = int(input()) a = [0]*n for i in range(n): a[i] = input() for i in range(n-1, -1, -1): if a[i] not in a[i+1:]: print(a[i]) ```
0
899
B
Months and Years
PROGRAMMING
1,200
[ "implementation" ]
null
null
Everybody in Russia uses Gregorian calendar. In this calendar there are 31 days in January, 28 or 29 days in February (depending on whether the year is leap or not), 31 days in March, 30 days in April, 31 days in May, 30 in June, 31 in July, 31 in August, 30 in September, 31 in October, 30 in November, 31 in December. ...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=24) — the number of integers. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (28<=≤<=*a**i*<=≤<=31) — the numbers you are to check.
If there are several consecutive months that fit the sequence, print "YES" (without quotes). Otherwise, print "NO" (without quotes). You can print each letter in arbitrary case (small or large).
[ "4\n31 31 30 31\n", "2\n30 30\n", "5\n29 31 30 31 30\n", "3\n31 28 30\n", "3\n31 31 28\n" ]
[ "Yes\n\n", "No\n\n", "Yes\n\n", "No\n\n", "Yes\n\n" ]
In the first example the integers can denote months July, August, September and October. In the second example the answer is no, because there are no two consecutive months each having 30 days. In the third example the months are: February (leap year) — March — April – May — June. In the fourth example the number of...
1,000
[ { "input": "4\n31 31 30 31", "output": "Yes" }, { "input": "2\n30 30", "output": "No" }, { "input": "5\n29 31 30 31 30", "output": "Yes" }, { "input": "3\n31 28 30", "output": "No" }, { "input": "3\n31 31 28", "output": "Yes" }, { "input": "24\n29 28 3...
1,521,050,407
2,147,483,647
Python 3
OK
TESTS
62
77
5,632,000
n = int(input()) mas1 = '312831303130313130313031' * 3 mas2 = '312831303130313130313031312831303130313130313031312931303130313130313031312831303130313130313031312831303130313130313031312831303130313130313031' mas3 = ''.join(list(input().split())) if mas3 in mas1 or mas3 in mas2: print("Yes") else: print(...
Title: Months and Years Time Limit: None seconds Memory Limit: None megabytes Problem Description: Everybody in Russia uses Gregorian calendar. In this calendar there are 31 days in January, 28 or 29 days in February (depending on whether the year is leap or not), 31 days in March, 30 days in April, 31 days in May, ...
```python n = int(input()) mas1 = '312831303130313130313031' * 3 mas2 = '312831303130313130313031312831303130313130313031312931303130313130313031312831303130313130313031312831303130313130313031312831303130313130313031' mas3 = ''.join(list(input().split())) if mas3 in mas1 or mas3 in mas2: print("Yes") else: ...
3
631
A
Interview
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
Blake is a CEO of a large company called "Blake Technologies". He loves his company very much and he thinks that his company should be the best. That is why every candidate needs to pass through the interview that consists of the following problem. We define function *f*(*x*,<=*l*,<=*r*) as a bitwise OR of integers *x...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the length of the arrays. The second line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=109). The third line contains *n* integers *b**i* (0<=≤<=*b**i*<=≤<=109).
Print a single integer — the maximum value of sum *f*(*a*,<=*l*,<=*r*)<=+<=*f*(*b*,<=*l*,<=*r*) among all possible 1<=≤<=*l*<=≤<=*r*<=≤<=*n*.
[ "5\n1 2 4 3 2\n2 3 3 12 1\n", "10\n13 2 7 11 8 4 9 8 5 1\n5 7 18 9 2 3 0 11 8 6\n" ]
[ "22", "46" ]
Bitwise OR of two non-negative integers *a* and *b* is the number *c* = *a* *OR* *b*, such that each of its digits in binary notation is 1 if and only if at least one of *a* or *b* have 1 in the corresponding position in binary notation. In the first sample, one of the optimal answers is *l* = 2 and *r* = 4, because *...
500
[ { "input": "5\n1 2 4 3 2\n2 3 3 12 1", "output": "22" }, { "input": "10\n13 2 7 11 8 4 9 8 5 1\n5 7 18 9 2 3 0 11 8 6", "output": "46" }, { "input": "25\n12 30 38 109 81 124 80 33 38 48 29 78 96 48 96 27 80 77 102 65 80 113 31 118 35\n25 64 95 13 12 6 111 80 85 16 61 119 23 65 73 65 20 9...
1,457,023,546
646
Python 3
WRONG_ANSWER
PRETESTS
0
46
0
n = int(input()) lst1 = list(map(int, input().split())) lst2 = list(map(int, input().split())) ans = -1 for i in range(n): s = lst1[i] s1 = lst2[i] for j in range(i + 1, n): s = s | lst1[j] s1 = s | lst2[j] ans = max(ans, s + s1)
Title: Interview Time Limit: None seconds Memory Limit: None megabytes Problem Description: Blake is a CEO of a large company called "Blake Technologies". He loves his company very much and he thinks that his company should be the best. That is why every candidate needs to pass through the interview that consists of...
```python n = int(input()) lst1 = list(map(int, input().split())) lst2 = list(map(int, input().split())) ans = -1 for i in range(n): s = lst1[i] s1 = lst2[i] for j in range(i + 1, n): s = s | lst1[j] s1 = s | lst2[j] ans = max(ans, s + s1) ```
0
985
F
Isomorphic Strings
PROGRAMMING
2,300
[ "hashing", "strings" ]
null
null
You are given a string *s* of length *n* consisting of lowercase English letters. For two given strings *s* and *t*, say *S* is the set of distinct characters of *s* and *T* is the set of distinct characters of *t*. The strings *s* and *t* are isomorphic if their lengths are equal and there is a one-to-one mapping (bi...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*n*<=≤<=2·105, 1<=≤<=*m*<=≤<=2·105) — the length of the string *s* and the number of queries. The second line contains string *s* consisting of *n* lowercase English letters. The following *m* lines contain a single query on each line: *x**i*, *y...
For each query in a separate line print "YES" if substrings *s*[*x**i*... *x**i*<=+<=*len**i*<=-<=1] and *s*[*y**i*... *y**i*<=+<=*len**i*<=-<=1] are isomorphic and "NO" otherwise.
[ "7 4\nabacaba\n1 1 1\n1 4 2\n2 1 3\n2 4 3\n" ]
[ "YES\nYES\nNO\nYES\n" ]
The queries in the example are following: 1. substrings "a" and "a" are isomorphic: *f*(*a*) = *a*; 1. substrings "ab" and "ca" are isomorphic: *f*(*a*) = *c*, *f*(*b*) = *a*; 1. substrings "bac" and "aba" are not isomorphic since *f*(*b*) and *f*(*c*) must be equal to *a* at same time; 1. substrings "bac" and "c...
0
[ { "input": "7 4\nabacaba\n1 1 1\n1 4 2\n2 1 3\n2 4 3", "output": "YES\nYES\nNO\nYES" }, { "input": "1 2\nz\n1 1 1\n1 1 1", "output": "YES\nYES" }, { "input": "36 4\naababcbbcbczaaawwwwwaaaabbbbtestbest\n1 7 6\n13 18 5\n23 26 3\n29 33 4", "output": "YES\nYES\nNO\nNO" }, { "inp...
1,527,325,378
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
1
93
716,800
from string import ascii_lowercase def main(): n, m = map(int, input().split()) s = input() M = 1000000009 h = {ch: [0 for _ in range(n + 1)] for ch in ascii_lowercase} for ch, l in h.items(): for i, e in enumerate(s, 1): if e == ch: l[i] = ((l[i - 1] << 1) + 1...
Title: Isomorphic Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a string *s* of length *n* consisting of lowercase English letters. For two given strings *s* and *t*, say *S* is the set of distinct characters of *s* and *T* is the set of distinct characters of *t*....
```python from string import ascii_lowercase def main(): n, m = map(int, input().split()) s = input() M = 1000000009 h = {ch: [0 for _ in range(n + 1)] for ch in ascii_lowercase} for ch, l in h.items(): for i, e in enumerate(s, 1): if e == ch: l[i] = ((l[i - 1]...
-1
982
A
Row
PROGRAMMING
1,200
[ "brute force", "constructive algorithms" ]
null
null
You're given a row with $n$ chairs. We call a seating of people "maximal" if the two following conditions hold: 1. There are no neighbors adjacent to anyone seated. 1. It's impossible to seat one more person without violating the first rule. The seating is given as a string consisting of zeros and ones ($0$ means t...
The first line contains a single integer $n$ ($1 \leq n \leq 1000$) — the number of chairs. The next line contains a string of $n$ characters, each of them is either zero or one, describing the seating.
Output "Yes" (without quotation marks) if the seating is "maximal". Otherwise print "No". You are allowed to print letters in whatever case you'd like (uppercase or lowercase).
[ "3\n101\n", "4\n1011\n", "5\n10001\n" ]
[ "Yes\n", "No\n", "No\n" ]
In sample case one the given seating is maximal. In sample case two the person at chair three has a neighbour to the right. In sample case three it is possible to seat yet another person into chair three.
500
[ { "input": "3\n101", "output": "Yes" }, { "input": "4\n1011", "output": "No" }, { "input": "5\n10001", "output": "No" }, { "input": "1\n0", "output": "No" }, { "input": "1\n1", "output": "Yes" }, { "input": "100\n010100101010100101001001010100101010010...
1,618,773,985
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
7
93
0
def solve(s): full = [] empty = [] counter = 1 for i in range(1, len(s)): if s[i - 1] == s[i]: counter += 1 else: if s[i - 1] == '0': empty.append(counter) else: full.append(counter) counter = 1 ...
Title: Row Time Limit: None seconds Memory Limit: None megabytes Problem Description: You're given a row with $n$ chairs. We call a seating of people "maximal" if the two following conditions hold: 1. There are no neighbors adjacent to anyone seated. 1. It's impossible to seat one more person without violating th...
```python def solve(s): full = [] empty = [] counter = 1 for i in range(1, len(s)): if s[i - 1] == s[i]: counter += 1 else: if s[i - 1] == '0': empty.append(counter) else: full.append(counter) cou...
0
2
B
The least round way
PROGRAMMING
2,000
[ "dp", "math" ]
B. The least round way
2
64
There is a square matrix *n*<=×<=*n*, consisting of non-negative integer numbers. You should find such a way on it that - starts in the upper left cell of the matrix; - each following cell is to the right or down from the current cell; - the way ends in the bottom right cell. Moreover, if we multiply together all...
The first line contains an integer number *n* (2<=≤<=*n*<=≤<=1000), *n* is the size of the matrix. Then follow *n* lines containing the matrix elements (non-negative integer numbers not exceeding 109).
In the first line print the least number of trailing zeros. In the second line print the correspondent way itself.
[ "3\n1 2 3\n4 5 6\n7 8 9\n" ]
[ "0\nDDRR\n" ]
none
0
[ { "input": "3\n1 2 3\n4 5 6\n7 8 9", "output": "0\nDDRR" }, { "input": "2\n7 6\n3 8", "output": "0\nDR" }, { "input": "3\n4 10 5\n10 9 4\n6 5 3", "output": "1\nDRRD" }, { "input": "4\n1 1 9 9\n3 4 7 3\n7 9 1 7\n1 7 1 5", "output": "0\nDDDRRR" }, { "input": "5\n8 3...
1,593,287,390
2,147,483,647
Python 3
MEMORY_LIMIT_EXCEEDED
TESTS
15
1,777
67,072,000
# from math import factorial as fac from collections import defaultdict # from copy import deepcopy import sys, math f = None try: f = open('q1.input', 'r') except IOError: f = sys.stdin if 'xrange' in dir(__builtins__): range = xrange # print(f.readline()) sys.setrecursionlimit(10**2) def print_case_iterable(c...
Title: The least round way Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: There is a square matrix *n*<=×<=*n*, consisting of non-negative integer numbers. You should find such a way on it that - starts in the upper left cell of the matrix; - each following cell is to the right or down fro...
```python # from math import factorial as fac from collections import defaultdict # from copy import deepcopy import sys, math f = None try: f = open('q1.input', 'r') except IOError: f = sys.stdin if 'xrange' in dir(__builtins__): range = xrange # print(f.readline()) sys.setrecursionlimit(10**2) def print_case_...
0
317
B
Ants
PROGRAMMING
2,000
[ "brute force", "implementation" ]
null
null
It has been noted that if some ants are put in the junctions of the graphene integer lattice then they will act in the following fashion: every minute at each junction (*x*, *y*) containing at least four ants a group of four ants will be formed, and these four ants will scatter to the neighbouring junctions (*x*<=+<=1,...
First input line contains integers *n* (0<=≤<=*n*<=≤<=30000) and *t* (1<=≤<=*t*<=≤<=50000), where *n* is the number of ants in the colony and *t* is the number of queries. Each of the next *t* lines contains coordinates of a query junction: integers *x**i*, *y**i* (<=-<=109<=≤<=*x**i*,<=*y**i*<=≤<=109). Queries may coi...
Print *t* integers, one per line — the number of ants at the corresponding junctions when the movement of the ants stops.
[ "1 3\n0 1\n0 0\n0 -1\n", "6 5\n0 -2\n0 -1\n0 0\n0 1\n0 2\n" ]
[ "0\n1\n0\n", "0\n1\n2\n1\n0\n" ]
In the first sample the colony consists of the one ant, so nothing happens at all. In the second sample the colony consists of 6 ants. At the first minute 4 ants scatter from (0, 0) to the neighbouring junctions. After that the process stops.
1,000
[]
1,398,441,044
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
3
77
0
n, t = map(int,input().split()) # at (0,0) there are n ants g = [[0]*17 for x in range(17)] base = 8 g[base][base] = n def broadcast(x,y): if g[x][y] >= 4: re = g[x][y] // 4 g[x][y] = g[x][y] % 4 g[x-1][y] += re g[x+1][y] += re g[x][y+1] += re g[x][y-1] += re else: return broadcast(x+1,y); broadcast(...
Title: Ants Time Limit: None seconds Memory Limit: None megabytes Problem Description: It has been noted that if some ants are put in the junctions of the graphene integer lattice then they will act in the following fashion: every minute at each junction (*x*, *y*) containing at least four ants a group of four ants ...
```python n, t = map(int,input().split()) # at (0,0) there are n ants g = [[0]*17 for x in range(17)] base = 8 g[base][base] = n def broadcast(x,y): if g[x][y] >= 4: re = g[x][y] // 4 g[x][y] = g[x][y] % 4 g[x-1][y] += re g[x+1][y] += re g[x][y+1] += re g[x][y-1] += re else: return broadcast(x+1,y); ...
-1
402
C
Searching for Graph
PROGRAMMING
1,500
[ "brute force", "constructive algorithms", "graphs" ]
null
null
Let's call an undirected graph of *n* vertices *p*-interesting, if the following conditions fulfill: - the graph contains exactly 2*n*<=+<=*p* edges; - the graph doesn't contain self-loops and multiple edges; - for any integer *k* (1<=≤<=*k*<=≤<=*n*), any subgraph consisting of *k* vertices contains at most 2*k*<=...
The first line contains a single integer *t* (1<=≤<=*t*<=≤<=5) — the number of tests in the input. Next *t* lines each contains two space-separated integers: *n*, *p* (5<=≤<=*n*<=≤<=24; *p*<=≥<=0; ) — the number of vertices in the graph and the interest value for the appropriate test. It is guaranteed that the requir...
For each of the *t* tests print 2*n*<=+<=*p* lines containing the description of the edges of a *p*-interesting graph: the *i*-th line must contain two space-separated integers *a**i*,<=*b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*; *a**i*<=≠<=*b**i*) — two vertices, connected by an edge in the resulting graph. Consider the gr...
[ "1\n6 0\n" ]
[ "1 2\n1 3\n1 4\n1 5\n1 6\n2 3\n2 4\n2 5\n2 6\n3 4\n3 5\n3 6\n" ]
none
1,500
[ { "input": "1\n6 0", "output": "1 2\n1 3\n1 4\n1 5\n1 6\n2 3\n2 4\n2 5\n2 6\n3 4\n3 5\n3 6" }, { "input": "1\n5 0", "output": "1 2\n1 3\n1 4\n1 5\n2 3\n2 4\n2 5\n3 4\n3 5\n4 5" }, { "input": "5\n6 0\n5 0\n7 0\n8 0\n9 0", "output": "1 2\n1 3\n1 4\n1 5\n1 6\n2 3\n2 4\n2 5\n2 6\n3 4\n3 ...
1,573,892,245
2,147,483,647
PyPy 3
OK
TESTS
21
155
3,276,800
import sys def get_ints(): return map(int, sys.stdin.readline().strip().split()) t = int(input()) while t: flag = 0 n,p = get_ints() count = 0 i = 1 while i<(n+1): for j in range(i+1,n+1): print(i,j) count+=1 if count==2*n+p: ...
Title: Searching for Graph Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's call an undirected graph of *n* vertices *p*-interesting, if the following conditions fulfill: - the graph contains exactly 2*n*<=+<=*p* edges; - the graph doesn't contain self-loops and multiple edges; - ...
```python import sys def get_ints(): return map(int, sys.stdin.readline().strip().split()) t = int(input()) while t: flag = 0 n,p = get_ints() count = 0 i = 1 while i<(n+1): for j in range(i+1,n+1): print(i,j) count+=1 if count==2*n+p:...
3
96
A
Football
PROGRAMMING
900
[ "implementation", "strings" ]
A. Football
2
256
Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A zero corresponds to players of one team; a one corresponds to players of another team. If...
The first input line contains a non-empty string consisting of characters "0" and "1", which represents players. The length of the string does not exceed 100 characters. There's at least one player from each team present on the field.
Print "YES" if the situation is dangerous. Otherwise, print "NO".
[ "001001\n", "1000000001\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "001001", "output": "NO" }, { "input": "1000000001", "output": "YES" }, { "input": "00100110111111101", "output": "YES" }, { "input": "11110111111111111", "output": "YES" }, { "input": "01", "output": "NO" }, { "input": "10100101", "outp...
1,684,220,672
2,147,483,647
Python 3
OK
TESTS
44
62
0
a=input() if '0000000' in a or '1111111' in a: print('YES') exit() else: print('NO')
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A...
```python a=input() if '0000000' in a or '1111111' in a: print('YES') exit() else: print('NO') ```
3.9845
610
A
Pasha and Stick
PROGRAMMING
1,000
[ "combinatorics", "math" ]
null
null
Pasha has a wooden stick of some positive integer length *n*. He wants to perform exactly three cuts to get four parts of the stick. Each part must have some positive integer length and the sum of these lengths will obviously be *n*. Pasha likes rectangles but hates squares, so he wonders, how many ways are there to ...
The first line of the input contains a positive integer *n* (1<=≤<=*n*<=≤<=2·109) — the length of Pasha's stick.
The output should contain a single integer — the number of ways to split Pasha's stick into four parts of positive integer length so that it's possible to make a rectangle by connecting the ends of these parts, but is impossible to form a square.
[ "6\n", "20\n" ]
[ "1\n", "4\n" ]
There is only one way to divide the stick in the first sample {1, 1, 2, 2}. Four ways to divide the stick in the second sample are {1, 1, 9, 9}, {2, 2, 8, 8}, {3, 3, 7, 7} and {4, 4, 6, 6}. Note that {5, 5, 5, 5} doesn't work.
500
[ { "input": "6", "output": "1" }, { "input": "20", "output": "4" }, { "input": "1", "output": "0" }, { "input": "2", "output": "0" }, { "input": "3", "output": "0" }, { "input": "4", "output": "0" }, { "input": "2000000000", "output": "4...
1,598,961,215
2,147,483,647
Python 3
OK
TESTS
76
109
0
n=int(input()) if(n%2!=0): print(0) else: q=n//4 r=n%4 if r==0: print(q-1) else: print(q)
Title: Pasha and Stick Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha has a wooden stick of some positive integer length *n*. He wants to perform exactly three cuts to get four parts of the stick. Each part must have some positive integer length and the sum of these lengths will obv...
```python n=int(input()) if(n%2!=0): print(0) else: q=n//4 r=n%4 if r==0: print(q-1) else: print(q) ```
3
327
A
Flipping Game
PROGRAMMING
1,200
[ "brute force", "dp", "implementation" ]
null
null
Iahub got bored, so he invented a game to be played on paper. He writes *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Each of those integers can be either 0 or 1. He's allowed to do exactly one move: he chooses two indices *i* and *j* (1<=≤<=*i*<=≤<=*j*<=≤<=*n*) and flips all values *a**k* for which their positions are in...
The first line of the input contains an integer *n* (1<=≤<=*n*<=≤<=100). In the second line of the input there are *n* integers: *a*1,<=*a*2,<=...,<=*a**n*. It is guaranteed that each of those *n* values is either 0 or 1.
Print an integer — the maximal number of 1s that can be obtained after exactly one move.
[ "5\n1 0 0 1 0\n", "4\n1 0 0 1\n" ]
[ "4\n", "4\n" ]
In the first case, flip the segment from 2 to 5 (*i* = 2, *j* = 5). That flip changes the sequence, it becomes: [1 1 1 0 1]. So, it contains four ones. There is no way to make the whole sequence equal to [1 1 1 1 1]. In the second case, flipping only the second and the third element (*i* = 2, *j* = 3) will turn all nu...
500
[ { "input": "5\n1 0 0 1 0", "output": "4" }, { "input": "4\n1 0 0 1", "output": "4" }, { "input": "1\n1", "output": "0" }, { "input": "1\n0", "output": "1" }, { "input": "8\n1 0 0 0 1 0 0 0", "output": "7" }, { "input": "18\n0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
1,664,723,002
2,147,483,647
PyPy 3
OK
TESTS
21
186
1,331,200
def solve(): n=int(input()) lst=list(map(int,input().split(" "))) m=0 for i in range(n): for j in range(i+1,n+1): l2=lst[i:j] t=l2.count(0)+lst[:i].count(1)+lst[j:].count(1) # print(*l2) if t>m: m=t print(m) ...
Title: Flipping Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub got bored, so he invented a game to be played on paper. He writes *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Each of those integers can be either 0 or 1. He's allowed to do exactly one move: he chooses two indices *...
```python def solve(): n=int(input()) lst=list(map(int,input().split(" "))) m=0 for i in range(n): for j in range(i+1,n+1): l2=lst[i:j] t=l2.count(0)+lst[:i].count(1)+lst[j:].count(1) # print(*l2) if t>m: m=t print(m)...
3
578
B
"Or" Game
PROGRAMMING
1,700
[ "brute force", "greedy" ]
null
null
You are given *n* numbers *a*1,<=*a*2,<=...,<=*a**n*. You can perform at most *k* operations. For each operation you can multiply one of the numbers by *x*. We want to make as large as possible, where denotes the bitwise OR. Find the maximum possible value of after performing at most *k* operations optimally.
The first line contains three integers *n*, *k* and *x* (1<=≤<=*n*<=≤<=200<=000, 1<=≤<=*k*<=≤<=10, 2<=≤<=*x*<=≤<=8). The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109).
Output the maximum value of a bitwise OR of sequence elements after performing operations.
[ "3 1 2\n1 1 1\n", "4 2 3\n1 2 4 8\n" ]
[ "3\n", "79\n" ]
For the first sample, any possible choice of doing one operation will result the same three numbers 1, 1, 2 so the result is <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/1ee73b671ed4bc53f2f96ed1a85fd98388e1712b.png" style="max-width: 100.0%;max-height: 100.0%;"/>. For the second sample...
500
[ { "input": "3 1 2\n1 1 1", "output": "3" }, { "input": "4 2 3\n1 2 4 8", "output": "79" }, { "input": "2 1 2\n12 9", "output": "30" }, { "input": "2 1 2\n12 7", "output": "31" }, { "input": "3 1 3\n3 2 0", "output": "11" }, { "input": "5 10 8\n10000000...
1,500,320,734
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
4,608,000
x, n, k = [int(x) for x in input().split()] lista = [int(x) for x in input().split()] a = max(lista) lista.remove(a) a = a * k ** n output = 0 lista.append(a) for i in lista: output |= i print(output) # 1500320731184
Title: "Or" Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given *n* numbers *a*1,<=*a*2,<=...,<=*a**n*. You can perform at most *k* operations. For each operation you can multiply one of the numbers by *x*. We want to make as large as possible, where denotes the bitwise OR...
```python x, n, k = [int(x) for x in input().split()] lista = [int(x) for x in input().split()] a = max(lista) lista.remove(a) a = a * k ** n output = 0 lista.append(a) for i in lista: output |= i print(output) # 1500320731184 ```
0
409
H
A + B Strikes Back
PROGRAMMING
1,500
[ "*special", "brute force", "constructive algorithms", "dsu", "implementation" ]
null
null
A + B is often used as an example of the easiest problem possible to show some contest platform. However, some scientists have observed that sometimes this problem is not so easy to get accepted. Want to try?
The input contains two integers *a* and *b* (0<=≤<=*a*,<=*b*<=≤<=103), separated by a single space.
Output the sum of the given integers.
[ "5 14\n", "381 492\n" ]
[ "19\n", "873\n" ]
none
0
[ { "input": "5 14", "output": "19" }, { "input": "381 492", "output": "873" }, { "input": "536 298", "output": "834" }, { "input": "143 522", "output": "665" }, { "input": "433 126", "output": "559" }, { "input": "723 350", "output": "1073" }, {...
1,636,535,971
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
0
0
print( sum(map(int,input().split())))
Title: A + B Strikes Back Time Limit: None seconds Memory Limit: None megabytes Problem Description: A + B is often used as an example of the easiest problem possible to show some contest platform. However, some scientists have observed that sometimes this problem is not so easy to get accepted. Want to try? Input ...
```python print( sum(map(int,input().split()))) ```
0
266
B
Queue at the School
PROGRAMMING
800
[ "constructive algorithms", "graph matchings", "implementation", "shortest paths" ]
null
null
During the break the schoolchildren, boys and girls, formed a queue of *n* people in the canteen. Initially the children stood in the order they entered the canteen. However, after a while the boys started feeling awkward for standing in front of the girls in the queue and they started letting the girls move forward ea...
The first line contains two integers *n* and *t* (1<=≤<=*n*,<=*t*<=≤<=50), which represent the number of children in the queue and the time after which the queue will transform into the arrangement you need to find. The next line contains string *s*, which represents the schoolchildren's initial arrangement. If the *...
Print string *a*, which describes the arrangement after *t* seconds. If the *i*-th position has a boy after the needed time, then the *i*-th character *a* must equal "B", otherwise it must equal "G".
[ "5 1\nBGGBG\n", "5 2\nBGGBG\n", "4 1\nGGGB\n" ]
[ "GBGGB\n", "GGBGB\n", "GGGB\n" ]
none
500
[ { "input": "5 1\nBGGBG", "output": "GBGGB" }, { "input": "5 2\nBGGBG", "output": "GGBGB" }, { "input": "4 1\nGGGB", "output": "GGGB" }, { "input": "2 1\nBB", "output": "BB" }, { "input": "2 1\nBG", "output": "GB" }, { "input": "6 2\nBBGBBG", "outpu...
1,697,778,061
2,147,483,647
Python 3
OK
TESTS
44
92
0
nt=list(map(int, input().split())) s=list(input()) s.append('1') for i in range(nt[1]): for j in range(1,nt[0]+1): if s[j]=='G' and s[j-1]=='B': s[j]='0' s[j-1]='G' elif s[j-1]=='0': s[j-1]='B' pass if i==nt[1]-1 and s[nt[0]]=='1': ...
Title: Queue at the School Time Limit: None seconds Memory Limit: None megabytes Problem Description: During the break the schoolchildren, boys and girls, formed a queue of *n* people in the canteen. Initially the children stood in the order they entered the canteen. However, after a while the boys started feeling a...
```python nt=list(map(int, input().split())) s=list(input()) s.append('1') for i in range(nt[1]): for j in range(1,nt[0]+1): if s[j]=='G' and s[j-1]=='B': s[j]='0' s[j-1]='G' elif s[j-1]=='0': s[j-1]='B' pass if i==nt[1]-1 and s[nt[0]]==...
3
195
B
After Training
PROGRAMMING
1,300
[ "data structures", "implementation", "math" ]
null
null
After a team finished their training session on Euro football championship, Valeric was commissioned to gather the balls and sort them into baskets. Overall the stadium has *n* balls and *m* baskets. The baskets are positioned in a row from left to right and they are numbered with numbers from 1 to *m*, correspondingly...
The first line contains two space-separated integers *n*, *m* (1<=≤<=*n*,<=*m*<=≤<=105) — the number of balls and baskets, correspondingly.
Print *n* numbers, one per line. The *i*-th line must contain the number of the basket for the *i*-th ball.
[ "4 3\n", "3 1\n" ]
[ "2\n1\n3\n2\n", "1\n1\n1\n" ]
none
1,000
[ { "input": "4 3", "output": "2\n1\n3\n2" }, { "input": "3 1", "output": "1\n1\n1" }, { "input": "10 3", "output": "2\n1\n3\n2\n1\n3\n2\n1\n3\n2" }, { "input": "6 5", "output": "3\n2\n4\n1\n5\n3" }, { "input": "2 6", "output": "3\n4" }, { "input": "5 2"...
1,599,147,166
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
4
280
0
import heapq n,m=map(int, input().split()) l=[] for i in range(1,m+1): capacity=0 pref1=abs((m+1)//2-i) pref2=i l.append((capacity,pref1,pref2)) heapq.heapify(l) for i in range(n): c,p1,p2=heapq.heappop(l) print(p2) c+=1 heapq.heappush(l,(c,p1,p2))
Title: After Training Time Limit: None seconds Memory Limit: None megabytes Problem Description: After a team finished their training session on Euro football championship, Valeric was commissioned to gather the balls and sort them into baskets. Overall the stadium has *n* balls and *m* baskets. The baskets are posi...
```python import heapq n,m=map(int, input().split()) l=[] for i in range(1,m+1): capacity=0 pref1=abs((m+1)//2-i) pref2=i l.append((capacity,pref1,pref2)) heapq.heapify(l) for i in range(n): c,p1,p2=heapq.heappop(l) print(p2) c+=1 heapq.heappush(l,(c,p1,p2)) ```
0
667
A
Pouring Rain
PROGRAMMING
1,100
[ "geometry", "math" ]
null
null
A lot of people in Berland hates rain, but you do not. Rain pacifies, puts your thoughts in order. By these years you have developed a good tradition — when it rains, you go on the street and stay silent for a moment, contemplate all around you, enjoy freshness, think about big deeds you have to do. Today everything ...
The only line of the input contains four integer numbers *d*,<=*h*,<=*v*,<=*e* (1<=≤<=*d*,<=*h*,<=*v*,<=*e*<=≤<=104), where: - *d* — the diameter of your cylindrical cup, - *h* — the initial level of water in the cup, - *v* — the speed of drinking process from the cup in milliliters per second, - *e* — the growth ...
If it is impossible to make the cup empty, print "NO" (without quotes). Otherwise print "YES" (without quotes) in the first line. In the second line print a real number — time in seconds needed the cup will be empty. The answer will be considered correct if its relative or absolute error doesn't exceed 10<=-<=4. It is...
[ "1 2 3 100\n", "1 1 1 1\n" ]
[ "NO\n", "YES\n3.659792366325\n" ]
In the first example the water fills the cup faster than you can drink from it. In the second example area of the cup's bottom equals to <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/419dc74dcd7bc392019c9fe748fe1fdb08ab521a.png" style="max-width: 100.0%;max-height: 100.0%;"/>, thus we ca...
500
[ { "input": "1 2 3 100", "output": "NO" }, { "input": "1 1 1 1", "output": "YES\n3.659792366325" }, { "input": "48 7946 7992 72", "output": "NO" }, { "input": "72 6791 8546 46", "output": "NO" }, { "input": "100 5635 9099 23", "output": "NO" }, { "input...
1,606,028,174
974
PyPy 3
OK
TESTS
23
171
0
import math d,h,v,e=map(int, input().split()) speed_of_drinking_water = 4*v/(math.pi*d*d) if speed_of_drinking_water>e: answer = h/(speed_of_drinking_water-e) print('YES') print(answer) else: print('NO')
Title: Pouring Rain Time Limit: None seconds Memory Limit: None megabytes Problem Description: A lot of people in Berland hates rain, but you do not. Rain pacifies, puts your thoughts in order. By these years you have developed a good tradition — when it rains, you go on the street and stay silent for a moment, cont...
```python import math d,h,v,e=map(int, input().split()) speed_of_drinking_water = 4*v/(math.pi*d*d) if speed_of_drinking_water>e: answer = h/(speed_of_drinking_water-e) print('YES') print(answer) else: print('NO') ```
3
812
B
Sagheer, the Hausmeister
PROGRAMMING
1,600
[ "bitmasks", "brute force", "dp" ]
null
null
Some people leave the lights at their workplaces on when they leave that is a waste of resources. As a hausmeister of DHBW, Sagheer waits till all students and professors leave the university building, then goes and turns all the lights off. The building consists of *n* floors with stairs at the left and the right sid...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=15 and 1<=≤<=*m*<=≤<=100) — the number of floors and the number of rooms in each floor, respectively. The next *n* lines contains the building description. Each line contains a binary string of length *m*<=+<=2 representing a floor (the left stairs, then ...
Print a single integer — the minimum total time needed to turn off all the lights.
[ "2 2\n0010\n0100\n", "3 4\n001000\n000010\n000010\n", "4 3\n01110\n01110\n01110\n01110\n" ]
[ "5\n", "12\n", "18\n" ]
In the first example, Sagheer will go to room 1 in the ground floor, then he will go to room 2 in the second floor using the left or right stairs. In the second example, he will go to the fourth room in the ground floor, use right stairs, go to the fourth room in the second floor, use right stairs again, then go to th...
1,000
[ { "input": "2 2\n0010\n0100", "output": "5" }, { "input": "3 4\n001000\n000010\n000010", "output": "12" }, { "input": "4 3\n01110\n01110\n01110\n01110", "output": "18" }, { "input": "3 2\n0000\n0100\n0100", "output": "4" }, { "input": "1 89\n0000000000000000000000...
1,497,775,266
4,145
Python 3
RUNTIME_ERROR
TESTS
0
46
204,800
string=input() n=int(string.split(" ")[0]) m=int(string.split(" ")[1]) OneToOne=[]#from 1st stair to the last 1 and then back to the 1st stair TwoToTwo=[]#from 2nd stair to the first 1 and back to the 2nd stair #OnetoTwo and TwotoOne is always m+1 for i in range(n): stairs = input() ...
Title: Sagheer, the Hausmeister Time Limit: None seconds Memory Limit: None megabytes Problem Description: Some people leave the lights at their workplaces on when they leave that is a waste of resources. As a hausmeister of DHBW, Sagheer waits till all students and professors leave the university building, then goe...
```python string=input() n=int(string.split(" ")[0]) m=int(string.split(" ")[1]) OneToOne=[]#from 1st stair to the last 1 and then back to the 1st stair TwoToTwo=[]#from 2nd stair to the first 1 and back to the 2nd stair #OnetoTwo and TwotoOne is always m+1 for i in range(n): stairs = input() ...
-1
61
A
Ultra-Fast Mathematician
PROGRAMMING
800
[ "implementation" ]
A. Ultra-Fast Mathematician
2
256
Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 1018 numbers in a single second. One day in 230 AD Shapur was trying to find out if any one can possibly do...
There are two lines in each input. Each of them contains a single number. It is guaranteed that the numbers are made from 0 and 1 only and that their length is same. The numbers may start with 0. The length of each number doesn't exceed 100.
Write one line — the corresponding answer. Do not omit the leading 0s.
[ "1010100\n0100101\n", "000\n111\n", "1110\n1010\n", "01110\n01100\n" ]
[ "1110001\n", "111\n", "0100\n", "00010\n" ]
none
500
[ { "input": "1010100\n0100101", "output": "1110001" }, { "input": "000\n111", "output": "111" }, { "input": "1110\n1010", "output": "0100" }, { "input": "01110\n01100", "output": "00010" }, { "input": "011101\n000001", "output": "011100" }, { "input": "...
1,613,879,134
2,147,483,647
PyPy 3
OK
TESTS
102
109
0
for a,b in zip(input(),input()): n = int(a)^int(b) print(n, end = '')
Title: Ultra-Fast Mathematician Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 10...
```python for a,b in zip(input(),input()): n = int(a)^int(b) print(n, end = '') ```
3.97275
270
A
Fancy Fence
PROGRAMMING
1,100
[ "geometry", "implementation", "math" ]
null
null
Emuskald needs a fence around his farm, but he is too lazy to build it himself. So he purchased a fence-building robot. He wants the fence to be a regular polygon. The robot builds the fence along a single path, but it can only make fence corners at a single angle *a*. Will the robot be able to build the fence Emuska...
The first line of input contains an integer *t* (0<=&lt;<=*t*<=&lt;<=180) — the number of tests. Each of the following *t* lines contains a single integer *a* (0<=&lt;<=*a*<=&lt;<=180) — the angle the robot can make corners at measured in degrees.
For each test, output on a single line "YES" (without quotes), if the robot can build a fence Emuskald wants, and "NO" (without quotes), if it is impossible.
[ "3\n30\n60\n90\n" ]
[ "NO\nYES\nYES\n" ]
In the first test case, it is impossible to build the fence, since there is no regular polygon with angle <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/df5f4b07dd5316fde165b43657b2696e2919e791.png" style="max-width: 100.0%;max-height: 100.0%;"/>. In the second test case, the fence is a r...
500
[ { "input": "3\n30\n60\n90", "output": "NO\nYES\nYES" }, { "input": "6\n1\n2\n3\n170\n179\n25", "output": "NO\nNO\nNO\nYES\nYES\nNO" } ]
1,633,255,906
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
6,656,000
for i in int(input()): if(360 % (180 - int(input)) == 0):print("YES") else:print("NO")
Title: Fancy Fence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Emuskald needs a fence around his farm, but he is too lazy to build it himself. So he purchased a fence-building robot. He wants the fence to be a regular polygon. The robot builds the fence along a single path, but it can...
```python for i in int(input()): if(360 % (180 - int(input)) == 0):print("YES") else:print("NO") ```
-1
447
B
DZY Loves Strings
PROGRAMMING
1,000
[ "greedy", "implementation" ]
null
null
DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter *c* DZY knows its value *w**c*. For each special string *s*<==<=*s*1*s*2... *s*|*s*| (|*s*| is the length of the string) he represents its value with a function *f*(*s*), where Now DZY has a string *s*. He wants to in...
The first line contains a single string *s* (1<=≤<=|*s*|<=≤<=103). The second line contains a single integer *k* (0<=≤<=*k*<=≤<=103). The third line contains twenty-six integers from *w**a* to *w**z*. Each such number is non-negative and doesn't exceed 1000.
Print a single integer — the largest possible value of the resulting string DZY could get.
[ "abc\n3\n1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n" ]
[ "41\n" ]
In the test sample DZY can obtain "abcbbc", *value* = 1·1 + 2·2 + 3·2 + 4·2 + 5·2 + 6·2 = 41.
1,000
[ { "input": "abc\n3\n1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1", "output": "41" }, { "input": "mmzhr\n3\n443 497 867 471 195 670 453 413 579 466 553 881 847 642 269 996 666 702 487 209 257 741 974 133 519 453", "output": "29978" }, { "input": "ajeeseerqnpaujubmajpibxrccazaawetyw...
1,682,880,379
2,147,483,647
Python 3
OK
TESTS
24
46
0
s = input() k = int(input()) w = list(map(int, input().split())) max_w = max(w) result = 0 for i in range(len(s)): result += w[ord(s[i]) - ord('a')] * (i + 1) #print(result) for i in range(k): result += max_w * (len(s) + i + 1) #print(result) print(result)
Title: DZY Loves Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter *c* DZY knows its value *w**c*. For each special string *s*<==<=*s*1*s*2... *s*|*s*| (|*s*| is the length of the str...
```python s = input() k = int(input()) w = list(map(int, input().split())) max_w = max(w) result = 0 for i in range(len(s)): result += w[ord(s[i]) - ord('a')] * (i + 1) #print(result) for i in range(k): result += max_w * (len(s) + i + 1) #print(result) print(result) ```
3
725
A
Jumping Ball
PROGRAMMING
1,000
[ "implementation" ]
null
null
In a new version of the famous Pinball game, one of the most important parts of the game field is a sequence of *n* bumpers. The bumpers are numbered with integers from 1 to *n* from left to right. There are two types of bumpers. They are denoted by the characters '&lt;' and '&gt;'. When the ball hits the bumper at pos...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=200<=000) — the length of the sequence of bumpers. The second line contains the string, which consists of the characters '&lt;' and '&gt;'. The character at the *i*-th position of this string corresponds to the type of the *i*-th bumper.
Print one integer — the number of positions in the sequence such that the ball will eventually fall from the game field if it starts at that position.
[ "4\n&lt;&lt;&gt;&lt;\n", "5\n&gt;&gt;&gt;&gt;&gt;\n", "4\n&gt;&gt;&lt;&lt;\n" ]
[ "2", "5", "0" ]
In the first sample, the ball will fall from the field if starts at position 1 or position 2. In the second sample, any starting position will result in the ball falling from the field.
500
[ { "input": "4\n<<><", "output": "2" }, { "input": "5\n>>>>>", "output": "5" }, { "input": "4\n>><<", "output": "0" }, { "input": "3\n<<>", "output": "3" }, { "input": "3\n<<<", "output": "3" }, { "input": "3\n><<", "output": "0" }, { "input...
1,668,426,124
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
5
77
3,072,000
n=int(input()) s=input() x=0 t=True for i in range(n): if t and s[i]=='<': x+=1 else: f=i break x1=0 while f<n: if s[f]=='>': x1+=1 else: x1=0 f+=1 print(x+x1)
Title: Jumping Ball Time Limit: None seconds Memory Limit: None megabytes Problem Description: In a new version of the famous Pinball game, one of the most important parts of the game field is a sequence of *n* bumpers. The bumpers are numbered with integers from 1 to *n* from left to right. There are two types of b...
```python n=int(input()) s=input() x=0 t=True for i in range(n): if t and s[i]=='<': x+=1 else: f=i break x1=0 while f<n: if s[f]=='>': x1+=1 else: x1=0 f+=1 print(x+x1) ```
-1
959
E
Mahmoud and Ehab and the xor-MST
PROGRAMMING
1,900
[ "bitmasks", "dp", "graphs", "implementation", "math" ]
null
null
Ehab is interested in the bitwise-xor operation and the special graphs. Mahmoud gave him a problem that combines both. He has a complete graph consisting of *n* vertices numbered from 0 to *n*<=-<=1. For all 0<=≤<=*u*<=&lt;<=*v*<=&lt;<=*n*, vertex *u* and vertex *v* are connected with an undirected edge that has weight...
The only line contains an integer *n* (2<=≤<=*n*<=≤<=1012), the number of vertices in the graph.
The only line contains an integer *x*, the weight of the graph's minimum spanning tree.
[ "4\n" ]
[ "4" ]
In the first sample: <img class="tex-graphics" src="https://espresso.codeforces.com/20e1655a0ec8e8d788bd2f5af92f93c968c65f3c.png" style="max-width: 100.0%;max-height: 100.0%;"/> The weight of the minimum spanning tree is 1+2+1=4.
2,000
[ { "input": "4", "output": "4" }, { "input": "10", "output": "21" }, { "input": "2", "output": "1" }, { "input": "1000000000000", "output": "20140978692096" }, { "input": "999999999999", "output": "20140978692095" }, { "input": "23131234", "output":...
1,675,535,215
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
61
0
n = int(input()) ans = 0 for i in range(60): ans += (2 ** i) * (n // (2 ** (i + 1))) print(ans)
Title: Mahmoud and Ehab and the xor-MST Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ehab is interested in the bitwise-xor operation and the special graphs. Mahmoud gave him a problem that combines both. He has a complete graph consisting of *n* vertices numbered from 0 to *n*<=-<=1. Fo...
```python n = int(input()) ans = 0 for i in range(60): ans += (2 ** i) * (n // (2 ** (i + 1))) print(ans) ```
0
492
A
Vanya and Cubes
PROGRAMMING
800
[ "implementation" ]
null
null
Vanya got *n* cubes. He decided to build a pyramid from them. Vanya wants to build the pyramid as follows: the top level of the pyramid must consist of 1 cube, the second level must consist of 1<=+<=2<==<=3 cubes, the third level must have 1<=+<=2<=+<=3<==<=6 cubes, and so on. Thus, the *i*-th level of the pyramid must...
The first line contains integer *n* (1<=≤<=*n*<=≤<=104) — the number of cubes given to Vanya.
Print the maximum possible height of the pyramid in the single line.
[ "1\n", "25\n" ]
[ "1\n", "4\n" ]
Illustration to the second sample:
500
[ { "input": "1", "output": "1" }, { "input": "25", "output": "4" }, { "input": "2", "output": "1" }, { "input": "4115", "output": "28" }, { "input": "9894", "output": "38" }, { "input": "7969", "output": "35" }, { "input": "6560", "outpu...
1,699,705,483
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
0
n = int(input()) st = 2 I = lambda x : (x**3-x)//2 while I(st)<n: st+=1 print(st)
Title: Vanya and Cubes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya got *n* cubes. He decided to build a pyramid from them. Vanya wants to build the pyramid as follows: the top level of the pyramid must consist of 1 cube, the second level must consist of 1<=+<=2<==<=3 cubes, the t...
```python n = int(input()) st = 2 I = lambda x : (x**3-x)//2 while I(st)<n: st+=1 print(st) ```
0
1,007
A
Reorder the Array
PROGRAMMING
1,300
[ "combinatorics", "data structures", "math", "sortings", "two pointers" ]
null
null
You are given an array of integers. Vasya can permute (change order) its integers. He wants to do it so that as many as possible integers will become on a place where a smaller integer used to stand. Help Vasya find the maximal number of such integers. For instance, if we are given an array $[10, 20, 30, 40]$, we can ...
The first line contains a single integer $n$ ($1 \leq n \leq 10^5$) — the length of the array. The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ($1 \leq a_i \leq 10^9$) — the elements of the array.
Print a single integer — the maximal number of the array's elements which after a permutation will stand on the position where a smaller element stood in the initial array.
[ "7\n10 1 1 1 5 5 3\n", "5\n1 1 1 1 1\n" ]
[ "4\n", "0\n" ]
In the first sample, one of the best permutations is $[1, 5, 5, 3, 10, 1, 1]$. On the positions from second to fifth the elements became larger, so the answer for this permutation is 4. In the second sample, there is no way to increase any element with a permutation, so the answer is 0.
500
[ { "input": "7\n10 1 1 1 5 5 3", "output": "4" }, { "input": "5\n1 1 1 1 1", "output": "0" }, { "input": "6\n300000000 200000000 300000000 200000000 1000000000 300000000", "output": "3" }, { "input": "10\n1 2 3 4 5 6 7 8 9 10", "output": "9" }, { "input": "1\n1", ...
1,653,896,822
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
5
46
512,000
import math def main_function(): n = int(input()) a = [int(u) for u in input().split(" ")] new_a = a.copy() new_a.sort() hash_a = {} for i in new_a: if i in hash_a: hash_a[i] += 1 else: hash_a[i] = 1 #print(hash_a) total_amount = n...
Title: Reorder the Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array of integers. Vasya can permute (change order) its integers. He wants to do it so that as many as possible integers will become on a place where a smaller integer used to stand. Help Vasya find t...
```python import math def main_function(): n = int(input()) a = [int(u) for u in input().split(" ")] new_a = a.copy() new_a.sort() hash_a = {} for i in new_a: if i in hash_a: hash_a[i] += 1 else: hash_a[i] = 1 #print(hash_a) total_...
0
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,696,842,557
2,147,483,647
Python 3
OK
TESTS
34
92
0
n = int(input()) mp = {} for i in range(n): s = input() if s not in mp: mp[s] = 1 else: mp[s] += 1 mx = -100 ans = '' for i,v in mp.items(): if v > mx: mx = v ans = i print(ans)
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python n = int(input()) mp = {} for i in range(n): s = input() if s not in mp: mp[s] = 1 else: mp[s] += 1 mx = -100 ans = '' for i,v in mp.items(): if v > mx: mx = v ans = i print(ans) ```
3.977
608
A
Saitama Destroys Hotel
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Saitama accidentally destroyed a hotel again. To repay the hotel company, Genos has volunteered to operate an elevator in one of its other hotels. The elevator is special — it starts on the top floor, can only move down, and has infinite capacity. Floors are numbered from 0 to *s* and elevator initially starts on floor...
The first line of input contains two integers *n* and *s* (1<=≤<=*n*<=≤<=100, 1<=≤<=*s*<=≤<=1000) — the number of passengers and the number of the top floor respectively. The next *n* lines each contain two space-separated integers *f**i* and *t**i* (1<=≤<=*f**i*<=≤<=*s*, 1<=≤<=*t**i*<=≤<=1000) — the floor and the tim...
Print a single integer — the minimum amount of time in seconds needed to bring all the passengers to floor 0.
[ "3 7\n2 1\n3 8\n5 2\n", "5 10\n2 77\n3 33\n8 21\n9 12\n10 64\n" ]
[ "11\n", "79\n" ]
In the first sample, it takes at least 11 seconds to bring all passengers to floor 0. Here is how this could be done: 1. Move to floor 5: takes 2 seconds. 2. Pick up passenger 3. 3. Move to floor 3: takes 2 seconds. 4. Wait for passenger 2 to arrive: takes 4 seconds. 5. Pick up passenger 2. 6. Go to floor 2: take...
500
[ { "input": "3 7\n2 1\n3 8\n5 2", "output": "11" }, { "input": "5 10\n2 77\n3 33\n8 21\n9 12\n10 64", "output": "79" }, { "input": "1 1000\n1000 1000", "output": "2000" }, { "input": "1 1\n1 1", "output": "2" }, { "input": "1 1000\n1 1", "output": "1000" }, ...
1,455,737,396
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
0
n,s = map(int, input().split()) passengers = dict() for i in range(n): floor,time = map(int,input().split()) passengers[floor] = time seconds = 0 current_floor = s while passengers.keys(): floor = max(passengers.keys()) time = passengers[floor] seconds += current_floor-floor current_f...
Title: Saitama Destroys Hotel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Saitama accidentally destroyed a hotel again. To repay the hotel company, Genos has volunteered to operate an elevator in one of its other hotels. The elevator is special — it starts on the top floor, can only mo...
```python n,s = map(int, input().split()) passengers = dict() for i in range(n): floor,time = map(int,input().split()) passengers[floor] = time seconds = 0 current_floor = s while passengers.keys(): floor = max(passengers.keys()) time = passengers[floor] seconds += current_floor-floor ...
0
237
A
Free Cash
PROGRAMMING
1,000
[ "implementation" ]
null
null
Valera runs a 24/7 fast food cafe. He magically learned that next day *n* people will visit his cafe. For each person we know the arrival time: the *i*-th person comes exactly at *h**i* hours *m**i* minutes. The cafe spends less than a minute to serve each client, but if a client comes in and sees that there is no free...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105), that is the number of cafe visitors. Each of the following *n* lines has two space-separated integers *h**i* and *m**i* (0<=≤<=*h**i*<=≤<=23; 0<=≤<=*m**i*<=≤<=59), representing the time when the *i*-th person comes into the cafe. Note that the time is...
Print a single integer — the minimum number of cashes, needed to serve all clients next day.
[ "4\n8 0\n8 10\n8 10\n8 45\n", "3\n0 12\n10 11\n22 22\n" ]
[ "2\n", "1\n" ]
In the first sample it is not enough one cash to serve all clients, because two visitors will come into cafe in 8:10. Therefore, if there will be one cash in cafe, then one customer will be served by it, and another one will not wait and will go away. In the second sample all visitors will come in different times, so ...
500
[ { "input": "4\n8 0\n8 10\n8 10\n8 45", "output": "2" }, { "input": "3\n0 12\n10 11\n22 22", "output": "1" }, { "input": "5\n12 8\n15 27\n15 27\n16 2\n19 52", "output": "2" }, { "input": "7\n5 6\n7 34\n7 34\n7 34\n12 29\n15 19\n20 23", "output": "3" }, { "input": "...
1,665,301,926
2,147,483,647
PyPy 3
OK
TESTS
67
404
5,632,000
import sys import collections as cc input = sys.stdin.readline I = lambda:list(map(int,input().split())) c = cc.Counter() for tc in range(int(input())): x,y = I() c[(x,y)]+=1 print(max(c.values()))
Title: Free Cash Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera runs a 24/7 fast food cafe. He magically learned that next day *n* people will visit his cafe. For each person we know the arrival time: the *i*-th person comes exactly at *h**i* hours *m**i* minutes. The cafe spends l...
```python import sys import collections as cc input = sys.stdin.readline I = lambda:list(map(int,input().split())) c = cc.Counter() for tc in range(int(input())): x,y = I() c[(x,y)]+=1 print(max(c.values())) ```
3
61
A
Ultra-Fast Mathematician
PROGRAMMING
800
[ "implementation" ]
A. Ultra-Fast Mathematician
2
256
Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 1018 numbers in a single second. One day in 230 AD Shapur was trying to find out if any one can possibly do...
There are two lines in each input. Each of them contains a single number. It is guaranteed that the numbers are made from 0 and 1 only and that their length is same. The numbers may start with 0. The length of each number doesn't exceed 100.
Write one line — the corresponding answer. Do not omit the leading 0s.
[ "1010100\n0100101\n", "000\n111\n", "1110\n1010\n", "01110\n01100\n" ]
[ "1110001\n", "111\n", "0100\n", "00010\n" ]
none
500
[ { "input": "1010100\n0100101", "output": "1110001" }, { "input": "000\n111", "output": "111" }, { "input": "1110\n1010", "output": "0100" }, { "input": "01110\n01100", "output": "00010" }, { "input": "011101\n000001", "output": "011100" }, { "input": "...
1,619,431,475
2,147,483,647
Python 3
OK
TESTS
102
62
0
a=input() b=input() l=[] x="" for i in range(len(a)): if a[i]=="1" and b[i]=="1": s="0" else: s=str(int(a[i])+int(b[i])) l.append(s) for i in l: x=x+i print(x)
Title: Ultra-Fast Mathematician Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 10...
```python a=input() b=input() l=[] x="" for i in range(len(a)): if a[i]=="1" and b[i]=="1": s="0" else: s=str(int(a[i])+int(b[i])) l.append(s) for i in l: x=x+i print(x) ```
3.9845
353
B
Two Heaps
PROGRAMMING
1,900
[ "combinatorics", "constructive algorithms", "greedy", "implementation", "math", "sortings" ]
null
null
Valera has 2·*n* cubes, each cube contains an integer from 10 to 99. He arbitrarily chooses *n* cubes and puts them in the first heap. The remaining cubes form the second heap. Valera decided to play with cubes. During the game he takes a cube from the first heap and writes down the number it has. Then he takes a cub...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100). The second line contains 2·*n* space-separated integers *a**i* (10<=≤<=*a**i*<=≤<=99), denoting the numbers on the cubes.
In the first line print a single number — the maximum possible number of distinct four-digit numbers Valera can obtain. In the second line print 2·*n* numbers *b**i* (1<=≤<=*b**i*<=≤<=2). The numbers mean: the *i*-th cube belongs to the *b**i*-th heap in your division. If there are multiple optimal ways to split the c...
[ "1\n10 99\n", "2\n13 24 13 45\n" ]
[ "1\n2 1 \n", "4\n1 2 2 1 \n" ]
In the first test case Valera can put the first cube in the first heap, and second cube — in second heap. In this case he obtain number 1099. If he put the second cube in the first heap, and the first cube in the second heap, then he can obtain number 9910. In both cases the maximum number of distinct integers is equal...
1,500
[ { "input": "1\n10 99", "output": "1\n2 1 " }, { "input": "2\n13 24 13 45", "output": "4\n1 2 2 1 " }, { "input": "5\n21 60 18 21 17 39 58 74 62 34", "output": "25\n1 1 1 2 2 1 2 1 2 2 " }, { "input": "10\n26 43 29 92 22 27 95 56 72 55 93 51 91 30 70 77 32 69 87 98", "outp...
1,385,485,874
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
39
156
0
#!/usr/bin/python3 def readln(): return tuple(map(int, input().split())) n, = readln() b = readln() cnt = [0] * 101 for v in b: cnt[v] += 1 f = [] s = [] x = [] y = [] for i in range(10, 101): if cnt[i] > 1: f.extend([i] * (cnt[i] // 2)) s.extend([i] * (cnt[i] // 2)) if cnt[i] % 2: ...
Title: Two Heaps Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera has 2·*n* cubes, each cube contains an integer from 10 to 99. He arbitrarily chooses *n* cubes and puts them in the first heap. The remaining cubes form the second heap. Valera decided to play with cubes. During the ...
```python #!/usr/bin/python3 def readln(): return tuple(map(int, input().split())) n, = readln() b = readln() cnt = [0] * 101 for v in b: cnt[v] += 1 f = [] s = [] x = [] y = [] for i in range(10, 101): if cnt[i] > 1: f.extend([i] * (cnt[i] // 2)) s.extend([i] * (cnt[i] // 2)) if cnt[i...
0
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,577,819,752
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
1
216
307,200
n=int(input()) x=[int(q) for q in input().split()] l=[] m=[] for i in range(len(x)): if x[i]%2==0: l.append(x[i]) else: m.append(x[i]) if len(l)==1 and len(m)>1: print(x.index(l[0] + 1)) if len(l)>1 and len(m)==1: print(x.index(m[0] + 1))
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python n=int(input()) x=[int(q) for q in input().split()] l=[] m=[] for i in range(len(x)): if x[i]%2==0: l.append(x[i]) else: m.append(x[i]) if len(l)==1 and len(m)>1: print(x.index(l[0] + 1)) if len(l)>1 and len(m)==1: print(x.index(m[0] + 1)) ```
-1
884
A
Book Reading
PROGRAMMING
800
[ "implementation" ]
null
null
Recently Luba bought a very interesting book. She knows that it will take *t* seconds to read the book. Luba wants to finish reading as fast as she can. But she has some work to do in each of *n* next days. The number of seconds that Luba has to spend working during *i*-th day is *a**i*. If some free time remains, she...
The first line contains two integers *n* and *t* (1<=≤<=*n*<=≤<=100, 1<=≤<=*t*<=≤<=106) — the number of days and the time required to read the book. The second line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=86400) — the time Luba has to spend on her work during *i*-th day.
Print the minimum day Luba can finish reading the book. It is guaranteed that answer doesn't exceed *n*.
[ "2 2\n86400 86398\n", "2 86400\n0 86400\n" ]
[ "2\n", "1\n" ]
none
0
[ { "input": "2 2\n86400 86398", "output": "2" }, { "input": "2 86400\n0 86400", "output": "1" }, { "input": "2 86400\n1 86399", "output": "2" }, { "input": "100 1000000\n0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
1,660,960,604
2,147,483,647
Python 3
OK
TESTS
16
46
102,400
from cmath import * from decimal import * def _input(): return map(int, input().split()) def _list(): return list(map(int, input().split())) def solves(): n,m=_input() lst=_list() ans=0; for i in range(n): lst[i]=86400-lst[i] m-=lst[i] if (m<=0): print...
Title: Book Reading Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently Luba bought a very interesting book. She knows that it will take *t* seconds to read the book. Luba wants to finish reading as fast as she can. But she has some work to do in each of *n* next days. The number of ...
```python from cmath import * from decimal import * def _input(): return map(int, input().split()) def _list(): return list(map(int, input().split())) def solves(): n,m=_input() lst=_list() ans=0; for i in range(n): lst[i]=86400-lst[i] m-=lst[i] if (m<=0): ...
3
295
B
Greg and Graph
PROGRAMMING
1,700
[ "dp", "graphs", "shortest paths" ]
null
null
Greg has a weighed directed graph, consisting of *n* vertices. In this graph any pair of distinct vertices has an edge between them in both directions. Greg loves playing with the graph and now he has invented a new game: - The game consists of *n* steps. - On the *i*-th step Greg removes vertex number *x**i* from t...
The first line contains integer *n* (1<=≤<=*n*<=≤<=500) — the number of vertices in the graph. Next *n* lines contain *n* integers each — the graph adjacency matrix: the *j*-th number in the *i*-th line *a**ij* (1<=≤<=*a**ij*<=≤<=105,<=*a**ii*<==<=0) represents the weight of the edge that goes from vertex *i* to verte...
Print *n* integers — the *i*-th number equals the required sum before the *i*-th step. Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams of the %I64d specifier.
[ "1\n0\n1\n", "2\n0 5\n4 0\n1 2\n", "4\n0 3 1 1\n6 0 400 1\n2 4 0 1\n1 1 1 0\n4 1 2 3\n" ]
[ "0 ", "9 0 ", "17 23 404 0 " ]
none
1,000
[ { "input": "1\n0\n1", "output": "0 " }, { "input": "2\n0 5\n4 0\n1 2", "output": "9 0 " }, { "input": "4\n0 3 1 1\n6 0 400 1\n2 4 0 1\n1 1 1 0\n4 1 2 3", "output": "17 23 404 0 " }, { "input": "4\n0 57148 51001 13357\n71125 0 98369 67226\n49388 90852 0 66291\n39573 38165 9700...
1,599,045,417
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
13
3,000
8,601,600
from sys import stdin,stdout input=lambda : stdin.readline().strip() from math import ceil,sqrt,factorial,gcd from collections import deque n=int(input()) l=[list(map(int,input().split())) for i in range(n)] z=list(map(lambda a:int(a)-1,input().split())) v=[0 for i in range(n)] ans=[0 for i in range(n)] for t ...
Title: Greg and Graph Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greg has a weighed directed graph, consisting of *n* vertices. In this graph any pair of distinct vertices has an edge between them in both directions. Greg loves playing with the graph and now he has invented a new game...
```python from sys import stdin,stdout input=lambda : stdin.readline().strip() from math import ceil,sqrt,factorial,gcd from collections import deque n=int(input()) l=[list(map(int,input().split())) for i in range(n)] z=list(map(lambda a:int(a)-1,input().split())) v=[0 for i in range(n)] ans=[0 for i in range(n...
0
999
C
Alphabetic Removals
PROGRAMMING
1,200
[ "implementation" ]
null
null
You are given a string $s$ consisting of $n$ lowercase Latin letters. Polycarp wants to remove exactly $k$ characters ($k \le n$) from the string $s$. Polycarp uses the following algorithm $k$ times: - if there is at least one letter 'a', remove the leftmost occurrence and stop the algorithm, otherwise go to next ite...
The first line of input contains two integers $n$ and $k$ ($1 \le k \le n \le 4 \cdot 10^5$) — the length of the string and the number of letters Polycarp will remove. The second line contains the string $s$ consisting of $n$ lowercase Latin letters.
Print the string that will be obtained from $s$ after Polycarp removes exactly $k$ letters using the above algorithm $k$ times. If the resulting string is empty, print nothing. It is allowed to print nothing or an empty line (line break).
[ "15 3\ncccaabababaccbc\n", "15 9\ncccaabababaccbc\n", "1 1\nu\n" ]
[ "cccbbabaccbc\n", "cccccc\n", "" ]
none
0
[ { "input": "15 3\ncccaabababaccbc", "output": "cccbbabaccbc" }, { "input": "15 9\ncccaabababaccbc", "output": "cccccc" }, { "input": "5 2\nzyzyx", "output": "zzy" }, { "input": "4 3\nhack", "output": "k" }, { "input": "4 3\nzzzz", "output": "z" }, { "i...
1,657,086,572
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
4
2,000
13,107,200
n, k = map(int, input().split()) s = input() freq = [0] * 26 for i in range(n): freq[ord(s[i]) - ord('a')] += 1 ctr = k for i in range(26): if freq[i] > ctr: freq[i] -= ctr ctr = 0 else: ctr -= freq[i] freq[i] = 0 if ctr <= 0: break ans = "" for i ...
Title: Alphabetic Removals Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a string $s$ consisting of $n$ lowercase Latin letters. Polycarp wants to remove exactly $k$ characters ($k \le n$) from the string $s$. Polycarp uses the following algorithm $k$ times: - if there is...
```python n, k = map(int, input().split()) s = input() freq = [0] * 26 for i in range(n): freq[ord(s[i]) - ord('a')] += 1 ctr = k for i in range(26): if freq[i] > ctr: freq[i] -= ctr ctr = 0 else: ctr -= freq[i] freq[i] = 0 if ctr <= 0: break ans = ...
0
626
B
Cards
PROGRAMMING
1,300
[ "constructive algorithms", "dp", "math" ]
null
null
Catherine has a deck of *n* cards, each of which is either red, green, or blue. As long as there are at least two cards left, she can do one of two actions: - take any two (not necessarily adjacent) cards with different colors and exchange them for a new card of the third color; - take any two (not necessarily adja...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=200) — the total number of cards. The next line contains a string *s* of length *n* — the colors of the cards. *s* contains only the characters 'B', 'G', and 'R', representing blue, green, and red, respectively.
Print a single string of up to three characters — the possible colors of the final card (using the same symbols as the input) in alphabetical order.
[ "2\nRB\n", "3\nGRG\n", "5\nBBBBB\n" ]
[ "G\n", "BR\n", "B\n" ]
In the first sample, Catherine has one red card and one blue card, which she must exchange for a green card. In the second sample, Catherine has two green cards and one red card. She has two options: she can exchange the two green cards for a green card, then exchange the new green card and the red card for a blue car...
750
[ { "input": "2\nRB", "output": "G" }, { "input": "3\nGRG", "output": "BR" }, { "input": "5\nBBBBB", "output": "B" }, { "input": "1\nR", "output": "R" }, { "input": "200\nBBRGRRBBRGGGBGBGBGRRGRGRGRBGRGRRBBGRGBGRRGRRRGGBBRGBGBGBRBBBBBBBGGBRGGRRRGGRGBGBGGBRRRRBRRRBRBB...
1,697,569,434
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
input() input_string = input() count_a, count_b, count_c = sorted((input_string.count(x), x) for x in 'RGB') if count_a[0] or count_b[0] > 1: print('BGR') elif count_b[0] and count_c[0] > 1: print(''.join(sorted(count_a[1] + count_b[1])) elif count_b[0]: print(count_a[1]) else: print(count_c...
Title: Cards Time Limit: None seconds Memory Limit: None megabytes Problem Description: Catherine has a deck of *n* cards, each of which is either red, green, or blue. As long as there are at least two cards left, she can do one of two actions: - take any two (not necessarily adjacent) cards with different colors...
```python input() input_string = input() count_a, count_b, count_c = sorted((input_string.count(x), x) for x in 'RGB') if count_a[0] or count_b[0] > 1: print('BGR') elif count_b[0] and count_c[0] > 1: print(''.join(sorted(count_a[1] + count_b[1])) elif count_b[0]: print(count_a[1]) else: pri...
-1
656
G
You're a Professional
PROGRAMMING
1,900
[ "*special" ]
null
null
A simple recommendation system would recommend a user things liked by a certain number of their friends. In this problem you will implement part of such a system. You are given user's friends' opinions about a list of items. You are also given a threshold *T* — the minimal number of "likes" necessary for an item to be...
The first line of the input will contain three space-separated integers: the number of friends *F* (1<=≤<=*F*<=≤<=10), the number of items *I* (1<=≤<=*I*<=≤<=10) and the threshold *T* (1<=≤<=*T*<=≤<=*F*). The following *F* lines of input contain user's friends' opinions. *j*-th character of *i*-th line is 'Y' if *i*-t...
Output an integer — the number of items liked by at least *T* of user's friends.
[ "3 3 2\nYYY\nNNN\nYNY\n", "4 4 1\nNNNY\nNNYN\nNYNN\nYNNN\n" ]
[ "2\n", "4\n" ]
none
0
[ { "input": "3 3 2\nYYY\nNNN\nYNY", "output": "2" }, { "input": "4 4 1\nNNNY\nNNYN\nNYNN\nYNNN", "output": "4" }, { "input": "3 5 2\nNYNNY\nYNNNN\nNNYYN", "output": "0" }, { "input": "1 10 1\nYYYNYNNYNN", "output": "5" }, { "input": "10 1 5\nY\nN\nN\nN\nY\nN\nN\nY\...
1,670,579,859
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
f,I,T=map(int,input().split()) s[]=map(string,input().split()) print(sum(sum((s[i][j] == 'Y' for i in range(f)))>=T for j in range(I)))
Title: You're a Professional Time Limit: None seconds Memory Limit: None megabytes Problem Description: A simple recommendation system would recommend a user things liked by a certain number of their friends. In this problem you will implement part of such a system. You are given user's friends' opinions about a li...
```python f,I,T=map(int,input().split()) s[]=map(string,input().split()) print(sum(sum((s[i][j] == 'Y' for i in range(f)))>=T for j in range(I))) ```
-1
625
B
War of the Corporations
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "strings" ]
null
null
A long time ago, in a galaxy far far away two giant IT-corporations Pineapple and Gogol continue their fierce competition. Crucial moment is just around the corner: Gogol is ready to release it's new tablet Lastus 3000. This new device is equipped with specially designed artificial intelligence (AI). Employees of Pine...
The first line of the input contains the name of AI designed by Gogol, its length doesn't exceed 100<=000 characters. Second line contains the name of the phone released by Pineapple 200 years ago, its length doesn't exceed 30. Both string are non-empty and consist of only small English letters.
Print the minimum number of characters that must be replaced with "#" in order to obtain that the name of the phone doesn't occur in the name of AI as a substring.
[ "intellect\ntell\n", "google\napple\n", "sirisiri\nsir\n" ]
[ "1", "0", "2" ]
In the first sample AI's name may be replaced with "int#llect". In the second sample Gogol can just keep things as they are. In the third sample one of the new possible names of AI may be "s#ris#ri".
750
[ { "input": "intellect\ntell", "output": "1" }, { "input": "google\napple", "output": "0" }, { "input": "sirisiri\nsir", "output": "2" }, { "input": "sirisiri\nsiri", "output": "2" }, { "input": "aaaaaaa\naaaa", "output": "1" }, { "input": "bbbbbb\nbb",...
1,465,765,999
2,147,483,647
PyPy 3
OK
TESTS
56
124
24,064,000
s1=input() s2=input() per=s1.count(s2) print(per)
Title: War of the Corporations Time Limit: None seconds Memory Limit: None megabytes Problem Description: A long time ago, in a galaxy far far away two giant IT-corporations Pineapple and Gogol continue their fierce competition. Crucial moment is just around the corner: Gogol is ready to release it's new tablet Last...
```python s1=input() s2=input() per=s1.count(s2) print(per) ```
3
697
B
Barnicle
PROGRAMMING
1,400
[ "brute force", "implementation", "math", "strings" ]
null
null
Barney is standing in a bar and starring at a pretty girl. He wants to shoot her with his heart arrow but he needs to know the distance between him and the girl to make his shot accurate. Barney asked the bar tender Carl about this distance value, but Carl was so busy talking to the customers so he wrote the distance ...
The first and only line of input contains a single string of form *a*.*deb* where *a*, *d* and *b* are integers and *e* is usual character 'e' (0<=≤<=*a*<=≤<=9,<=0<=≤<=*d*<=&lt;<=10100,<=0<=≤<=*b*<=≤<=100) — the scientific notation of the desired distance value. *a* and *b* contain no leading zeros and *d* contains no...
Print the only real number *x* (the desired distance value) in the only line in its decimal notation. Thus if *x* is an integer, print it's integer value without decimal part and decimal point and without leading zeroes. Otherwise print *x* in a form of *p*.*q* such that *p* is an integer that have no leading zeroe...
[ "8.549e2\n", "8.549e3\n", "0.33e0\n" ]
[ "854.9\n", "8549\n", "0.33\n" ]
none
1,000
[ { "input": "8.549e2", "output": "854.9" }, { "input": "8.549e3", "output": "8549" }, { "input": "0.33e0", "output": "0.33" }, { "input": "1.31e1", "output": "13.1" }, { "input": "1.038e0", "output": "1.038" }, { "input": "8.25983e5", "output": "825...
1,590,177,083
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
124
307,200
f=open('p.py','w') f.write('x='+input()) f.close() from p import x if x==int(x): x=int(x) print(x)
Title: Barnicle Time Limit: None seconds Memory Limit: None megabytes Problem Description: Barney is standing in a bar and starring at a pretty girl. He wants to shoot her with his heart arrow but he needs to know the distance between him and the girl to make his shot accurate. Barney asked the bar tender Carl abou...
```python f=open('p.py','w') f.write('x='+input()) f.close() from p import x if x==int(x): x=int(x) print(x) ```
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,660,301,918
2,147,483,647
Python 3
OK
TESTS
33
46
0
def isprime(num): for n in range(2,int((num**0.5)+1)): if num%n == 0: return False return True n = int(input()) a = 4 j = n-4 while isprime(j): a = a + 2 j = j -2 print(a,j)
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 isprime(num): for n in range(2,int((num**0.5)+1)): if num%n == 0: return False return True n = int(input()) a = 4 j = n-4 while isprime(j): a = a + 2 j = j -2 print(a,j) ```
3
379
A
New Year Candles
PROGRAMMING
1,000
[ "implementation" ]
null
null
Vasily the Programmer loves romance, so this year he decided to illuminate his room with candles. Vasily has *a* candles.When Vasily lights up a new candle, it first burns for an hour and then it goes out. Vasily is smart, so he can make *b* went out candles into a new candle. As a result, this new candle can be used ...
The single line contains two integers, *a* and *b* (1<=≤<=*a*<=≤<=1000; 2<=≤<=*b*<=≤<=1000).
Print a single integer — the number of hours Vasily can light up the room for.
[ "4 2\n", "6 3\n" ]
[ "7\n", "8\n" ]
Consider the first sample. For the first four hours Vasily lights up new candles, then he uses four burned out candles to make two new ones and lights them up. When these candles go out (stop burning), Vasily can make another candle. Overall, Vasily can light up the room for 7 hours.
500
[ { "input": "4 2", "output": "7" }, { "input": "6 3", "output": "8" }, { "input": "1000 1000", "output": "1001" }, { "input": "123 5", "output": "153" }, { "input": "1000 2", "output": "1999" }, { "input": "1 2", "output": "1" }, { "input": ...
1,697,723,011
2,147,483,647
Python 3
OK
TESTS
32
46
0
# https://codeforces.com/problemset/problem/379/A a, b = [int(x) for x in input().split()] h = a while a >= b: div, mod = divmod(a, b) a = div + mod h += div print(h)
Title: New Year Candles Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily the Programmer loves romance, so this year he decided to illuminate his room with candles. Vasily has *a* candles.When Vasily lights up a new candle, it first burns for an hour and then it goes out. Vasily is s...
```python # https://codeforces.com/problemset/problem/379/A a, b = [int(x) for x in input().split()] h = a while a >= b: div, mod = divmod(a, b) a = div + mod h += div print(h) ```
3
451
A
Game With Sticks
PROGRAMMING
900
[ "implementation" ]
null
null
After winning gold and silver in IOI 2014, Akshat and Malvika want to have some fun. Now they are playing a game on a grid made of *n* horizontal and *m* vertical sticks. An intersection point is any point on the grid which is formed by the intersection of one horizontal stick and one vertical stick. In the grid show...
The first line of input contains two space-separated integers, *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100).
Print a single line containing "Akshat" or "Malvika" (without the quotes), depending on the winner of the game.
[ "2 2\n", "2 3\n", "3 3\n" ]
[ "Malvika\n", "Malvika\n", "Akshat\n" ]
Explanation of the first sample: The grid has four intersection points, numbered from 1 to 4. If Akshat chooses intersection point 1, then he will remove two sticks (1 - 2 and 1 - 3). The resulting grid will look like this. Now there is only one remaining intersection point (i.e. 4). Malvika must choose it and remov...
500
[ { "input": "2 2", "output": "Malvika" }, { "input": "2 3", "output": "Malvika" }, { "input": "3 3", "output": "Akshat" }, { "input": "20 68", "output": "Malvika" }, { "input": "1 1", "output": "Akshat" }, { "input": "1 2", "output": "Akshat" }, ...
1,692,581,770
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
nums = [int(i) for i in input().split()] # 2 3 stick = nums[0] + nums[1] # stick = 2 + 3 = 5 points = nums[0] * nums[1] # points = 2 x 3 = 6 Akshat = False while stick > 1: for i in range(points): # i = 0 , 1 , 2 , 3 , 4 , 5 Akshat = not Akshat ...
Title: Game With Sticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: After winning gold and silver in IOI 2014, Akshat and Malvika want to have some fun. Now they are playing a game on a grid made of *n* horizontal and *m* vertical sticks. An intersection point is any point on the grid...
```python nums = [int(i) for i in input().split()] # 2 3 stick = nums[0] + nums[1] # stick = 2 + 3 = 5 points = nums[0] * nums[1] # points = 2 x 3 = 6 Akshat = False while stick > 1: for i in range(points): # i = 0 , 1 , 2 , 3 , 4 , 5 Akshat = not Aksh...
0
15
B
Laser
PROGRAMMING
1,800
[ "math" ]
B. Laser
1
64
Petya is the most responsible worker in the Research Institute. So he was asked to make a very important experiment: to melt the chocolate bar with a new laser device. The device consists of a rectangular field of *n*<=×<=*m* cells and a robotic arm. Each cell of the field is a 1<=×<=1 square. The robotic arm has two l...
The first line contains one integer number *t* (1<=≤<=*t*<=≤<=10000) — the number of test sets. Each of the following *t* lines describes one test set. Each line contains integer numbers *n*, *m*, *x*1, *y*1, *x*2, *y*2, separated by a space (2<=≤<=*n*,<=*m*<=≤<=109, 1<=≤<=*x*1,<=*x*2<=≤<=*n*, 1<=≤<=*y*1,<=*y*2<=≤<=*m*...
Each of the *t* lines of the output should contain the answer to the corresponding input test set.
[ "2\n4 4 1 1 3 3\n4 3 1 1 2 2\n" ]
[ "8\n2\n" ]
none
0
[ { "input": "2\n4 4 1 1 3 3\n4 3 1 1 2 2", "output": "8\n2" }, { "input": "1\n2 2 1 2 2 1", "output": "2" }, { "input": "1\n2 2 1 2 2 1", "output": "2" }, { "input": "1\n3 3 3 2 1 1", "output": "5" }, { "input": "1\n3 4 1 1 1 2", "output": "0" }, { "inp...
1,680,611,817
2,147,483,647
PyPy 3-64
OK
TESTS
20
684
11,059,200
def main(): t = int(input()) for _ in range(t): n, m, x1, y1, x2, y2 = map(int, input().split()) rect_x, rect_y = n - abs(x2 - x1), m - abs(y2 - y1) area = n * m - 2 * rect_x * rect_y + max(0, rect_x * 2 - n) * max(0, rect_y * 2 - m) print(area) if __name__ == "__main_...
Title: Laser Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Petya is the most responsible worker in the Research Institute. So he was asked to make a very important experiment: to melt the chocolate bar with a new laser device. The device consists of a rectangular field of *n*<=×<=*m* cells an...
```python def main(): t = int(input()) for _ in range(t): n, m, x1, y1, x2, y2 = map(int, input().split()) rect_x, rect_y = n - abs(x2 - x1), m - abs(y2 - y1) area = n * m - 2 * rect_x * rect_y + max(0, rect_x * 2 - n) * max(0, rect_y * 2 - m) print(area) if __name__ =...
3.575603
808
B
Average Sleep Time
PROGRAMMING
1,300
[ "data structures", "implementation", "math" ]
null
null
It's been almost a week since Polycarp couldn't get rid of insomnia. And as you may already know, one week in Berland lasts *k* days! When Polycarp went to a doctor with his problem, the doctor asked him about his sleeping schedule (more specifically, the average amount of hours of sleep per week). Luckily, Polycarp k...
The first line contains two integer numbers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=2·105). The second line contains *n* integer numbers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=105).
Output average sleeping time over all weeks. The answer is considered to be correct if its absolute or relative error does not exceed 10<=-<=6. In particular, it is enough to output real number with at least 6 digits after the decimal point.
[ "3 2\n3 4 7\n", "1 1\n10\n", "8 2\n1 2 4 100000 123 456 789 1\n" ]
[ "9.0000000000\n", "10.0000000000\n", "28964.2857142857\n" ]
In the third example there are *n* - *k* + 1 = 7 weeks, so the answer is sums of all weeks divided by 7.
0
[ { "input": "3 2\n3 4 7", "output": "9.0000000000" }, { "input": "1 1\n10", "output": "10.0000000000" }, { "input": "8 2\n1 2 4 100000 123 456 789 1", "output": "28964.2857142857" }, { "input": "1 1\n1", "output": "1.0000000000" }, { "input": "1 1\n100000", "ou...
1,550,642,298
2,147,483,647
Python 3
OK
TESTS
29
248
14,131,200
n,k = map(int, input().split()) values = list(map(int, input().split())) total = sum(values[:k]) hours = total for i in range(k,n): total += values[i] - values[i-k] hours += total print("%.6f" % (hours/(n-k+1)))
Title: Average Sleep Time Time Limit: None seconds Memory Limit: None megabytes Problem Description: It's been almost a week since Polycarp couldn't get rid of insomnia. And as you may already know, one week in Berland lasts *k* days! When Polycarp went to a doctor with his problem, the doctor asked him about his s...
```python n,k = map(int, input().split()) values = list(map(int, input().split())) total = sum(values[:k]) hours = total for i in range(k,n): total += values[i] - values[i-k] hours += total print("%.6f" % (hours/(n-k+1))) ```
3
485
B
Valuable Resources
PROGRAMMING
1,300
[ "brute force", "greedy" ]
null
null
Many computer strategy games require building cities, recruiting army, conquering tribes, collecting resources. Sometimes it leads to interesting problems. Let's suppose that your task is to build a square city. The world map uses the Cartesian coordinates. The sides of the city should be parallel to coordinate axes....
The first line of the input contains number *n* — the number of mines on the map (2<=≤<=*n*<=≤<=1000). Each of the next *n* lines contains a pair of integers *x**i* and *y**i* — the coordinates of the corresponding mine (<=-<=109<=≤<=*x**i*,<=*y**i*<=≤<=109). All points are pairwise distinct.
Print the minimum area of the city that can cover all the mines with valuable resources.
[ "2\n0 0\n2 2\n", "2\n0 0\n0 3\n" ]
[ "4\n", "9\n" ]
none
500
[ { "input": "2\n0 0\n2 2", "output": "4" }, { "input": "2\n0 0\n0 3", "output": "9" }, { "input": "2\n0 1\n1 0", "output": "1" }, { "input": "3\n2 2\n1 1\n3 3", "output": "4" }, { "input": "3\n3 1\n1 3\n2 2", "output": "4" }, { "input": "3\n0 1\n1 0\n2 ...
1,417,189,694
2,147,483,647
Python 3
OK
TESTS
45
124
0
n = int(input()) l, r = 10**9, -10**9 b, t = 10**9, -10**9 for i in range(n): x, y = [int(x) for x in input().split()] l = min(x, l) r = max(x, r) b = min(y, b) t = max(y, t) print(max(r - l, t - b) ** 2)
Title: Valuable Resources Time Limit: None seconds Memory Limit: None megabytes Problem Description: Many computer strategy games require building cities, recruiting army, conquering tribes, collecting resources. Sometimes it leads to interesting problems. Let's suppose that your task is to build a square city. Th...
```python n = int(input()) l, r = 10**9, -10**9 b, t = 10**9, -10**9 for i in range(n): x, y = [int(x) for x in input().split()] l = min(x, l) r = max(x, r) b = min(y, b) t = max(y, t) print(max(r - l, t - b) ** 2) ```
3
818
B
Permutation Game
PROGRAMMING
1,600
[ "implementation" ]
null
null
*n* children are standing in a circle and playing a game. Children's numbers in clockwise order form a permutation *a*1,<=*a*2,<=...,<=*a**n* of length *n*. It is an integer sequence such that each integer from 1 to *n* appears exactly once in it. The game consists of *m* steps. On each step the current leader with in...
The first line contains two integer numbers *n*, *m* (1<=≤<=*n*,<=*m*<=≤<=100). The second line contains *m* integer numbers *l*1,<=*l*2,<=...,<=*l**m* (1<=≤<=*l**i*<=≤<=*n*) — indices of leaders in the beginning of each step.
Print such permutation of *n* numbers *a*1,<=*a*2,<=...,<=*a**n* that leaders in the game will be exactly *l*1,<=*l*2,<=...,<=*l**m* if all the rules are followed. If there are multiple solutions print any of them. If there is no permutation which satisfies all described conditions print -1.
[ "4 5\n2 3 1 4 4\n", "3 3\n3 1 2\n" ]
[ "3 1 2 4 \n", "-1\n" ]
Let's follow leadership in the first example: - Child 2 starts. - Leadership goes from 2 to 2 + *a*<sub class="lower-index">2</sub> = 3. - Leadership goes from 3 to 3 + *a*<sub class="lower-index">3</sub> = 5. As it's greater than 4, it's going in a circle to 1. - Leadership goes from 1 to 1 + *a*<sub class="lowe...
0
[ { "input": "4 5\n2 3 1 4 4", "output": "3 1 2 4 " }, { "input": "3 3\n3 1 2", "output": "-1" }, { "input": "1 100\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...
1,498,754,579
5,879
Python 3
WRONG_ANSWER
TESTS
2
61
5,529,600
def R(): return map(int, input().split()) n, m = R() l = list(R()) a = [None] * n b = [False] * n for i in range(m - 1): j = l[i] - 1 if a[j] is not None: print(-1) exit() d = l[i + 1] - l[i] if d <= 0: d += n if b[d - 1]: print(-1) exi...
Title: Permutation Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* children are standing in a circle and playing a game. Children's numbers in clockwise order form a permutation *a*1,<=*a*2,<=...,<=*a**n* of length *n*. It is an integer sequence such that each integer from 1 to *n...
```python def R(): return map(int, input().split()) n, m = R() l = list(R()) a = [None] * n b = [False] * n for i in range(m - 1): j = l[i] - 1 if a[j] is not None: print(-1) exit() d = l[i + 1] - l[i] if d <= 0: d += n if b[d - 1]: print(-1) ...
0
337
A
Puzzles
PROGRAMMING
900
[ "greedy" ]
null
null
The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, as wikipedia states, is a tiling puzzle that requires the assembly of numerous small, often od...
The first line contains space-separated integers *n* and *m* (2<=≤<=*n*<=≤<=*m*<=≤<=50). The second line contains *m* space-separated integers *f*1,<=*f*2,<=...,<=*f**m* (4<=≤<=*f**i*<=≤<=1000) — the quantities of pieces in the puzzles sold in the shop.
Print a single integer — the least possible difference the teacher can obtain.
[ "4 6\n10 12 10 7 5 22\n" ]
[ "5\n" ]
Sample 1. The class has 4 students. The shop sells 6 puzzles. If Ms. Manana buys the first four puzzles consisting of 10, 12, 10 and 7 pieces correspondingly, then the difference between the sizes of the largest and the smallest puzzle will be equal to 5. It is impossible to obtain a smaller difference. Note that the t...
500
[ { "input": "4 6\n10 12 10 7 5 22", "output": "5" }, { "input": "2 2\n4 4", "output": "0" }, { "input": "2 10\n4 5 6 7 8 9 10 11 12 12", "output": "0" }, { "input": "4 5\n818 136 713 59 946", "output": "759" }, { "input": "3 20\n446 852 783 313 549 965 40 88 86 617...
1,672,460,946
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
92
0
n,m=map(int,input().split()) f=map(int,input().split()) a=[] b=0 for i in f: a.append(i) b+=1 if(b==n): break c=max(a)-min(a) print(c)
Title: Puzzles Time Limit: None seconds Memory Limit: None megabytes Problem Description: The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, a...
```python n,m=map(int,input().split()) f=map(int,input().split()) a=[] b=0 for i in f: a.append(i) b+=1 if(b==n): break c=max(a)-min(a) print(c) ```
0
400
D
Dima and Bacteria
PROGRAMMING
2,000
[ "dsu", "graphs", "shortest paths" ]
null
null
Dima took up the biology of bacteria, as a result of his experiments, he invented *k* types of bacteria. Overall, there are *n* bacteria at his laboratory right now, and the number of bacteria of type *i* equals *c**i*. For convenience, we will assume that all the bacteria are numbered from 1 to *n*. The bacteria of ty...
The first line contains three integers *n*,<=*m*,<=*k* (1<=≤<=*n*<=≤<=105; 0<=≤<=*m*<=≤<=105; 1<=≤<=*k*<=≤<=500). The next line contains *k* integers *c*1,<=*c*2,<=...,<=*c**k* (1<=≤<=*c**i*<=≤<=*n*). Each of the next *m* lines contains three integers *u**i*,<=*v**i*,<=*x**i* (1<=≤<=*u**i*,<=*v**i*<=≤<=105; 0<=≤<=*x**i...
If Dima's type-distribution is correct, print string «Yes», and then *k* lines: in the *i*-th line print integers *d*[*i*][1],<=*d*[*i*][2],<=...,<=*d*[*i*][*k*] (*d*[*i*][*i*]<==<=0). If there is no way to move energy from bacteria *i* to bacteria *j* appropriate *d*[*i*][*j*] must equal to -1. If the type-distributio...
[ "4 4 2\n1 3\n2 3 0\n3 4 0\n2 4 1\n2 1 2\n", "3 1 2\n2 1\n1 2 0\n", "3 2 2\n2 1\n1 2 0\n2 3 1\n", "3 0 2\n1 2\n" ]
[ "Yes\n0 2\n2 0\n", "Yes\n0 -1\n-1 0\n", "Yes\n0 1\n1 0\n", "No\n" ]
none
2,000
[ { "input": "4 4 2\n1 3\n2 3 0\n3 4 0\n2 4 1\n2 1 2", "output": "Yes\n0 2\n2 0" }, { "input": "3 1 2\n2 1\n1 2 0", "output": "Yes\n0 -1\n-1 0" }, { "input": "3 2 2\n2 1\n1 2 0\n2 3 1", "output": "Yes\n0 1\n1 0" }, { "input": "3 0 2\n1 2", "output": "No" }, { "input...
1,561,110,268
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
12
1,700
75,161,600
'''input 4 4 2 1 3 2 3 0 3 4 0 2 4 1 2 1 2 ''' # problem solving is essentially pattern recognition from sys import stdin, stdout import math import collections # code for heapdict def doc(s): if hasattr(s, '__call__'): s = s.__doc__ def f(g): g.__doc__ = s return g return f cl...
Title: Dima and Bacteria Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dima took up the biology of bacteria, as a result of his experiments, he invented *k* types of bacteria. Overall, there are *n* bacteria at his laboratory right now, and the number of bacteria of type *i* equals *c**i...
```python '''input 4 4 2 1 3 2 3 0 3 4 0 2 4 1 2 1 2 ''' # problem solving is essentially pattern recognition from sys import stdin, stdout import math import collections # code for heapdict def doc(s): if hasattr(s, '__call__'): s = s.__doc__ def f(g): g.__doc__ = s return g ret...
0
978
F
Mentors
PROGRAMMING
1,500
[ "binary search", "data structures", "implementation" ]
null
null
In BerSoft $n$ programmers work, the programmer $i$ is characterized by a skill $r_i$. A programmer $a$ can be a mentor of a programmer $b$ if and only if the skill of the programmer $a$ is strictly greater than the skill of the programmer $b$ $(r_a &gt; r_b)$ and programmers $a$ and $b$ are not in a quarrel. You are...
The first line contains two integers $n$ and $k$ $(2 \le n \le 2 \cdot 10^5$, $0 \le k \le \min(2 \cdot 10^5, \frac{n \cdot (n - 1)}{2}))$ — total number of programmers and number of pairs of programmers which are in a quarrel. The second line contains a sequence of integers $r_1, r_2, \dots, r_n$ $(1 \le r_i \le 10^{...
Print $n$ integers, the $i$-th number should be equal to the number of programmers, for which the $i$-th programmer can be a mentor. Programmers are numbered in the same order that their skills are given in the input.
[ "4 2\n10 4 10 15\n1 2\n4 3\n", "10 4\n5 4 1 5 4 3 7 1 2 5\n4 6\n2 1\n10 8\n3 5\n" ]
[ "0 0 1 2 \n", "5 4 0 5 3 3 9 0 2 5 \n" ]
In the first example, the first programmer can not be mentor of any other (because only the second programmer has a skill, lower than first programmer skill, but they are in a quarrel). The second programmer can not be mentor of any other programmer, because his skill is minimal among others. The third programmer can b...
0
[ { "input": "4 2\n10 4 10 15\n1 2\n4 3", "output": "0 0 1 2 " }, { "input": "10 4\n5 4 1 5 4 3 7 1 2 5\n4 6\n2 1\n10 8\n3 5", "output": "5 4 0 5 3 3 9 0 2 5 " }, { "input": "2 0\n3 1", "output": "1 0 " }, { "input": "2 0\n1 1", "output": "0 0 " }, { "input": "10 35...
1,681,416,204
2,147,483,647
PyPy 3-64
OK
TESTS
41
872
56,934,400
import sys input = lambda: sys.stdin.readline().rstrip() from bisect import * N,K = map(int, input().split()) R = list(map(int, input().split())) A = sorted(R) P = [[] for _ in range(N)] for _ in range(K): u,v = map(int, input().split()) u-=1;v-=1 P[u].append(R[v]) P[v].append(R[u]) ...
Title: Mentors Time Limit: None seconds Memory Limit: None megabytes Problem Description: In BerSoft $n$ programmers work, the programmer $i$ is characterized by a skill $r_i$. A programmer $a$ can be a mentor of a programmer $b$ if and only if the skill of the programmer $a$ is strictly greater than the skill of t...
```python import sys input = lambda: sys.stdin.readline().rstrip() from bisect import * N,K = map(int, input().split()) R = list(map(int, input().split())) A = sorted(R) P = [[] for _ in range(N)] for _ in range(K): u,v = map(int, input().split()) u-=1;v-=1 P[u].append(R[v]) P[v].append...
3
19
A
World Football Cup
PROGRAMMING
1,400
[ "implementation" ]
A. World Football Cup
2
64
Everyone knows that 2010 FIFA World Cup is being held in South Africa now. By the decision of BFA (Berland's Football Association) next World Cup will be held in Berland. BFA took the decision to change some World Cup regulations: - the final tournament features *n* teams (*n* is always even) - the first *n*<=/<=2 t...
The first input line contains the only integer *n* (1<=≤<=*n*<=≤<=50) — amount of the teams, taking part in the final tournament of World Cup. The following *n* lines contain the names of these teams, a name is a string of lower-case and upper-case Latin letters, its length doesn't exceed 30 characters. The following *...
Output *n*<=/<=2 lines — names of the teams, which managed to get through to the knockout stage in lexicographical order. Output each name in a separate line. No odd characters (including spaces) are allowed. It's guaranteed that the described regulations help to order the teams without ambiguity.
[ "4\nA\nB\nC\nD\nA-B 1:1\nA-C 2:2\nA-D 1:0\nB-C 1:0\nB-D 0:3\nC-D 0:3\n", "2\na\nA\na-A 2:1\n" ]
[ "A\nD\n", "a\n" ]
none
0
[ { "input": "4\nA\nB\nC\nD\nA-B 1:1\nA-C 2:2\nA-D 1:0\nB-C 1:0\nB-D 0:3\nC-D 0:3", "output": "A\nD" }, { "input": "2\na\nA\na-A 2:1", "output": "a" }, { "input": "2\nEULEUbCmfrmqxtzvg\nuHGRmKUhDcxcfqyruwzen\nuHGRmKUhDcxcfqyruwzen-EULEUbCmfrmqxtzvg 13:92", "output": "EULEUbCmfrmqxtzvg"...
1,386,245,497
2,147,483,647
Python 3
OK
TESTS
29
92
0
p, n = {}, int(input()) for i in range(n): p[input()] = [0, 0, 0] for i in range((n * (n - 1)) // 2): t = input().split() a, b = t[0].split('-') x, y = t[1].split(':') x, y = int(x), int(y) if x > y: p[a][0] += 3 elif x < y: p[b][0] += 3 else: p[a][0] += 1 p[b][0] ...
Title: World Football Cup Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Everyone knows that 2010 FIFA World Cup is being held in South Africa now. By the decision of BFA (Berland's Football Association) next World Cup will be held in Berland. BFA took the decision to change some World Cup reg...
```python p, n = {}, int(input()) for i in range(n): p[input()] = [0, 0, 0] for i in range((n * (n - 1)) // 2): t = input().split() a, b = t[0].split('-') x, y = t[1].split(':') x, y = int(x), int(y) if x > y: p[a][0] += 3 elif x < y: p[b][0] += 3 else: p[a][0] += 1 ...
3.977
842
C
Ilya And The Tree
PROGRAMMING
2,000
[ "dfs and similar", "graphs", "math", "number theory", "trees" ]
null
null
Ilya is very fond of graphs, especially trees. During his last trip to the forest Ilya found a very interesting tree rooted at vertex 1. There is an integer number written on each vertex of the tree; the number written on vertex *i* is equal to *a**i*. Ilya believes that the beauty of the vertex *x* is the greatest co...
First line contains one integer number *n* — the number of vertices in tree (1<=≤<=*n*<=≤<=2·105). Next line contains *n* integer numbers *a**i* (1<=≤<=*i*<=≤<=*n*, 1<=≤<=*a**i*<=≤<=2·105). Each of next *n*<=-<=1 lines contains two integer numbers *x* and *y* (1<=≤<=*x*,<=*y*<=≤<=*n*, *x*<=≠<=*y*), which means that t...
Output *n* numbers separated by spaces, where *i*-th number equals to maximum possible beauty of vertex *i*.
[ "2\n6 2\n1 2\n", "3\n6 2 3\n1 2\n1 3\n", "1\n10\n" ]
[ "6 6 \n", "6 6 6 \n", "10 \n" ]
none
1,500
[ { "input": "2\n6 2\n1 2", "output": "6 6 " }, { "input": "3\n6 2 3\n1 2\n1 3", "output": "6 6 6 " }, { "input": "1\n10", "output": "10 " }, { "input": "10\n2 3 4 5 6 7 8 9 10 11\n1 2\n2 3\n3 4\n4 5\n5 6\n6 7\n4 8\n8 9\n9 10", "output": "2 3 2 1 1 1 1 1 1 1 " }, { ...
1,504,204,721
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
2,000
35,328,000
def read(f = int): return f(input()) def readlist(f = int): return list(map(f, input().split())) n = read() a = readlist() g = {x:[] for x in range(n)} for _ in range(n-1): x, y = readlist() g[x-1].append(y-1) g[y-1].append(x-1) def gcd(a, b): return a if b == 0 else gcd(b, a%b) def divisors(n...
Title: Ilya And The Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ilya is very fond of graphs, especially trees. During his last trip to the forest Ilya found a very interesting tree rooted at vertex 1. There is an integer number written on each vertex of the tree; the number writte...
```python def read(f = int): return f(input()) def readlist(f = int): return list(map(f, input().split())) n = read() a = readlist() g = {x:[] for x in range(n)} for _ in range(n-1): x, y = readlist() g[x-1].append(y-1) g[y-1].append(x-1) def gcd(a, b): return a if b == 0 else gcd(b, a%b) def ...
0
427
A
Police Recruits
PROGRAMMING
800
[ "implementation" ]
null
null
The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of the police force can investigate only one crime during his/her lifetime. If there is no police offi...
The first line of input will contain an integer *n* (1<=≤<=*n*<=≤<=105), the number of events. The next line will contain *n* space-separated integers. If the integer is -1 then it means a crime has occurred. Otherwise, the integer will be positive, the number of officers recruited together at that time. No more than ...
Print a single integer, the number of crimes which will go untreated.
[ "3\n-1 -1 1\n", "8\n1 -1 1 -1 -1 1 1 1\n", "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1\n" ]
[ "2\n", "1\n", "8\n" ]
Lets consider the second example: 1. Firstly one person is hired. 1. Then crime appears, the last hired person will investigate this crime. 1. One more person is hired. 1. One more crime appears, the last hired person will investigate this crime. 1. Crime appears. There is no free policeman at the time, so this c...
500
[ { "input": "3\n-1 -1 1", "output": "2" }, { "input": "8\n1 -1 1 -1 -1 1 1 1", "output": "1" }, { "input": "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1", "output": "8" }, { "input": "7\n-1 -1 1 1 -1 -1 1", "output": "2" }, { "input": "21\n-1 -1 -1 -1 -1 3 2 -1 6 -1 -1 2 1 ...
1,690,379,013
2,147,483,647
PyPy 3-64
OK
TESTS
63
77
13,107,200
n=int(input()) po=0 dozd=0 ab=0 m=list(map(int,input().split())) for i in range(len(m)): if 0>m[i]: dozd+=1 elif m[i]>0: po+=m[i] if dozd>=po: ab+=(dozd-po) dozd=0 po=0 elif po>=dozd: po-=dozd dozd=0 print(ab)
Title: Police Recruits Time Limit: None seconds Memory Limit: None megabytes Problem Description: The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of...
```python n=int(input()) po=0 dozd=0 ab=0 m=list(map(int,input().split())) for i in range(len(m)): if 0>m[i]: dozd+=1 elif m[i]>0: po+=m[i] if dozd>=po: ab+=(dozd-po) dozd=0 po=0 elif po>=dozd: po-=dozd dozd=0 print(ab) ```
3
625
C
K-special Tables
PROGRAMMING
1,300
[ "constructive algorithms", "implementation" ]
null
null
People do many crazy things to stand out in a crowd. Some of them dance, some learn by heart rules of Russian language, some try to become an outstanding competitive programmers, while others collect funny math objects. Alis is among these collectors. Right now she wants to get one of *k*-special tables. In case you f...
The first line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=500,<=1<=≤<=*k*<=≤<=*n*) — the size of the table Alice is looking for and the column that should have maximum possible sum.
First print the sum of the integers in the *k*-th column of the required table. Next *n* lines should contain the description of the table itself: first line should contains *n* elements of the first row, second line should contain *n* elements of the second row and so on. If there are multiple suitable table, you ar...
[ "4 1\n", "5 3\n" ]
[ "28\n1 2 3 4\n5 6 7 8\n9 10 11 12\n13 14 15 16\n", "85\n5 6 17 18 19\n9 10 23 24 25\n7 8 20 21 22\n3 4 14 15 16\n1 2 11 12 13\n\n" ]
none
1,000
[ { "input": "4 1", "output": "28\n1 2 3 4\n5 6 7 8\n9 10 11 12\n13 14 15 16" }, { "input": "5 3", "output": "85\n1 2 11 12 13\n3 4 14 15 16\n5 6 17 18 19\n7 8 20 21 22\n9 10 23 24 25" }, { "input": "1 1", "output": "1\n1" }, { "input": "2 1", "output": "4\n1 2\n3 4" }, ...
1,544,317,400
2,147,483,647
PyPy 3
OK
TESTS
52
280
8,601,600
n, k = map(int, input().split()) ans = list() left = list() if k != 1: for idx in range(1, n * (k - 1) + 1, k - 1): left.append(list(range(idx, idx + k - 1))) right = list() sm = 0 for idx in range(n * (k - 1) + 1, n * n + 1, n - k + 1): sm += idx right.append(list(range(idx, i...
Title: K-special Tables Time Limit: None seconds Memory Limit: None megabytes Problem Description: People do many crazy things to stand out in a crowd. Some of them dance, some learn by heart rules of Russian language, some try to become an outstanding competitive programmers, while others collect funny math objects...
```python n, k = map(int, input().split()) ans = list() left = list() if k != 1: for idx in range(1, n * (k - 1) + 1, k - 1): left.append(list(range(idx, idx + k - 1))) right = list() sm = 0 for idx in range(n * (k - 1) + 1, n * n + 1, n - k + 1): sm += idx right.append(list(ra...
3
776
B
Sherlock and his girlfriend
PROGRAMMING
1,200
[ "constructive algorithms", "number theory" ]
null
null
Sherlock has a new girlfriend (so unlike him!). Valentine's day is coming and he wants to gift her some jewelry. He bought *n* pieces of jewelry. The *i*-th piece has price equal to *i*<=+<=1, that is, the prices of the jewelry are 2,<=3,<=4,<=... *n*<=+<=1. Watson gave Sherlock a challenge to color these jewelry pie...
The only line contains single integer *n* (1<=≤<=*n*<=≤<=100000) — the number of jewelry pieces.
The first line of output should contain a single integer *k*, the minimum number of colors that can be used to color the pieces of jewelry with the given constraints. The next line should consist of *n* space-separated integers (between 1 and *k*) that specify the color of each piece in the order of increasing price. ...
[ "3\n", "4\n" ]
[ "2\n1 1 2 ", "2\n2 1 1 2\n" ]
In the first input, the colors for first, second and third pieces of jewelry having respective prices 2, 3 and 4 are 1, 1 and 2 respectively. In this case, as 2 is a prime divisor of 4, colors of jewelry having prices 2 and 4 must be distinct.
1,000
[ { "input": "3", "output": "2\n1 1 2 " }, { "input": "4", "output": "2\n1 1 2 1 " }, { "input": "17", "output": "2\n1 1 2 1 2 1 2 2 2 1 2 1 2 2 2 1 2 " }, { "input": "25", "output": "2\n1 1 2 1 2 1 2 2 2 1 2 1 2 2 2 1 2 1 2 2 2 1 2 2 2 " }, { "input": "85", "ou...
1,610,038,088
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
47
312
2,969,600
def prime_factors(): n=100000 seive=[i for i in range(n+1)] ## print(seive) i=2 while i*i<=n: for j in range(i*i,n+1,i): if seive[j]%i==0: seive[j]=2 i+=1 for k in range(2,n+1): if seive[k]==k: seive[k]=1 sei...
Title: Sherlock and his girlfriend Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sherlock has a new girlfriend (so unlike him!). Valentine's day is coming and he wants to gift her some jewelry. He bought *n* pieces of jewelry. The *i*-th piece has price equal to *i*<=+<=1, that is, the ...
```python def prime_factors(): n=100000 seive=[i for i in range(n+1)] ## print(seive) i=2 while i*i<=n: for j in range(i*i,n+1,i): if seive[j]%i==0: seive[j]=2 i+=1 for k in range(2,n+1): if seive[k]==k: seive[k]=...
-1
586
A
Alena's Schedule
PROGRAMMING
900
[ "implementation" ]
null
null
Alena has successfully passed the entrance exams to the university and is now looking forward to start studying. One two-hour lesson at the Russian university is traditionally called a pair, it lasts for two academic hours (an academic hour is equal to 45 minutes). The University works in such a way that every day it...
The first line of the input contains a positive integer *n* (1<=≤<=*n*<=≤<=100) — the number of lessons at the university. The second line contains *n* numbers *a**i* (0<=≤<=*a**i*<=≤<=1). Number *a**i* equals 0, if Alena doesn't have the *i*-th pairs, otherwise it is equal to 1. Numbers *a*1,<=*a*2,<=...,<=*a**n* ar...
Print a single number — the number of pairs during which Alena stays at the university.
[ "5\n0 1 0 1 1\n", "7\n1 0 1 0 0 1 0\n", "1\n0\n" ]
[ "4\n", "4\n", "0\n" ]
In the first sample Alena stays at the university from the second to the fifth pair, inclusive, during the third pair she will be it the university waiting for the next pair. In the last sample Alena doesn't have a single pair, so she spends all the time at home.
500
[ { "input": "5\n0 1 0 1 1", "output": "4" }, { "input": "7\n1 0 1 0 0 1 0", "output": "4" }, { "input": "1\n0", "output": "0" }, { "input": "1\n1", "output": "1" }, { "input": "2\n0 0", "output": "0" }, { "input": "2\n0 1", "output": "1" }, { ...
1,444,676,563
2,147,483,647
Python 3
OK
TESTS
60
61
0
n = int(input()) a = list(map(int,input().split())) if a.count(0)==len(a): print(0) quit() while a[0]==0: a.pop(0) while a[-1]==0: a.pop(-1) x = len(a) for i in range(x): if a[i]==0: if a[i-1]==1 and a[i+1]==1: a[i]=1 print(sum(a))
Title: Alena's Schedule Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alena has successfully passed the entrance exams to the university and is now looking forward to start studying. One two-hour lesson at the Russian university is traditionally called a pair, it lasts for two academic ...
```python n = int(input()) a = list(map(int,input().split())) if a.count(0)==len(a): print(0) quit() while a[0]==0: a.pop(0) while a[-1]==0: a.pop(-1) x = len(a) for i in range(x): if a[i]==0: if a[i-1]==1 and a[i+1]==1: a[i]=1 print(sum(a)) ```
3
442
B
Andrey and Problem
PROGRAMMING
1,800
[ "greedy", "math", "probabilities" ]
null
null
Andrey needs one more problem to conduct a programming contest. He has *n* friends who are always willing to help. He can ask some of them to come up with a contest problem. Andrey knows one value for each of his fiends — the probability that this friend will come up with a problem if Andrey asks him. Help Andrey choo...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of Andrey's friends. The second line contains *n* real numbers *p**i* (0.0<=≤<=*p**i*<=≤<=1.0) — the probability that the *i*-th friend can come up with a problem. The probabilities are given with at most 6 digits after decimal point.
Print a single real number — the probability that Andrey won't get upset at the optimal choice of friends. The answer will be considered valid if it differs from the correct one by at most 10<=-<=9.
[ "4\n0.1 0.2 0.3 0.8\n", "2\n0.1 0.2\n" ]
[ "0.800000000000\n", "0.260000000000\n" ]
In the first sample the best strategy for Andrey is to ask only one of his friends, the most reliable one. In the second sample the best strategy for Andrey is to ask all of his friends to come up with a problem. Then the probability that he will get exactly one problem is 0.1·0.8 + 0.9·0.2 = 0.26.
1,500
[ { "input": "4\n0.1 0.2 0.3 0.8", "output": "0.800000000000" }, { "input": "2\n0.1 0.2", "output": "0.260000000000" }, { "input": "1\n0.217266", "output": "0.217266000000" }, { "input": "2\n0.608183 0.375030", "output": "0.608183000000" }, { "input": "3\n0.388818 0...
1,406,391,023
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
16
77
0
#!/usr/bin/env python3 def main(): input() ps = map(float, input().split()) ps = sorted(ps, reverse=True) p = 1 - ps[0] s = ps[0] / (1 - ps[0]) for x in ps[1:]: if s >= 1: break p *= (1 - x) s += x / (1 - x) print(p * s) if __name__ == '__main__': ...
Title: Andrey and Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andrey needs one more problem to conduct a programming contest. He has *n* friends who are always willing to help. He can ask some of them to come up with a contest problem. Andrey knows one value for each of his fie...
```python #!/usr/bin/env python3 def main(): input() ps = map(float, input().split()) ps = sorted(ps, reverse=True) p = 1 - ps[0] s = ps[0] / (1 - ps[0]) for x in ps[1:]: if s >= 1: break p *= (1 - x) s += x / (1 - x) print(p * s) if __name__ == '_...
-1
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,596,014,156
2,147,483,647
PyPy 3
OK
TESTS
81
310
20,172,800
n = int(input()) sum1 = [] sum2 = [] sum3 = [] while n>0: x, y, z = [int(x) for x in input().split()] sum1.append(x) sum2.append(y) sum3.append(z) n = n - 1 if sum(sum1) == 0 and sum(sum2) == 0 and sum(sum3) == 0: print('YES') else: print('NO')
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 n = int(input()) sum1 = [] sum2 = [] sum3 = [] while n>0: x, y, z = [int(x) for x in input().split()] sum1.append(x) sum2.append(y) sum3.append(z) n = n - 1 if sum(sum1) == 0 and sum(sum2) == 0 and sum(sum3) == 0: print('YES') else: print('NO') ```
3.884925
337
A
Puzzles
PROGRAMMING
900
[ "greedy" ]
null
null
The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, as wikipedia states, is a tiling puzzle that requires the assembly of numerous small, often od...
The first line contains space-separated integers *n* and *m* (2<=≤<=*n*<=≤<=*m*<=≤<=50). The second line contains *m* space-separated integers *f*1,<=*f*2,<=...,<=*f**m* (4<=≤<=*f**i*<=≤<=1000) — the quantities of pieces in the puzzles sold in the shop.
Print a single integer — the least possible difference the teacher can obtain.
[ "4 6\n10 12 10 7 5 22\n" ]
[ "5\n" ]
Sample 1. The class has 4 students. The shop sells 6 puzzles. If Ms. Manana buys the first four puzzles consisting of 10, 12, 10 and 7 pieces correspondingly, then the difference between the sizes of the largest and the smallest puzzle will be equal to 5. It is impossible to obtain a smaller difference. Note that the t...
500
[ { "input": "4 6\n10 12 10 7 5 22", "output": "5" }, { "input": "2 2\n4 4", "output": "0" }, { "input": "2 10\n4 5 6 7 8 9 10 11 12 12", "output": "0" }, { "input": "4 5\n818 136 713 59 946", "output": "759" }, { "input": "3 20\n446 852 783 313 549 965 40 88 86 617...
1,676,914,529
2,147,483,647
PyPy 3-64
OK
TESTS
18
124
0
n, k = map(int, input().split()) arr = list(map(int, input().split())) arr.sort() ans = 1e9 for i in range(k - n + 1): ans = min(ans, arr[i + n - 1] - arr[i]) print(ans)
Title: Puzzles Time Limit: None seconds Memory Limit: None megabytes Problem Description: The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, a...
```python n, k = map(int, input().split()) arr = list(map(int, input().split())) arr.sort() ans = 1e9 for i in range(k - n + 1): ans = min(ans, arr[i + n - 1] - arr[i]) print(ans) ```
3
911
B
Two Cakes
PROGRAMMING
1,200
[ "binary search", "brute force", "implementation" ]
null
null
It's New Year's Eve soon, so Ivan decided it's high time he started setting the table. Ivan has bought two cakes and cut them into pieces: the first cake has been cut into *a* pieces, and the second one — into *b* pieces. Ivan knows that there will be *n* people at the celebration (including himself), so Ivan has set ...
The first line contains three integers *n*, *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=100, 2<=≤<=*n*<=≤<=*a*<=+<=*b*) — the number of plates, the number of pieces of the first cake, and the number of pieces of the second cake, respectively.
Print the maximum possible number *x* such that Ivan can distribute the cake in such a way that each plate will contain at least *x* pieces of cake.
[ "5 2 3\n", "4 7 10\n" ]
[ "1\n", "3\n" ]
In the first example there is only one way to distribute cakes to plates, all of them will have 1 cake on it. In the second example you can have two plates with 3 and 4 pieces of the first cake and two plates both with 5 pieces of the second cake. Minimal number of pieces is 3.
0
[ { "input": "5 2 3", "output": "1" }, { "input": "4 7 10", "output": "3" }, { "input": "100 100 100", "output": "2" }, { "input": "10 100 3", "output": "3" }, { "input": "2 9 29", "output": "9" }, { "input": "4 6 10", "output": "3" }, { "inp...
1,528,731,890
2,147,483,647
PyPy 3
OK
TESTS
135
124
0
n,a,b=map(int,input().split()) a,b=max(a,b),min(a,b) res=b b1=b//res while n>b//res+a//res: res-=1 print(res)
Title: Two Cakes Time Limit: None seconds Memory Limit: None megabytes Problem Description: It's New Year's Eve soon, so Ivan decided it's high time he started setting the table. Ivan has bought two cakes and cut them into pieces: the first cake has been cut into *a* pieces, and the second one — into *b* pieces. Iv...
```python n,a,b=map(int,input().split()) a,b=max(a,b),min(a,b) res=b b1=b//res while n>b//res+a//res: res-=1 print(res) ```
3
182
B
Vasya's Calendar
PROGRAMMING
1,000
[ "implementation" ]
null
null
Vasya lives in a strange world. The year has *n* months and the *i*-th month has *a**i* days. Vasya got a New Year present — the clock that shows not only the time, but also the date. The clock's face can display any number from 1 to *d*. It is guaranteed that *a**i*<=≤<=*d* for all *i* from 1 to *n*. The clock does n...
The first line contains the single number *d* — the maximum number of the day that Vasya's clock can show (1<=≤<=*d*<=≤<=106). The second line contains a single integer *n* — the number of months in the year (1<=≤<=*n*<=≤<=2000). The third line contains *n* space-separated integers: *a**i* (1<=≤<=*a**i*<=≤<=*d*) — th...
Print a single number — the number of times Vasya manually increased the day number by one throughout the last year.
[ "4\n2\n2 2\n", "5\n3\n3 4 3\n", "31\n12\n31 28 31 30 31 30 31 31 30 31 30 31\n" ]
[ "2\n", "3\n", "7\n" ]
In the first sample the situation is like this: - Day 1. Month 1. The clock shows 1. Vasya changes nothing. - Day 2. Month 1. The clock shows 2. Vasya changes nothing. - Day 1. Month 2. The clock shows 3. Vasya manually increases the day number by 1. After that the clock shows 4. Vasya increases the day number by ...
500
[ { "input": "4\n2\n2 2", "output": "2" }, { "input": "5\n3\n3 4 3", "output": "3" }, { "input": "31\n12\n31 28 31 30 31 30 31 31 30 31 30 31", "output": "7" }, { "input": "1\n1\n1", "output": "0" }, { "input": "1\n2\n1 1", "output": "0" }, { "input": "2...
1,428,253,708
2,147,483,647
Python 3
OK
TESTS
40
124
307,200
import sys import math d = int(input()) n = int(input()) ai = list(map(int, sys.stdin.readline().split())) k = ai[0] + 1 res = 0 for i in range(1, n): res += d - k + 1 k = ai[i] + 1 print(res)
Title: Vasya's Calendar Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya lives in a strange world. The year has *n* months and the *i*-th month has *a**i* days. Vasya got a New Year present — the clock that shows not only the time, but also the date. The clock's face can display any ...
```python import sys import math d = int(input()) n = int(input()) ai = list(map(int, sys.stdin.readline().split())) k = ai[0] + 1 res = 0 for i in range(1, n): res += d - k + 1 k = ai[i] + 1 print(res) ```
3
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,598,846,436
2,147,483,647
Python 3
OK
TESTS
45
109
6,963,200
a=int(input());b='!'+input()+'@';ans=1;i=1;ok=0 while i<a+1: if b[i]!='?' and b[i+1]!='?' and b[i]==b[i+1]:ans=0 s = 0 if b[i] == '?': for j in 'CYM': if j != b[i - 1] and j != b[i + 1]: s += 1 if s>1:ok=1 i+=1 if ans and ok:print("YES") else:print("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 a=int(input());b='!'+input()+'@';ans=1;i=1;ok=0 while i<a+1: if b[i]!='?' and b[i+1]!='?' and b[i]==b[i+1]:ans=0 s = 0 if b[i] == '?': for j in 'CYM': if j != b[i - 1] and j != b[i + 1]: s += 1 if s>1:ok=1 i+=1 if ans and ok:print("YES") else:print("NO") ```
3
764
B
Timofey and cubes
PROGRAMMING
900
[ "constructive algorithms", "implementation" ]
null
null
Young Timofey has a birthday today! He got kit of *n* cubes as a birthday present from his parents. Every cube has a number *a**i*, which is written on it. Timofey put all the cubes in a row and went to unpack other presents. In this time, Timofey's elder brother, Dima reordered the cubes using the following rule. Sup...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=2·105) — the number of cubes. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=109<=≤<=*a**i*<=≤<=109), where *a**i* is the number written on the *i*-th cube after Dima has changed their order.
Print *n* integers, separated by spaces — the numbers written on the cubes in their initial order. It can be shown that the answer is unique.
[ "7\n4 3 7 6 9 1 2\n", "8\n6 1 4 2 5 6 9 2\n" ]
[ "2 3 9 6 7 1 4", "2 1 6 2 5 4 9 6" ]
Consider the first sample. 1. At the begining row was [2, 3, 9, 6, 7, 1, 4]. 1. After first operation row was [4, 1, 7, 6, 9, 3, 2]. 1. After second operation row was [4, 3, 9, 6, 7, 1, 2]. 1. After third operation row was [4, 3, 7, 6, 9, 1, 2]. 1. At fourth operation we reverse just middle element, so nothing ha...
1,000
[ { "input": "7\n4 3 7 6 9 1 2", "output": "2 3 9 6 7 1 4" }, { "input": "8\n6 1 4 2 5 6 9 2", "output": "2 1 6 2 5 4 9 6" }, { "input": "1\n1424", "output": "1424" }, { "input": "9\n-7 9 -4 9 -6 11 15 2 -10", "output": "-10 9 15 9 -6 11 -4 2 -7" }, { "input": "2\n2...
1,486,142,756
2,147,483,647
Python 3
OK
TESTS
34
561
22,835,200
n=int(input()) a=list(map(int,input().split())) for i in range(0,n//2,2): a[i],a[-1-i]=a[-1-i],a[i] print(*a)
Title: Timofey and cubes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Young Timofey has a birthday today! He got kit of *n* cubes as a birthday present from his parents. Every cube has a number *a**i*, which is written on it. Timofey put all the cubes in a row and went to unpack other p...
```python n=int(input()) a=list(map(int,input().split())) for i in range(0,n//2,2): a[i],a[-1-i]=a[-1-i],a[i] print(*a) ```
3
108
A
Palindromic Times
PROGRAMMING
1,000
[ "implementation", "strings" ]
A. Palindromic Times
2
256
Tattah is asleep if and only if Tattah is attending a lecture. This is a well-known formula among Tattah's colleagues. On a Wednesday afternoon, Tattah was attending Professor HH's lecture. At 12:21, right before falling asleep, he was staring at the digital watch around Saher's wrist. He noticed that the digits on th...
The first and only line of the input starts with a string with the format "HH:MM" where "HH" is from "00" to "23" and "MM" is from "00" to "59". Both "HH" and "MM" have exactly two digits.
Print the palindromic time of day that comes soonest after the time given in the input. If the input time is palindromic, output the soonest palindromic time after the input time.
[ "12:21\n", "23:59\n" ]
[ "13:31\n", "00:00\n" ]
none
500
[ { "input": "12:21", "output": "13:31" }, { "input": "23:59", "output": "00:00" }, { "input": "15:51", "output": "20:02" }, { "input": "10:44", "output": "11:11" }, { "input": "04:02", "output": "04:40" }, { "input": "02:11", "output": "02:20" }, ...
1,620,720,100
2,147,483,647
Python 3
OK
TESTS
36
154
6,963,200
s=input() a=int(s[:2]) b=int(s[3:]) cnt=0 while(a!=23 or b!=59): b=b+1 if(b==60): a=a+1 b=00 x=str(a) if(len(x)==1): x="0"+str(a) y=str(b) if(len(y)==1): y="0"+str(b) e=x+":"+y if(e==e[::-1]): print(e) cnt=1 break...
Title: Palindromic Times Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Tattah is asleep if and only if Tattah is attending a lecture. This is a well-known formula among Tattah's colleagues. On a Wednesday afternoon, Tattah was attending Professor HH's lecture. At 12:21, right before falling...
```python s=input() a=int(s[:2]) b=int(s[3:]) cnt=0 while(a!=23 or b!=59): b=b+1 if(b==60): a=a+1 b=00 x=str(a) if(len(x)==1): x="0"+str(a) y=str(b) if(len(y)==1): y="0"+str(b) e=x+":"+y if(e==e[::-1]): print(e) cnt=1 ...
3.94853
510
A
Fox And Snake
PROGRAMMING
800
[ "implementation" ]
null
null
Fox Ciel starts to learn programming. The first task is drawing a fox! However, that turns out to be too hard for a beginner, so she decides to draw a snake instead. A snake is a pattern on a *n* by *m* table. Denote *c*-th cell of *r*-th row as (*r*,<=*c*). The tail of the snake is located at (1,<=1), then it's body ...
The only line contains two integers: *n* and *m* (3<=≤<=*n*,<=*m*<=≤<=50). *n* is an odd number.
Output *n* lines. Each line should contain a string consisting of *m* characters. Do not output spaces.
[ "3 3\n", "3 4\n", "5 3\n", "9 9\n" ]
[ "###\n..#\n###\n", "####\n...#\n####\n", "###\n..#\n###\n#..\n###\n", "#########\n........#\n#########\n#........\n#########\n........#\n#########\n#........\n#########\n" ]
none
500
[ { "input": "3 3", "output": "###\n..#\n###" }, { "input": "3 4", "output": "####\n...#\n####" }, { "input": "5 3", "output": "###\n..#\n###\n#..\n###" }, { "input": "9 9", "output": "#########\n........#\n#########\n#........\n#########\n........#\n#########\n#........\n#...
1,675,358,618
2,147,483,647
Python 3
OK
TESTS
28
46
0
x = [int(i) for i in input().split()] n = x[0] m = x[1] c = 0 for i in range(n): if i%2==0: for i in range(m): print("#",end="") else : if c%2==0 : for i in range(m-1): print(".",end="") print("#",end="") else : ...
Title: Fox And Snake Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel starts to learn programming. The first task is drawing a fox! However, that turns out to be too hard for a beginner, so she decides to draw a snake instead. A snake is a pattern on a *n* by *m* table. Denote *c*...
```python x = [int(i) for i in input().split()] n = x[0] m = x[1] c = 0 for i in range(n): if i%2==0: for i in range(m): print("#",end="") else : if c%2==0 : for i in range(m-1): print(".",end="") print("#",end="") else : ...
3
339
A
Helpful Maths
PROGRAMMING
800
[ "greedy", "implementation", "sortings", "strings" ]
null
null
Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation. The teacher has written down the sum of multiple numbers. Pupils should calculate the sum. To make the calculation easier, the sum only contains numbers 1, 2 and 3. Still, that isn't enough for Xe...
The first line contains a non-empty string *s* — the sum Xenia needs to count. String *s* contains no spaces. It only contains digits and characters "+". Besides, string *s* is a correct sum of numbers 1, 2 and 3. String *s* is at most 100 characters long.
Print the new sum that Xenia can count.
[ "3+2+1\n", "1+1+3+1+3\n", "2\n" ]
[ "1+2+3\n", "1+1+1+3+3\n", "2\n" ]
none
500
[ { "input": "3+2+1", "output": "1+2+3" }, { "input": "1+1+3+1+3", "output": "1+1+1+3+3" }, { "input": "2", "output": "2" }, { "input": "2+2+1+1+3", "output": "1+1+2+2+3" }, { "input": "2+1+2+2+2+3+1+3+1+2", "output": "1+1+1+2+2+2+2+2+3+3" }, { "input": ...
1,696,252,263
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
s=input() l=[int] for i in s: if i=='+': continue else: l.append(int(i)) l.sort() for j in range(len(l)): if j==len(l)-1: print(j) else: print(j,"+",end='')
Title: Helpful Maths Time Limit: None seconds Memory Limit: None megabytes Problem Description: Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation. The teacher has written down the sum of multiple numbers. Pupils should calculate the sum. To mak...
```python s=input() l=[int] for i in s: if i=='+': continue else: l.append(int(i)) l.sort() for j in range(len(l)): if j==len(l)-1: print(j) else: print(j,"+",end='') ```
-1
920
F
SUM and REPLACE
PROGRAMMING
2,000
[ "brute force", "data structures", "dsu", "number theory" ]
null
null
Let *D*(*x*) be the number of positive divisors of a positive integer *x*. For example, *D*(2)<==<=2 (2 is divisible by 1 and 2), *D*(6)<==<=4 (6 is divisible by 1, 2, 3 and 6). You are given an array *a* of *n* integers. You have to process two types of queries: 1. REPLACE *l* *r* — for every replace *a**i* with *...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=3·105) — the number of elements in the array and the number of queries to process, respectively. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=106) — the elements of the array. Then *m* lines follow, each containin...
For each SUM query print the answer to it.
[ "7 6\n6 4 1 10 3 2 4\n2 1 7\n2 4 5\n1 3 5\n2 4 4\n1 5 7\n2 1 7\n" ]
[ "30\n13\n4\n22\n" ]
none
0
[ { "input": "7 6\n6 4 1 10 3 2 4\n2 1 7\n2 4 5\n1 3 5\n2 4 4\n1 5 7\n2 1 7", "output": "30\n13\n4\n22" }, { "input": "4 2\n1 1 1 3\n1 1 4\n2 1 4", "output": "5" }, { "input": "10 2\n1 1 1 1 1 1 1 1 1 9\n1 1 10\n2 1 10", "output": "12" }, { "input": "4 2\n1 1 3 1\n1 1 4\n2 1 4"...
1,615,568,955
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
1
2,000
23,449,600
import sys,math,itertools from collections import Counter,deque,defaultdict from bisect import bisect_left,bisect_right from heapq import heappop,heappush,heapify from copy import deepcopy mod = 10**9+7 INF = float('inf') def inp(): return int(sys.stdin.readline()) def inpl(): return list(map(int, sys.stdin.re...
Title: SUM and REPLACE Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let *D*(*x*) be the number of positive divisors of a positive integer *x*. For example, *D*(2)<==<=2 (2 is divisible by 1 and 2), *D*(6)<==<=4 (6 is divisible by 1, 2, 3 and 6). You are given an array *a* of *n* intege...
```python import sys,math,itertools from collections import Counter,deque,defaultdict from bisect import bisect_left,bisect_right from heapq import heappop,heappush,heapify from copy import deepcopy mod = 10**9+7 INF = float('inf') def inp(): return int(sys.stdin.readline()) def inpl(): return list(map(int, sy...
0
401
C
Team
PROGRAMMING
1,400
[ "constructive algorithms", "greedy", "implementation" ]
null
null
Now it's time of Olympiads. Vanya and Egor decided to make his own team to take part in a programming Olympiad. They've been best friends ever since primary school and hopefully, that can somehow help them in teamwork. For each team Olympiad, Vanya takes his play cards with numbers. He takes only the cards containing ...
The first line contains two integers: *n* (1<=≤<=*n*<=≤<=106) — the number of cards containing number 0; *m* (1<=≤<=*m*<=≤<=106) — the number of cards containing number 1.
In a single line print the required sequence of zeroes and ones without any spaces. If such sequence is impossible to obtain, print -1.
[ "1 2\n", "4 8\n", "4 10\n", "1 5\n" ]
[ "101\n", "110110110101\n", "11011011011011\n", "-1\n" ]
none
1,500
[ { "input": "1 2", "output": "101" }, { "input": "4 8", "output": "110110110101" }, { "input": "4 10", "output": "11011011011011" }, { "input": "1 5", "output": "-1" }, { "input": "3 4", "output": "1010101" }, { "input": "3 10", "output": "-1" }, ...
1,684,477,364
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
32
1,000
12,492,800
n,m = list(map(int,input().split())) # if n*2>=m: g={"zero":n,"one":m} # else: # g={"one":m,"zero":n} ans = "s" # print(g) check=True while g["zero"] or g["one"]: if g["zero"]>g["one"] and ans[-1]!="0": ans+="0" g["zero"]=g["zero"]-1 elif g["one"]>g["zero"] and ans[-1]!="1": value=min(2,g...
Title: Team Time Limit: None seconds Memory Limit: None megabytes Problem Description: Now it's time of Olympiads. Vanya and Egor decided to make his own team to take part in a programming Olympiad. They've been best friends ever since primary school and hopefully, that can somehow help them in teamwork. For each t...
```python n,m = list(map(int,input().split())) # if n*2>=m: g={"zero":n,"one":m} # else: # g={"one":m,"zero":n} ans = "s" # print(g) check=True while g["zero"] or g["one"]: if g["zero"]>g["one"] and ans[-1]!="0": ans+="0" g["zero"]=g["zero"]-1 elif g["one"]>g["zero"] and ans[-1]!="1": val...
0
169
A
Chores
PROGRAMMING
800
[ "sortings" ]
null
null
Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do *n* chores. Each chore is characterized by a single parameter — its complexity. The complexity of the *i*-th chore equals *h**i*. As Petya is older, he wants to take the chores with complexit...
The first input line contains three integers *n*,<=*a* and *b* (2<=≤<=*n*<=≤<=2000; *a*,<=*b*<=≥<=1; *a*<=+<=*b*<==<=*n*) — the total number of chores, the number of Petya's chores and the number of Vasya's chores. The next line contains a sequence of integers *h*1,<=*h*2,<=...,<=*h**n* (1<=≤<=*h**i*<=≤<=109), *h**i* ...
Print the required number of ways to choose an integer value of *x*. If there are no such ways, print 0.
[ "5 2 3\n6 2 3 100 1\n", "7 3 4\n1 1 9 1 1 1 1\n" ]
[ "3\n", "0\n" ]
In the first sample the possible values of *x* are 3, 4 or 5. In the second sample it is impossible to find such *x*, that Petya got 3 chores and Vasya got 4.
500
[ { "input": "5 2 3\n6 2 3 100 1", "output": "3" }, { "input": "7 3 4\n1 1 9 1 1 1 1", "output": "0" }, { "input": "2 1 1\n10 2", "output": "8" }, { "input": "2 1 1\n7 7", "output": "0" }, { "input": "2 1 1\n1 1000000000", "output": "999999999" }, { "inp...
1,629,854,402
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
2
139
22,323,200
n,a,b = map(int, input().split()) L = list(map(int, input().split())) L.sort() print(0 if L[a] == L[a+1] else L[a+1] - L[a])
Title: Chores Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do *n* chores. Each chore is characterized by a single parameter — its complexity. The complexity of th...
```python n,a,b = map(int, input().split()) L = list(map(int, input().split())) L.sort() print(0 if L[a] == L[a+1] else L[a+1] - L[a]) ```
-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,624,548,922
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
3
2,000
9,011,200
n = int(input()) stones = [int(i) for i in input().split()] stones_sorted = sorted(stones) for _ in range(int(input())): t, l, r = input().split() t, l, r = int(t), int(l), int(r) total = 0 if t == 1: for j in range(l - 1, r): total += stones[j] else: for j i...
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()) stones = [int(i) for i in input().split()] stones_sorted = sorted(stones) for _ in range(int(input())): t, l, r = input().split() t, l, r = int(t), int(l), int(r) total = 0 if t == 1: for j in range(l - 1, r): total += stones[j] else: ...
0
834
B
The Festive Evening
PROGRAMMING
1,100
[ "data structures", "implementation" ]
null
null
It's the end of July – the time when a festive evening is held at Jelly Castle! Guests from all over the kingdom gather here to discuss new trends in the world of confectionery. Yet some of the things discussed here are not supposed to be disclosed to the general public: the information can cause discord in the kingdom...
Two integers are given in the first string: the number of guests *n* and the number of guards *k* (1<=≤<=*n*<=≤<=106, 1<=≤<=*k*<=≤<=26). In the second string, *n* uppercase English letters *s*1*s*2... *s**n* are given, where *s**i* is the entrance used by the *i*-th guest.
Output «YES» if at least one door was unguarded during some time, and «NO» otherwise. You can output each letter in arbitrary case (upper or lower).
[ "5 1\nAABBB\n", "5 1\nABABB\n" ]
[ "NO\n", "YES\n" ]
In the first sample case, the door A is opened right before the first guest's arrival and closed when the second guest enters the castle. The door B is opened right before the arrival of the third guest, and closed after the fifth one arrives. One guard can handle both doors, as the first one is closed before the secon...
1,000
[ { "input": "5 1\nAABBB", "output": "NO" }, { "input": "5 1\nABABB", "output": "YES" }, { "input": "26 1\nABCDEFGHIJKLMNOPQRSTUVWXYZ", "output": "NO" }, { "input": "27 1\nABCDEFGHIJKLMNOPQRSTUVWXYZA", "output": "YES" }, { "input": "5 2\nABACA", "output": "NO" ...
1,557,329,370
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
1,000
3,481,600
from collections import Counter n, k = map(int, input().split()) s = input() c = Counter(s) a = [0]*26 o = 0 for i in s: if a[ord(i)-ord('A')] == 0: o += 1 if o > k: print('yes'); exit() if a[ord(i)-ord('A')] == c[i]-1: o -= 1 a[ord(i)-ord('A')] += 1 print('NO')
Title: The Festive Evening Time Limit: None seconds Memory Limit: None megabytes Problem Description: It's the end of July – the time when a festive evening is held at Jelly Castle! Guests from all over the kingdom gather here to discuss new trends in the world of confectionery. Yet some of the things discussed here...
```python from collections import Counter n, k = map(int, input().split()) s = input() c = Counter(s) a = [0]*26 o = 0 for i in s: if a[ord(i)-ord('A')] == 0: o += 1 if o > k: print('yes'); exit() if a[ord(i)-ord('A')] == c[i]-1: o -= 1 a[ord(i)-ord('A')] += 1 print('NO'...
0
271
A
Beautiful Year
PROGRAMMING
800
[ "brute force" ]
null
null
It seems like the year of 2013 came only yesterday. Do you know a curious fact? The year of 2013 is the first year after the old 1987 with only distinct digits. Now you are suggested to solve the following problem: given a year number, find the minimum year number which is strictly larger than the given one and has on...
The single line contains integer *y* (1000<=≤<=*y*<=≤<=9000) — the year number.
Print a single integer — the minimum year number that is strictly larger than *y* and all it's digits are distinct. It is guaranteed that the answer exists.
[ "1987\n", "2013\n" ]
[ "2013\n", "2014\n" ]
none
500
[ { "input": "1987", "output": "2013" }, { "input": "2013", "output": "2014" }, { "input": "1000", "output": "1023" }, { "input": "1001", "output": "1023" }, { "input": "1234", "output": "1235" }, { "input": "5555", "output": "5601" }, { "inp...
1,694,700,460
2,147,483,647
Python 3
OK
TESTS
27
92
0
x = int(input()) while True: x += 1 a_var = x // 1000 b_var = (x // 100) % 10 c_var = (x // 10) % 10 d_var = x % 10 if a_var != b_var and a_var != c_var and a_var != d_var and b_var != c_var and b_var != d_var and c_var != d_var: break print(x)
Title: Beautiful Year Time Limit: None seconds Memory Limit: None megabytes Problem Description: It seems like the year of 2013 came only yesterday. Do you know a curious fact? The year of 2013 is the first year after the old 1987 with only distinct digits. Now you are suggested to solve the following problem: give...
```python x = int(input()) while True: x += 1 a_var = x // 1000 b_var = (x // 100) % 10 c_var = (x // 10) % 10 d_var = x % 10 if a_var != b_var and a_var != c_var and a_var != d_var and b_var != c_var and b_var != d_var and c_var != d_var: break print(x) ```
3
299
A
Ksusha and Array
PROGRAMMING
1,000
[ "brute force", "number theory", "sortings" ]
null
null
Ksusha is a beginner coder. Today she starts studying arrays. She has array *a*1,<=*a*2,<=...,<=*a**n*, consisting of *n* positive integers. Her university teacher gave her a task. Find such number in the array, that all array elements are divisible by it. Help her and find the number!
The first line contains integer *n* (1<=≤<=*n*<=≤<=105), showing how many numbers the array has. The next line contains integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the array elements.
Print a single integer — the number from the array, such that all array elements are divisible by it. If such number doesn't exist, print -1. If there are multiple answers, you are allowed to print any of them.
[ "3\n2 2 4\n", "5\n2 1 3 1 6\n", "3\n2 3 5\n" ]
[ "2\n", "1\n", "-1\n" ]
none
500
[ { "input": "3\n2 2 4", "output": "2" }, { "input": "5\n2 1 3 1 6", "output": "1" }, { "input": "3\n2 3 5", "output": "-1" }, { "input": "1\n331358794", "output": "331358794" }, { "input": "5\n506904227 214303304 136194869 838256937 183952885", "output": "-1" ...
1,568,986,083
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
1
280
0
n = int(input()) a = list(map(int, input().split())) f = False for i in range(n): if a[0] % min(a) != 0: f = True break if min(a) == 1: print(1) print(min(a) if f is False else -1)
Title: Ksusha and Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ksusha is a beginner coder. Today she starts studying arrays. She has array *a*1,<=*a*2,<=...,<=*a**n*, consisting of *n* positive integers. Her university teacher gave her a task. Find such number in the array, that ...
```python n = int(input()) a = list(map(int, input().split())) f = False for i in range(n): if a[0] % min(a) != 0: f = True break if min(a) == 1: print(1) print(min(a) if f is False else -1) ```
0
835
A
Key races
PROGRAMMING
800
[ "math" ]
null
null
Two boys decided to compete in text typing on the site "Key races". During the competition, they have to type a text consisting of *s* characters. The first participant types one character in *v*1 milliseconds and has ping *t*1 milliseconds. The second participant types one character in *v*2 milliseconds and has ping *...
The first line contains five integers *s*, *v*1, *v*2, *t*1, *t*2 (1<=≤<=*s*,<=*v*1,<=*v*2,<=*t*1,<=*t*2<=≤<=1000) — the number of characters in the text, the time of typing one character for the first participant, the time of typing one character for the the second participant, the ping of the first participant and th...
If the first participant wins, print "First". If the second participant wins, print "Second". In case of a draw print "Friendship".
[ "5 1 2 1 2\n", "3 3 1 1 1\n", "4 5 3 1 5\n" ]
[ "First\n", "Second\n", "Friendship\n" ]
In the first example, information on the success of the first participant comes in 7 milliseconds, of the second participant — in 14 milliseconds. So, the first wins. In the second example, information on the success of the first participant comes in 11 milliseconds, of the second participant — in 5 milliseconds. So, ...
500
[ { "input": "5 1 2 1 2", "output": "First" }, { "input": "3 3 1 1 1", "output": "Second" }, { "input": "4 5 3 1 5", "output": "Friendship" }, { "input": "1000 1000 1000 1000 1000", "output": "Friendship" }, { "input": "1 1 1 1 1", "output": "Friendship" }, ...
1,597,346,300
2,147,483,647
Python 3
OK
TESTS
32
108
0
a, b, c, d, e = map(int,input().split()) wynik_pierwsego = d + (b * a) + d wynik_drugiego = e + (c * a) + e if wynik_pierwsego < wynik_drugiego: print("First") elif wynik_pierwsego > wynik_drugiego: print("Second") elif wynik_drugiego == wynik_pierwsego: print("Friendship")
Title: Key races Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two boys decided to compete in text typing on the site "Key races". During the competition, they have to type a text consisting of *s* characters. The first participant types one character in *v*1 milliseconds and has ping *t...
```python a, b, c, d, e = map(int,input().split()) wynik_pierwsego = d + (b * a) + d wynik_drugiego = e + (c * a) + e if wynik_pierwsego < wynik_drugiego: print("First") elif wynik_pierwsego > wynik_drugiego: print("Second") elif wynik_drugiego == wynik_pierwsego: print("Friendship") ```
3
624
A
Save Luke
PROGRAMMING
800
[ "math" ]
null
null
Luke Skywalker got locked up in a rubbish shredder between two presses. R2D2 is already working on his rescue, but Luke needs to stay alive as long as possible. For simplicity we will assume that everything happens on a straight line, the presses are initially at coordinates 0 and *L*, and they move towards each other ...
The first line of the input contains four integers *d*, *L*, *v*1, *v*2 (1<=≤<=*d*,<=*L*,<=*v*1,<=*v*2<=≤<=10<=000,<=*d*<=&lt;<=*L*) — Luke's width, the initial position of the second press and the speed of the first and second presses, respectively.
Print a single real value — the maximum period of time Luke can stay alive for. Your answer will be considered correct if its absolute or relative error does not exceed 10<=-<=6. Namely: let's assume that your answer is *a*, and the answer of the jury is *b*. The checker program will consider your answer correct, if ...
[ "2 6 2 2\n", "1 9 1 2\n" ]
[ "1.00000000000000000000\n", "2.66666666666666650000\n" ]
In the first sample Luke should stay exactly in the middle of the segment, that is at coordinates [2;4], as the presses move with the same speed. In the second sample he needs to occupy the position <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/71395c777960eaded59a9fdc428a9625f152605b.pn...
500
[ { "input": "2 6 2 2", "output": "1.00000000000000000000" }, { "input": "1 9 1 2", "output": "2.66666666666666650000" }, { "input": "1 10000 1 1", "output": "4999.50000000000000000000" }, { "input": "9999 10000 10000 10000", "output": "0.00005000000000000000" }, { ...
1,485,801,978
378
Python 3
OK
TESTS
30
62
4,608,000
d,l,v1,v2 = map(int, input().split()) ans = (l - d)/ (v1 + v2) print("{0:.6f}".format(ans))
Title: Save Luke Time Limit: None seconds Memory Limit: None megabytes Problem Description: Luke Skywalker got locked up in a rubbish shredder between two presses. R2D2 is already working on his rescue, but Luke needs to stay alive as long as possible. For simplicity we will assume that everything happens on a strai...
```python d,l,v1,v2 = map(int, input().split()) ans = (l - d)/ (v1 + v2) print("{0:.6f}".format(ans)) ```
3
235
A
LCM Challenge
PROGRAMMING
1,600
[ "number theory" ]
null
null
Some days ago, I learned the concept of LCM (least common multiple). I've played with it for several times and I want to make a big number with it. But I also don't want to use many numbers, so I'll choose three positive integers (they don't have to be distinct) which are not greater than *n*. Can you help me to find ...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=106) — the *n* mentioned in the statement.
Print a single integer — the maximum possible LCM of three not necessarily distinct positive integers that are not greater than *n*.
[ "9\n", "7\n" ]
[ "504\n", "210\n" ]
The least common multiple of some positive integers is the least positive integer which is multiple for each of them. The result may become very large, 32-bit integer won't be enough. So using 64-bit integers is recommended. For the last example, we can chose numbers 7, 6, 5 and the LCM of them is 7·6·5 = 210. It is ...
500
[ { "input": "9", "output": "504" }, { "input": "7", "output": "210" }, { "input": "1", "output": "1" }, { "input": "5", "output": "60" }, { "input": "6", "output": "60" }, { "input": "33", "output": "32736" }, { "input": "21", "output": ...
1,555,257,229
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
4
310
409,600
'''input 3 ''' from sys import stdin import math from collections import defaultdict, deque # main starts n = int(stdin.readline().strip()) if n >= 3: if n % 2 == 0: mx = -float('inf') for i in range(n, 2, -1): mx = max(mx, i * (i - 1) * (i -2)) print(mx) else: print(n * (n - 1) * (n - 2)) elif n == 2: ...
Title: LCM Challenge Time Limit: None seconds Memory Limit: None megabytes Problem Description: Some days ago, I learned the concept of LCM (least common multiple). I've played with it for several times and I want to make a big number with it. But I also don't want to use many numbers, so I'll choose three positive...
```python '''input 3 ''' from sys import stdin import math from collections import defaultdict, deque # main starts n = int(stdin.readline().strip()) if n >= 3: if n % 2 == 0: mx = -float('inf') for i in range(n, 2, -1): mx = max(mx, i * (i - 1) * (i -2)) print(mx) else: print(n * (n - 1) * (n - 2)) elif...
0
339
A
Helpful Maths
PROGRAMMING
800
[ "greedy", "implementation", "sortings", "strings" ]
null
null
Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation. The teacher has written down the sum of multiple numbers. Pupils should calculate the sum. To make the calculation easier, the sum only contains numbers 1, 2 and 3. Still, that isn't enough for Xe...
The first line contains a non-empty string *s* — the sum Xenia needs to count. String *s* contains no spaces. It only contains digits and characters "+". Besides, string *s* is a correct sum of numbers 1, 2 and 3. String *s* is at most 100 characters long.
Print the new sum that Xenia can count.
[ "3+2+1\n", "1+1+3+1+3\n", "2\n" ]
[ "1+2+3\n", "1+1+1+3+3\n", "2\n" ]
none
500
[ { "input": "3+2+1", "output": "1+2+3" }, { "input": "1+1+3+1+3", "output": "1+1+1+3+3" }, { "input": "2", "output": "2" }, { "input": "2+2+1+1+3", "output": "1+1+2+2+3" }, { "input": "2+1+2+2+2+3+1+3+1+2", "output": "1+1+1+2+2+2+2+2+3+3" }, { "input": ...
1,695,133,493
2,147,483,647
PyPy 3-64
OK
TESTS
21
186
0
def addOrder(): x = str(input()) firstL = x.replace("+","") secondL = list(firstL) secondL.sort() thirdL = "+".join(secondL) return thirdL print(addOrder())
Title: Helpful Maths Time Limit: None seconds Memory Limit: None megabytes Problem Description: Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation. The teacher has written down the sum of multiple numbers. Pupils should calculate the sum. To mak...
```python def addOrder(): x = str(input()) firstL = x.replace("+","") secondL = list(firstL) secondL.sort() thirdL = "+".join(secondL) return thirdL print(addOrder()) ```
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,571,077,963
2,147,483,647
Python 3
OK
TESTS
45
374
7,475,200
n = int(input()) s1 = input() s = s1.split() e = 0 m = pow(10,9)+1 for i in range(0, n): if int(s[i]) <= m: m = int(s[i]) t = i+1 for i in range(0, n): if int(s[i]) == m and i != t-1: e = 1 break if e == 0: print(t) else: print('Still Rozdil')
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 n = int(input()) s1 = input() s = s1.split() e = 0 m = pow(10,9)+1 for i in range(0, n): if int(s[i]) <= m: m = int(s[i]) t = i+1 for i in range(0, n): if int(s[i]) == m and i != t-1: e = 1 break if e == 0: print(t) else: print('Still Rozdil') ...
3
0
none
none
none
0
[ "none" ]
null
null
Two participants are each given a pair of distinct numbers from 1 to 9 such that there's exactly one number that is present in both pairs. They want to figure out the number that matches by using a communication channel you have access to without revealing it to you. Both participants communicated to each other a set ...
The first line contains two integers $n$ and $m$ ($1 \le n, m \le 12$) — the number of pairs the first participant communicated to the second and vice versa. The second line contains $n$ pairs of integers, each between $1$ and $9$, — pairs of numbers communicated from first participant to the second. The third line c...
If you can deduce the shared number with certainty, print that number. If you can with certainty deduce that both participants know the shared number, but you do not know it, print $0$. Otherwise print $-1$.
[ "2 2\n1 2 3 4\n1 5 3 4\n", "2 2\n1 2 3 4\n1 5 6 4\n", "2 3\n1 2 4 5\n1 2 1 3 2 3\n" ]
[ "1\n", "0\n", "-1\n" ]
In the first example the first participant communicated pairs $(1,2)$ and $(3,4)$, and the second communicated $(1,5)$, $(3,4)$. Since we know that the actual pairs they received share exactly one number, it can't be that they both have $(3,4)$. Thus, the first participant has $(1,2)$ and the second has $(1,5)$, and at...
0
[ { "input": "2 2\n1 2 3 4\n1 5 3 4", "output": "1" }, { "input": "2 2\n1 2 3 4\n1 5 6 4", "output": "0" }, { "input": "2 3\n1 2 4 5\n1 2 1 3 2 3", "output": "-1" }, { "input": "2 1\n1 2 1 3\n1 2", "output": "1" }, { "input": "4 4\n1 2 3 4 5 6 7 8\n2 3 4 5 6 7 8 1",...
1,529,223,722
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
12
93
0
def oth_el(a, i): return a[i+1-i % 2*2] def oth_el2(a1, x1): return oth_el(a1, a1.index(x1)) n, m = map(int, input().split()) numbers1 = list(map(int, input().split())) numbers2 = list(map(int, input().split())) def is_correct(x2): return not (numbers1.count(x2) == numbers2.count(x2) == 1 and oth...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two participants are each given a pair of distinct numbers from 1 to 9 such that there's exactly one number that is present in both pairs. They want to figure out the number that matches by using a communication channel you have a...
```python def oth_el(a, i): return a[i+1-i % 2*2] def oth_el2(a1, x1): return oth_el(a1, a1.index(x1)) n, m = map(int, input().split()) numbers1 = list(map(int, input().split())) numbers2 = list(map(int, input().split())) def is_correct(x2): return not (numbers1.count(x2) == numbers2.count(x2) ==...
-1
886
B
Vlad and Cafes
PROGRAMMING
1,000
[]
null
null
Vlad likes to eat in cafes very much. During his life, he has visited cafes *n* times. Unfortunately, Vlad started to feel that his last visits are not any different from each other. To fix that Vlad had a small research. First of all, Vlad assigned individual indices to all cafes. Then, he wrote down indices of cafes...
In first line there is one integer *n* (1<=≤<=*n*<=≤<=2·105) — number of cafes indices written by Vlad. In second line, *n* numbers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=2·105) are written — indices of cafes in order of being visited by Vlad. Vlad could visit some cafes more than once. Note that in numeration, ...
Print one integer — index of the cafe that Vlad hasn't visited for as long as possible.
[ "5\n1 3 2 1 2\n", "6\n2 1 2 2 4 1\n" ]
[ "3\n", "2\n" ]
In first test, there are three cafes, and the last visits to cafes with indices 1 and 2 were after the last visit to cafe with index 3; so this cafe is the answer. In second test case, there are also three cafes, but with indices 1, 2 and 4. Cafes with indices 1 and 4 were visited after the last visit of cafe with in...
1,000
[ { "input": "5\n1 3 2 1 2", "output": "3" }, { "input": "6\n2 1 2 2 4 1", "output": "2" }, { "input": "1\n0", "output": "0" }, { "input": "1\n200000", "output": "200000" }, { "input": "2\n2018 2017", "output": "2018" }, { "input": "5\n100 1000 1000 1000...
1,542,256,432
2,147,483,647
Python 3
OK
TESTS
33
343
16,896,000
from collections import deque used = [0]*1000000 a = deque() n = int(input()) for i in input().split(' '): a.append(int(i)) used[int(i)] += 1 i = a.popleft() while (used[i] != 1): used[i] -= 1 i = a.popleft() print(i)
Title: Vlad and Cafes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vlad likes to eat in cafes very much. During his life, he has visited cafes *n* times. Unfortunately, Vlad started to feel that his last visits are not any different from each other. To fix that Vlad had a small research...
```python from collections import deque used = [0]*1000000 a = deque() n = int(input()) for i in input().split(' '): a.append(int(i)) used[int(i)] += 1 i = a.popleft() while (used[i] != 1): used[i] -= 1 i = a.popleft() print(i) ```
3
707
A
Brain's Photos
PROGRAMMING
800
[ "implementation" ]
null
null
Small, but very brave, mouse Brain was not accepted to summer school of young villains. He was upset and decided to postpone his plans of taking over the world, but to become a photographer instead. As you may know, the coolest photos are on the film (because you can specify the hashtag #film for such). Brain took a ...
The first line of the input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of photo pixel matrix rows and columns respectively. Then *n* lines describing matrix rows follow. Each of them contains *m* space-separated characters describing colors of pixels in a row. Each character in the line i...
Print the "#Black&amp;White" (without quotes), if the photo is black-and-white and "#Color" (without quotes), if it is colored, in the only line.
[ "2 2\nC M\nY Y\n", "3 2\nW W\nW W\nB B\n", "1 1\nW\n" ]
[ "#Color", "#Black&amp;White", "#Black&amp;White" ]
none
500
[ { "input": "2 2\nC M\nY Y", "output": "#Color" }, { "input": "3 2\nW W\nW W\nB B", "output": "#Black&White" }, { "input": "1 1\nW", "output": "#Black&White" }, { "input": "2 3\nW W W\nB G Y", "output": "#Color" }, { "input": "1 1\nW", "output": "#Black&White" ...
1,653,929,279
2,147,483,647
PyPy 3-64
OK
TESTS
50
62
2,355,200
n,m = [int(x) for x in input().split()] result = '#Black&White' for _ in range(n): s = input().split() for i in range(m): if s[i] in 'CMY': result = '#Color' print(result)
Title: Brain's Photos Time Limit: None seconds Memory Limit: None megabytes Problem Description: Small, but very brave, mouse Brain was not accepted to summer school of young villains. He was upset and decided to postpone his plans of taking over the world, but to become a photographer instead. As you may know, the...
```python n,m = [int(x) for x in input().split()] result = '#Black&White' for _ in range(n): s = input().split() for i in range(m): if s[i] in 'CMY': result = '#Color' print(result) ```
3
975
C
Valhalla Siege
PROGRAMMING
1,400
[ "binary search" ]
null
null
Ivar the Boneless is a great leader. He is trying to capture Kattegat from Lagertha. The war has begun and wave after wave Ivar's warriors are falling in battle. Ivar has $n$ warriors, he places them on a straight line in front of the main gate, in a way that the $i$-th warrior stands right after $(i-1)$-th warrior. T...
The first line contains two integers $n$ and $q$ ($1 \le n, q \leq 200\,000$) — the number of warriors and the number of minutes in the battle. The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ($1 \leq a_i \leq 10^9$) that represent the warriors' strengths. The third line contains $q$ integers $k_1, k_2,...
Output $q$ lines, the $i$-th of them is the number of standing warriors after the $i$-th minute.
[ "5 5\n1 2 1 2 1\n3 10 1 1 1\n", "4 4\n1 2 3 4\n9 1 10 6\n" ]
[ "3\n5\n4\n4\n3\n", "1\n4\n4\n1\n" ]
In the first example: - after the 1-st minute, the 1-st and 2-nd warriors die. - after the 2-nd minute all warriors die (and all arrows left over are wasted), then they will be revived thus answer is 5 — all warriors are alive. - after the 3-rd minute, the 1-st warrior dies. - after the 4-th minute, the 2-nd warr...
1,500
[ { "input": "5 5\n1 2 1 2 1\n3 10 1 1 1", "output": "3\n5\n4\n4\n3" }, { "input": "4 4\n1 2 3 4\n9 1 10 6", "output": "1\n4\n4\n1" }, { "input": "10 3\n1 1 1 1 1 1 1 1 1 1\n10 10 5", "output": "10\n10\n5" }, { "input": "1 1\n56563128\n897699770", "output": "1" }, { ...
1,615,771,215
2,147,483,647
PyPy 3
OK
TESTS
35
1,044
40,140,800
import bisect n,q = map(int,input().split()) a = list(map(int,input().split())) b = list(map(int,input().split())) for i in range(1,n): a[i]+=a[i-1] surplus = 0 for i in range(q): pos = bisect.bisect_right(a,b[i]+surplus) if pos>=n: pos = 0 surplus = 0 else: surplus+...
Title: Valhalla Siege Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ivar the Boneless is a great leader. He is trying to capture Kattegat from Lagertha. The war has begun and wave after wave Ivar's warriors are falling in battle. Ivar has $n$ warriors, he places them on a straight line ...
```python import bisect n,q = map(int,input().split()) a = list(map(int,input().split())) b = list(map(int,input().split())) for i in range(1,n): a[i]+=a[i-1] surplus = 0 for i in range(q): pos = bisect.bisect_right(a,b[i]+surplus) if pos>=n: pos = 0 surplus = 0 else: ...
3
362
B
Petya and Staircases
PROGRAMMING
1,100
[ "implementation", "sortings" ]
null
null
Little boy Petya loves stairs very much. But he is bored from simple going up and down them — he loves jumping over several stairs at a time. As he stands on some stair, he can either jump to the next one or jump over one or two stairs at a time. But some stairs are too dirty and Petya doesn't want to step on them. No...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=109, 0<=≤<=*m*<=≤<=3000) — the number of stairs in the staircase and the number of dirty stairs, correspondingly. The second line contains *m* different space-separated integers *d*1,<=*d*2,<=...,<=*d**m* (1<=≤<=*d**i*<=≤<=*n*) — the numbers of the dirty s...
Print "YES" if Petya can reach stair number *n*, stepping only on the clean stairs. Otherwise print "NO".
[ "10 5\n2 4 8 3 6\n", "10 5\n2 4 5 7 9\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "10 5\n2 4 8 3 6", "output": "NO" }, { "input": "10 5\n2 4 5 7 9", "output": "YES" }, { "input": "10 9\n2 3 4 5 6 7 8 9 10", "output": "NO" }, { "input": "5 2\n4 5", "output": "NO" }, { "input": "123 13\n36 73 111 2 92 5 47 55 48 113 7 78 37", "outp...
1,633,580,542
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
7
46
6,963,200
#بسم الله الرحمن الرحيم n,m = [int(i) for i in input().split()] dirty = [int(i) for i in input().split()] if 1 in dirty or n in dirty: print("NO") else: dirty=sorted(dirty) for i in range(0,m-2): if dirty[i+2]-dirty[i]==2: print('NO') break if i ==m-3...
Title: Petya and Staircases Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little boy Petya loves stairs very much. But he is bored from simple going up and down them — he loves jumping over several stairs at a time. As he stands on some stair, he can either jump to the next one or jump o...
```python #بسم الله الرحمن الرحيم n,m = [int(i) for i in input().split()] dirty = [int(i) for i in input().split()] if 1 in dirty or n in dirty: print("NO") else: dirty=sorted(dirty) for i in range(0,m-2): if dirty[i+2]-dirty[i]==2: print('NO') break ...
-1
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,654,087,964
2,147,483,647
Python 3
OK
TESTS
20
46
0
a,b,c=map(int,input().split()) if b%c==0: s1=b//c else: s1=b//c+1 if a%c==0: s2=a//c else: s2=a//c+1 print(s1*s2)
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 a,b,c=map(int,input().split()) if b%c==0: s1=b//c else: s1=b//c+1 if a%c==0: s2=a//c else: s2=a//c+1 print(s1*s2) ```
3.977
0
none
none
none
0
[ "none" ]
null
null
Famous Brazil city Rio de Janeiro holds a tennis tournament and Ostap Bender doesn't want to miss this event. There will be *n* players participating, and the tournament will follow knockout rules from the very first game. That means, that if someone loses a game he leaves the tournament immediately. Organizers are st...
The only line of the input contains a single integer *n* (2<=≤<=*n*<=≤<=1018) — the number of players to participate in the tournament.
Print the maximum number of games in which the winner of the tournament can take part.
[ "2\n", "3\n", "4\n", "10\n" ]
[ "1\n", "2\n", "2\n", "4\n" ]
In all samples we consider that player number 1 is the winner. In the first sample, there would be only one game so the answer is 1. In the second sample, player 1 can consequently beat players 2 and 3. In the third sample, player 1 can't play with each other player as after he plays with players 2 and 3 he can't p...
0
[ { "input": "2", "output": "1" }, { "input": "3", "output": "2" }, { "input": "4", "output": "2" }, { "input": "10", "output": "4" }, { "input": "1000", "output": "14" }, { "input": "2500", "output": "15" }, { "input": "690000", "output"...
1,480,266,335
1,835
Python 3
WRONG_ANSWER
PRETESTS
4
61
4,608,000
def solve(n): a, b = 0, n elim = 0 moves = 0 while (a + b) > 1: #print(a, b) a, b = (b - a) % 2, (b - a) // 2 + a moves += 1 #print(a, b) print(moves) def main(): n = int(input()) solve(n) main()
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Famous Brazil city Rio de Janeiro holds a tennis tournament and Ostap Bender doesn't want to miss this event. There will be *n* players participating, and the tournament will follow knockout rules from the very first game. That me...
```python def solve(n): a, b = 0, n elim = 0 moves = 0 while (a + b) > 1: #print(a, b) a, b = (b - a) % 2, (b - a) // 2 + a moves += 1 #print(a, b) print(moves) def main(): n = int(input()) solve(n) main() ```
0
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,655,868,879
2,147,483,647
Python 3
OK
TESTS
20
122
0
n_soldiers = int(input()) soldier_heights = input() soldier_heights = soldier_heights.split(" ") soldier_heights = list(map(int, soldier_heights)) _min = 1001 first = None second = None for soldier in range(n_soldiers + 1): equation = abs( soldier_heights[soldier % n_soldiers] - sold...
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 n_soldiers = int(input()) soldier_heights = input() soldier_heights = soldier_heights.split(" ") soldier_heights = list(map(int, soldier_heights)) _min = 1001 first = None second = None for soldier in range(n_soldiers + 1): equation = abs( soldier_heights[soldier % n_soldiers] ...
3.9695
381
A
Sereja and Dima
PROGRAMMING
800
[ "greedy", "implementation", "two pointers" ]
null
null
Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. During his turn a player can take one card: either the leftmost card in a row, or the rightmost one. Th...
The first line contains integer *n* (1<=≤<=*n*<=≤<=1000) — the number of cards on the table. The second line contains space-separated numbers on the cards from left to right. The numbers on the cards are distinct integers from 1 to 1000.
On a single line, print two integers. The first number is the number of Sereja's points at the end of the game, the second number is the number of Dima's points at the end of the game.
[ "4\n4 1 2 10\n", "7\n1 2 3 4 5 6 7\n" ]
[ "12 5\n", "16 12\n" ]
In the first sample Sereja will take cards with numbers 10 and 2, so Sereja's sum is 12. Dima will take cards with numbers 4 and 1, so Dima's sum is 5.
500
[ { "input": "4\n4 1 2 10", "output": "12 5" }, { "input": "7\n1 2 3 4 5 6 7", "output": "16 12" }, { "input": "42\n15 29 37 22 16 5 26 31 6 32 19 3 45 36 33 14 25 20 48 7 42 11 24 28 9 18 8 21 47 17 38 40 44 4 35 1 43 39 41 27 12 13", "output": "613 418" }, { "input": "43\n32 ...
1,689,374,752
2,147,483,647
PyPy 3-64
OK
TESTS
34
62
0
# import sys # sys.stdin = open('./input.txt', 'r') # sys.stdout = open('./output.txt', 'w') n = int(input()) l = list(map(int, input().split())) sereja = 0 dima = 0 n = n // 2 if n % 2 == 0 else n // 2 + 1 for _ in range(n): if len(l): if l[0] > l[-1]: sereja += l[0] ...
Title: Sereja and Dima Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. Du...
```python # import sys # sys.stdin = open('./input.txt', 'r') # sys.stdout = open('./output.txt', 'w') n = int(input()) l = list(map(int, input().split())) sereja = 0 dima = 0 n = n // 2 if n % 2 == 0 else n // 2 + 1 for _ in range(n): if len(l): if l[0] > l[-1]: sereja += l[0] ...
3