contestId
int64
0
1.01k
index
stringclasses
40 values
name
stringlengths
2
54
type
stringclasses
2 values
rating
int64
0
3.4k
tags
listlengths
0
7
title
stringclasses
393 values
time-limit
stringclasses
7 values
memory-limit
stringclasses
6 values
problem-description
stringlengths
0
2.97k
input-specification
stringlengths
4
1.87k
output-specification
stringlengths
4
1.12k
demo-input
listlengths
0
7
demo-output
listlengths
0
7
note
stringlengths
0
5.24k
points
float64
0
3.5k
test_cases
listlengths
0
402
creationTimeSeconds
int64
1.37B
1.7B
relativeTimeSeconds
int64
8
2.15B
programmingLanguage
stringclasses
3 values
verdict
stringclasses
1 value
testset
stringclasses
9 values
passedTestCount
int64
1
402
timeConsumedMillis
int64
15
8.06k
memoryConsumedBytes
int64
0
514M
code
stringlengths
11
61.4k
prompt
stringlengths
297
7.35k
response
stringlengths
25
61.4k
score
float64
2.82
3.99
770
A
New Password
PROGRAMMING
800
[ "*special", "implementation" ]
null
null
Innokentiy decides to change the password in the social net "Contact!", but he is too lazy to invent a new password by himself. That is why he needs your help. Innokentiy decides that new password should satisfy the following conditions: - the length of the password must be equal to *n*, - the password should cons...
The first line contains two positive integers *n* and *k* (2<=≀<=*n*<=≀<=100, 2<=≀<=*k*<=≀<=*min*(*n*,<=26)) β€” the length of the password and the number of distinct symbols in it. Pay attention that a desired new password always exists.
Print any password which satisfies all conditions given by Innokentiy.
[ "4 3\n", "6 6\n", "5 2\n" ]
[ "java\n", "python\n", "phphp\n" ]
In the first test there is one of the appropriate new passwords β€” java, because its length is equal to 4 and 3 distinct lowercase letters a, j and v are used in it. In the second test there is one of the appropriate new passwords β€” python, because its length is equal to 6 and it consists of 6 distinct lowercase letter...
500
[ { "input": "4 3", "output": "abca" }, { "input": "6 6", "output": "abcdef" }, { "input": "5 2", "output": "ababa" }, { "input": "3 2", "output": "aba" }, { "input": "10 2", "output": "ababababab" }, { "input": "26 13", "output": "abcdefghijklmabcde...
1,591,415,006
2,147,483,647
PyPy 3
OK
TESTS
47
155
0
n,k=map(int, input().split()) #n=int(input()) #l=list(map(int, input().split())) for i in range(n): print(chr(97+i%k),end='')
Title: New Password Time Limit: None seconds Memory Limit: None megabytes Problem Description: Innokentiy decides to change the password in the social net "Contact!", but he is too lazy to invent a new password by himself. That is why he needs your help. Innokentiy decides that new password should satisfy the foll...
```python n,k=map(int, input().split()) #n=int(input()) #l=list(map(int, input().split())) for i in range(n): print(chr(97+i%k),end='') ```
3
559
B
Equivalent Strings
PROGRAMMING
1,700
[ "divide and conquer", "hashing", "sortings", "strings" ]
null
null
Today on a lecture about strings Gerald learned a new definition of string equivalency. Two strings *a* and *b* of equal length are called equivalent in one of the two cases: 1. They are equal. 1. If we split string *a* into two halves of the same size *a*1 and *a*2, and string *b* into two halves of the same size ...
The first two lines of the input contain two strings given by the teacher. Each of them has the length from 1 to 200<=000 and consists of lowercase English letters. The strings have the same length.
Print "YES" (without the quotes), if these two strings are equivalent, and "NO" (without the quotes) otherwise.
[ "aaba\nabaa\n", "aabb\nabab\n" ]
[ "YES\n", "NO\n" ]
In the first sample you should split the first string into strings "aa" and "ba", the second one β€” into strings "ab" and "aa". "aa" is equivalent to "aa"; "ab" is equivalent to "ba" as "ab" = "a" + "b", "ba" = "b" + "a". In the second sample the first string can be splitted into strings "aa" and "bb", that are equival...
1,000
[ { "input": "aaba\nabaa", "output": "YES" }, { "input": "aabb\nabab", "output": "NO" }, { "input": "a\na", "output": "YES" }, { "input": "a\nb", "output": "NO" }, { "input": "ab\nab", "output": "YES" }, { "input": "ab\nba", "output": "YES" }, { ...
1,573,261,176
2,147,483,647
Python 3
OK
TESTS
104
405
1,843,200
# Equivalent Strings # Today on a lecture about strings Gerald learned a new definition of string equivalency. # Two strings a and b of equal length are called equivalent in one of the two cases: # 1. They are equal. # 2. If we split string a into two halves of the same size a1 and a2, and string b into two halves of...
Title: Equivalent Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today on a lecture about strings Gerald learned a new definition of string equivalency. Two strings *a* and *b* of equal length are called equivalent in one of the two cases: 1. They are equal. 1. If we split str...
```python # Equivalent Strings # Today on a lecture about strings Gerald learned a new definition of string equivalency. # Two strings a and b of equal length are called equivalent in one of the two cases: # 1. They are equal. # 2. If we split string a into two halves of the same size a1 and a2, and string b into two...
3
605
A
Sorting Railway Cars
PROGRAMMING
1,600
[ "constructive algorithms", "greedy" ]
null
null
An infinitely long railway has a train consisting of *n* cars, numbered from 1 to *n* (the numbers of all the cars are distinct) and positioned in arbitrary order. David Blaine wants to sort the railway cars in the order of increasing numbers. In one move he can make one of the cars disappear from its place and telepor...
The first line of the input contains integer *n* (1<=≀<=*n*<=≀<=100<=000)Β β€” the number of cars in the train. The second line contains *n* integers *p**i* (1<=≀<=*p**i*<=≀<=*n*, *p**i*<=β‰ <=*p**j* if *i*<=β‰ <=*j*)Β β€” the sequence of the numbers of the cars in the train.
Print a single integerΒ β€” the minimum number of actions needed to sort the railway cars.
[ "5\n4 1 2 5 3\n", "4\n4 1 3 2\n" ]
[ "2\n", "2\n" ]
In the first sample you need first to teleport the 4-th car, and then the 5-th car to the end of the train.
500
[ { "input": "5\n4 1 2 5 3", "output": "2" }, { "input": "4\n4 1 3 2", "output": "2" }, { "input": "1\n1", "output": "0" }, { "input": "2\n1 2", "output": "0" }, { "input": "2\n2 1", "output": "1" }, { "input": "6\n5 3 6 1 4 2", "output": "4" }, ...
1,642,411,109
2,147,483,647
PyPy 3-64
OK
TESTS
66
421
17,510,400
def f(a): a=list(zip(a,range(len(a)))) a.sort() mx=1 cmx=1 for i in range(1,len(a)): if a[i-1][1]<a[i][1]: cmx+=1 mx=max(mx,cmx) else: cmx=1 return len(a)-mx n=input() a=[*map(int,input().strip().split())] print(f(a)) ...
Title: Sorting Railway Cars Time Limit: None seconds Memory Limit: None megabytes Problem Description: An infinitely long railway has a train consisting of *n* cars, numbered from 1 to *n* (the numbers of all the cars are distinct) and positioned in arbitrary order. David Blaine wants to sort the railway cars in the...
```python def f(a): a=list(zip(a,range(len(a)))) a.sort() mx=1 cmx=1 for i in range(1,len(a)): if a[i-1][1]<a[i][1]: cmx+=1 mx=max(mx,cmx) else: cmx=1 return len(a)-mx n=input() a=[*map(int,input().strip().split())] print(f(a)) ...
3
0
none
none
none
0
[ "none" ]
null
null
Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to play it. Given a sequence *a* consisting of *n* integers. The player can make several steps. In a single step he can choose an element of the sequence (let's denote it *a*...
The first line contains integer *n* (1<=≀<=*n*<=≀<=105) that shows how many numbers are in Alex's sequence. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≀<=*a**i*<=≀<=105).
Print a single integer β€” the maximum number of points that Alex can earn.
[ "2\n1 2\n", "3\n1 2 3\n", "9\n1 2 1 3 2 2 2 2 3\n" ]
[ "2\n", "4\n", "10\n" ]
Consider the third test example. At first step we need to choose any element equal to 2. After that step our sequence looks like this [2, 2, 2, 2]. Then we do 4 steps, on each step we choose any element equals to 2. In total we earn 10 points.
0
[ { "input": "2\n1 2", "output": "2" }, { "input": "3\n1 2 3", "output": "4" }, { "input": "9\n1 2 1 3 2 2 2 2 3", "output": "10" }, { "input": "5\n3 3 4 5 4", "output": "11" }, { "input": "5\n5 3 5 3 4", "output": "16" }, { "input": "5\n4 2 3 2 5", ...
1,681,763,692
2,147,483,647
PyPy 3-64
OK
TESTS
47
171
15,052,800
from collections import Counter n = int(input()) f = Counter(map(int, input().split())) mx = max(f)+1 dp = [0]*mx for i in range(1, mx): dp[i] = max(dp[i-1], dp[i-2] + f[i]*i) print(dp[-1])
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to play it. Given a sequence *a* consisting of *n* integers. The player can make sev...
```python from collections import Counter n = int(input()) f = Counter(map(int, input().split())) mx = max(f)+1 dp = [0]*mx for i in range(1, mx): dp[i] = max(dp[i-1], dp[i-2] + f[i]*i) print(dp[-1]) ```
3
432
A
Choosing Teams
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. According to the ACM ICPC rules, each person can participate in the world championship at most 5 times. Th...
The first line contains two integers, *n* and *k* (1<=≀<=*n*<=≀<=2000;Β 1<=≀<=*k*<=≀<=5). The next line contains *n* integers: *y*1,<=*y*2,<=...,<=*y**n* (0<=≀<=*y**i*<=≀<=5), where *y**i* shows the number of times the *i*-th person participated in the ACM ICPC world championship.
Print a single number β€” the answer to the problem.
[ "5 2\n0 4 5 1 0\n", "6 4\n0 1 2 3 4 5\n", "6 5\n0 0 0 0 0 0\n" ]
[ "1\n", "0\n", "2\n" ]
In the first sample only one team could be made: the first, the fourth and the fifth participants. In the second sample no teams could be created. In the third sample two teams could be created. Any partition into two teams fits.
500
[ { "input": "5 2\n0 4 5 1 0", "output": "1" }, { "input": "6 4\n0 1 2 3 4 5", "output": "0" }, { "input": "6 5\n0 0 0 0 0 0", "output": "2" }, { "input": "3 4\n0 1 0", "output": "1" }, { "input": "3 4\n0 2 0", "output": "0" }, { "input": "6 5\n0 0 0 0 0...
1,654,110,869
2,147,483,647
PyPy 3-64
OK
TESTS
35
62
1,945,600
n, k = map(int, input().split()) nums = list(map(int, input().split())) nums.sort() count, i = 0, 0 while i != n - 2: try: if nums[i + 2] + k <= 5: count += 1 i += 3 else: break except IndexError: break print(count)
Title: Choosing Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. Accordi...
```python n, k = map(int, input().split()) nums = list(map(int, input().split())) nums.sort() count, i = 0, 0 while i != n - 2: try: if nums[i + 2] + k <= 5: count += 1 i += 3 else: break except IndexError: break print(count) ```
3
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=Γ—<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=Γ—<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≀<=<=*n*,<=*m*,<=*a*<=≀<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,694,352,914
2,147,483,647
PyPy 3-64
OK
TESTS
20
62
0
import sys # Constants INF = float('inf') MOD = 1000000007 # Faster Input def read_int(): return int(sys.stdin.readline()) def read_n_int(): return map(int, sys.stdin.readline().split()) def read_ints(): return list(map(int, sys.stdin.readline().split())) # Faster Output def print_ye...
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 import sys # Constants INF = float('inf') MOD = 1000000007 # Faster Input def read_int(): return int(sys.stdin.readline()) def read_n_int(): return map(int, sys.stdin.readline().split()) def read_ints(): return list(map(int, sys.stdin.readline().split())) # Faster Output de...
3.969
276
C
Little Girl and Maximum Sum
PROGRAMMING
1,500
[ "data structures", "greedy", "implementation", "sortings" ]
null
null
The little girl loves the problems on array queries very much. One day she came across a rather well-known problem: you've got an array of $n$ elements (the elements of the array are indexed starting from 1); also, there are $q$ queries, each one is defined by a pair of integers $l_i$, $r_i$ $(1 \le l_i \le r_i \le n)...
The first line contains two space-separated integers $n$ ($1 \le n \le 2\cdot10^5$) and $q$ ($1 \le q \le 2\cdot10^5$) β€” the number of elements in the array and the number of queries, correspondingly. The next line contains $n$ space-separated integers $a_i$ ($1 \le a_i \le 2\cdot10^5$) β€” the array elements. Each of ...
In a single line print, a single integer β€” the maximum sum of query replies after the array elements are reordered. Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.
[ "3 3\n5 3 2\n1 2\n2 3\n1 3\n", "5 3\n5 2 4 1 3\n1 5\n2 3\n2 3\n" ]
[ "25\n", "33\n" ]
none
1,500
[ { "input": "3 3\n5 3 2\n1 2\n2 3\n1 3", "output": "25" }, { "input": "5 3\n5 2 4 1 3\n1 5\n2 3\n2 3", "output": "33" }, { "input": "34 21\n23 38 16 49 44 50 48 34 33 19 18 31 11 15 20 47 44 30 39 33 45 46 1 13 27 16 31 36 17 23 38 5 30 16\n8 16\n14 27\n8 26\n1 8\n5 6\n23 28\n4 33\n13 30\...
1,638,167,440
2,147,483,647
Python 3
OK
TESTS
63
997
28,672,000
n,q=map(int,input().split()) list1=list(map(int,input().split())) list1.sort() ans=0 dict1={} list2=[] for i in range(n):dict1[i]=[0,0] for _ in range(q): a,b=map(int,input().split()) dict1[a-1][0]+=1;dict1[b-1][1]+=1 x=0 for i in range(n): x+=dict1[i][0] list2.append(x) x-=dict1[i][1]...
Title: Little Girl and Maximum Sum Time Limit: None seconds Memory Limit: None megabytes Problem Description: The little girl loves the problems on array queries very much. One day she came across a rather well-known problem: you've got an array of $n$ elements (the elements of the array are indexed starting from 1...
```python n,q=map(int,input().split()) list1=list(map(int,input().split())) list1.sort() ans=0 dict1={} list2=[] for i in range(n):dict1[i]=[0,0] for _ in range(q): a,b=map(int,input().split()) dict1[a-1][0]+=1;dict1[b-1][1]+=1 x=0 for i in range(n): x+=dict1[i][0] list2.append(x) x-=d...
3
846
A
Curriculum Vitae
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
Hideo Kojima has just quit his job at Konami. Now he is going to find a new place to work. Despite being such a well-known person, he still needs a CV to apply for a job. During all his career Hideo has produced *n* games. Some of them were successful, some were not. Hideo wants to remove several of them (possibly zer...
The first line contains one integer number *n* (1<=≀<=*n*<=≀<=100). The second line contains *n* space-separated integer numbers *s*1,<=*s*2,<=...,<=*s**n* (0<=≀<=*s**i*<=≀<=1). 0 corresponds to an unsuccessful game, 1 β€” to a successful one.
Print one integer β€” the maximum number of games Hideo can leave in his CV so that no unsuccessful game comes after a successful one.
[ "4\n1 1 0 1\n", "6\n0 1 0 0 1 0\n", "1\n0\n" ]
[ "3\n", "4\n", "1\n" ]
none
0
[ { "input": "4\n1 1 0 1", "output": "3" }, { "input": "6\n0 1 0 0 1 0", "output": "4" }, { "input": "1\n0", "output": "1" }, { "input": "100\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 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
1,504,639,270
2,147,483,647
Python 3
OK
TESTS
18
61
0
n = int(input()) a = list(map(int, input().split())) cnt = a.count(0) ans = 0 for i in range(cnt + 1): a1 = a[::-1] a2 = [] cnt1 = i index = 0 while cnt1: if not a1[index]: cnt1 -= 1 else: a2.append(a1[index]) index += 1 for j in ran...
Title: Curriculum Vitae Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hideo Kojima has just quit his job at Konami. Now he is going to find a new place to work. Despite being such a well-known person, he still needs a CV to apply for a job. During all his career Hideo has produced *n* g...
```python n = int(input()) a = list(map(int, input().split())) cnt = a.count(0) ans = 0 for i in range(cnt + 1): a1 = a[::-1] a2 = [] cnt1 = i index = 0 while cnt1: if not a1[index]: cnt1 -= 1 else: a2.append(a1[index]) index += 1 fo...
3
899
A
Splitting in Teams
PROGRAMMING
800
[ "constructive algorithms", "greedy", "math" ]
null
null
There were *n* groups of students which came to write a training contest. A group is either one person who can write the contest with anyone else, or two people who want to write the contest in the same team. The coach decided to form teams of exactly three people for this training. Determine the maximum number of tea...
The first line contains single integer *n* (2<=≀<=*n*<=≀<=2Β·105) β€” the number of groups. The second line contains a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≀<=*a**i*<=≀<=2), where *a**i* is the number of people in group *i*.
Print the maximum number of teams of three people the coach can form.
[ "4\n1 1 2 1\n", "2\n2 2\n", "7\n2 2 2 1 1 1 1\n", "3\n1 1 1\n" ]
[ "1\n", "0\n", "3\n", "1\n" ]
In the first example the coach can form one team. For example, he can take students from the first, second and fourth groups. In the second example he can't make a single team. In the third example the coach can form three teams. For example, he can do this in the following way: - The first group (of two people) an...
500
[ { "input": "4\n1 1 2 1", "output": "1" }, { "input": "2\n2 2", "output": "0" }, { "input": "7\n2 2 2 1 1 1 1", "output": "3" }, { "input": "3\n1 1 1", "output": "1" }, { "input": "3\n2 2 2", "output": "0" }, { "input": "3\n1 2 1", "output": "1" }...
1,549,625,878
2,147,483,647
Python 3
OK
TESTS
67
155
4,096,000
f=lambda:map(int,input().split()) n=int(input()) l=list(f()) n1,n2=l.count(1),l.count(2) print([n1,n2+(n1-n2)//3][n1>n2])
Title: Splitting in Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: There were *n* groups of students which came to write a training contest. A group is either one person who can write the contest with anyone else, or two people who want to write the contest in the same team. The co...
```python f=lambda:map(int,input().split()) n=int(input()) l=list(f()) n1,n2=l.count(1),l.count(2) print([n1,n2+(n1-n2)//3][n1>n2]) ```
3
476
A
Dreamoon and Stairs
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Dreamoon wants to climb up a stair of *n* steps. He can climb 1 or 2 steps at each move. Dreamoon wants the number of moves to be a multiple of an integer *m*. What is the minimal number of moves making him climb to the top of the stairs that satisfies his condition?
The single line contains two space separated integers *n*, *m* (0<=&lt;<=*n*<=≀<=10000,<=1<=&lt;<=*m*<=≀<=10).
Print a single integer β€” the minimal number of moves being a multiple of *m*. If there is no way he can climb satisfying condition print <=-<=1 instead.
[ "10 2\n", "3 5\n" ]
[ "6\n", "-1\n" ]
For the first sample, Dreamoon could climb in 6 moves with following sequence of steps: {2, 2, 2, 2, 1, 1}. For the second sample, there are only three valid sequence of steps {2, 1}, {1, 2}, {1, 1, 1} with 2, 2, and 3 steps respectively. All these numbers are not multiples of 5.
500
[ { "input": "10 2", "output": "6" }, { "input": "3 5", "output": "-1" }, { "input": "29 7", "output": "21" }, { "input": "2 2", "output": "2" }, { "input": "1 2", "output": "-1" }, { "input": "10000 2", "output": "5000" }, { "input": "10000 ...
1,661,749,045
2,147,483,647
Python 3
OK
TESTS
35
62
0
from sys import stdin,stdout from math import * if __name__=="__main__": # for _ in range(int(input().split())): n,m=map(int,input().split()) res=-1 l=(n+1)//2 r=n f=0 for i in range(l,r+1): if i%m==0: print(i) f=1 break if f==0:p...
Title: Dreamoon and Stairs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dreamoon wants to climb up a stair of *n* steps. He can climb 1 or 2 steps at each move. Dreamoon wants the number of moves to be a multiple of an integer *m*. What is the minimal number of moves making him climb ...
```python from sys import stdin,stdout from math import * if __name__=="__main__": # for _ in range(int(input().split())): n,m=map(int,input().split()) res=-1 l=(n+1)//2 r=n f=0 for i in range(l,r+1): if i%m==0: print(i) f=1 break ...
3
44
A
Indian Summer
PROGRAMMING
900
[ "implementation" ]
A. Indian Summer
2
256
Indian summer is such a beautiful time of the year! A girl named Alyona is walking in the forest and picking a bouquet from fallen leaves. Alyona is very choosy β€” she doesn't take a leaf if it matches the color and the species of the tree of one of the leaves she already has. Find out how many leaves Alyona has picked.
The first line contains an integer *n* (1<=≀<=*n*<=≀<=100) β€” the number of leaves Alyona has found. The next *n* lines contain the leaves' descriptions. Each leaf is characterized by the species of the tree it has fallen from and by the color. The species of the trees and colors are given in names, consisting of no mor...
Output the single number β€” the number of Alyona's leaves.
[ "5\nbirch yellow\nmaple red\nbirch yellow\nmaple yellow\nmaple green\n", "3\noak yellow\noak yellow\noak yellow\n" ]
[ "4\n", "1\n" ]
none
0
[ { "input": "5\nbirch yellow\nmaple red\nbirch yellow\nmaple yellow\nmaple green", "output": "4" }, { "input": "3\noak yellow\noak yellow\noak yellow", "output": "1" }, { "input": "5\nxbnbkzn hp\nkaqkl vrgzbvqstu\nj aqidx\nhos gyul\nwefxmh tygpluae", "output": "5" }, { "input"...
1,610,356,451
2,147,483,647
Python 3
OK
TESTS
29
154
0
a = [] for x in range(int(input())): b = input() if b not in a: a.append(b) print(len(a))
Title: Indian Summer Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Indian summer is such a beautiful time of the year! A girl named Alyona is walking in the forest and picking a bouquet from fallen leaves. Alyona is very choosy β€” she doesn't take a leaf if it matches the color and the specie...
```python a = [] for x in range(int(input())): b = input() if b not in a: a.append(b) print(len(a)) ```
3.9615
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* β€” it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,593,472,089
2,147,483,647
PyPy 3
OK
TESTS
30
310
20,172,800
s = input() a = s.lower() b = s.upper() cnt1, cnt2 = 0, 0 for i in range(len(s)): if s[i] != a[i]: cnt1 -= -1 if s[i] != b[i]: cnt2 -= -1 if cnt1 > cnt2: print(b) else: print(a)
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python s = input() a = s.lower() b = s.upper() cnt1, cnt2 = 0, 0 for i in range(len(s)): if s[i] != a[i]: cnt1 -= -1 if s[i] != b[i]: cnt2 -= -1 if cnt1 > cnt2: print(b) else: print(a) ```
3.884925
546
A
Soldier and Bananas
PROGRAMMING
800
[ "brute force", "implementation", "math" ]
null
null
A soldier wants to buy *w* bananas in the shop. He has to pay *k* dollars for the first banana, 2*k* dollars for the second one and so on (in other words, he has to pay *i*Β·*k* dollars for the *i*-th banana). He has *n* dollars. How many dollars does he have to borrow from his friend soldier to buy *w* bananas?
The first line contains three positive integers *k*,<=*n*,<=*w* (1<=<=≀<=<=*k*,<=*w*<=<=≀<=<=1000, 0<=≀<=*n*<=≀<=109), the cost of the first banana, initial number of dollars the soldier has and number of bananas he wants.
Output one integer β€” the amount of dollars that the soldier must borrow from his friend. If he doesn't have to borrow money, output 0.
[ "3 17 4\n" ]
[ "13" ]
none
500
[ { "input": "3 17 4", "output": "13" }, { "input": "1 2 1", "output": "0" }, { "input": "1 1 1", "output": "0" }, { "input": "1 5 6", "output": "16" }, { "input": "1 1000000000 1", "output": "0" }, { "input": "1000 0 1000", "output": "500500000" }...
1,700,041,127
2,147,483,647
Python 3
OK
TESTS
15
46
0
k,n,w=map(int,input().split()) s=0 for i in range(1,w+1): s+=i*k print(s-n if s-n>-1 else 0)
Title: Soldier and Bananas Time Limit: None seconds Memory Limit: None megabytes Problem Description: A soldier wants to buy *w* bananas in the shop. He has to pay *k* dollars for the first banana, 2*k* dollars for the second one and so on (in other words, he has to pay *i*Β·*k* dollars for the *i*-th banana). He h...
```python k,n,w=map(int,input().split()) s=0 for i in range(1,w+1): s+=i*k print(s-n if s-n>-1 else 0) ```
3
275
A
Lights Out
PROGRAMMING
900
[ "implementation" ]
null
null
Lenny is playing a game on a 3<=Γ—<=3 grid of lights. In the beginning of the game all lights are switched on. Pressing any of the lights will toggle it and all side-adjacent lights. The goal of the game is to switch all the lights off. We consider the toggling as follows: if the light was switched on then it will be sw...
The input consists of three rows. Each row contains three integers each between 0 to 100 inclusive. The *j*-th number in the *i*-th row is the number of times the *j*-th light of the *i*-th row of the grid is pressed.
Print three lines, each containing three characters. The *j*-th character of the *i*-th line is "1" if and only if the corresponding light is switched on, otherwise it's "0".
[ "1 0 0\n0 0 0\n0 0 1\n", "1 0 1\n8 8 8\n2 0 3\n" ]
[ "001\n010\n100\n", "010\n011\n100\n" ]
none
500
[ { "input": "1 0 0\n0 0 0\n0 0 1", "output": "001\n010\n100" }, { "input": "1 0 1\n8 8 8\n2 0 3", "output": "010\n011\n100" }, { "input": "13 85 77\n25 50 45\n65 79 9", "output": "000\n010\n000" }, { "input": "96 95 5\n8 84 74\n67 31 61", "output": "011\n011\n101" }, {...
1,587,195,627
2,147,483,647
PyPy 3
OK
TESTS
33
155
0
t=[] k=[['1','1','1'],['1','1','1'],['1','1','1']] for i in range(3): a=list(map(int,input().split())) if a[0]==0: pass elif a[0]%2==0: pass else: k[i][0]= str(abs(int(k[i][0])-1)) k[i][1]=str(abs(int(k[i][1])-1)) if i==0: k[i+1][0]=str...
Title: Lights Out Time Limit: None seconds Memory Limit: None megabytes Problem Description: Lenny is playing a game on a 3<=Γ—<=3 grid of lights. In the beginning of the game all lights are switched on. Pressing any of the lights will toggle it and all side-adjacent lights. The goal of the game is to switch all the ...
```python t=[] k=[['1','1','1'],['1','1','1'],['1','1','1']] for i in range(3): a=list(map(int,input().split())) if a[0]==0: pass elif a[0]%2==0: pass else: k[i][0]= str(abs(int(k[i][0])-1)) k[i][1]=str(abs(int(k[i][1])-1)) if i==0: k[i...
3
540
A
Combination Lock
PROGRAMMING
800
[ "implementation" ]
null
null
Scrooge McDuck keeps his most treasured savings in a home safe with a combination lock. Each time he wants to put there the treasures that he's earned fair and square, he has to open the lock. The combination lock is represented by *n* rotating disks with digits from 0 to 9 written on them. Scrooge McDuck has to turn ...
The first line contains a single integer *n* (1<=≀<=*n*<=≀<=1000)Β β€” the number of disks on the combination lock. The second line contains a string of *n* digitsΒ β€” the original state of the disks. The third line contains a string of *n* digitsΒ β€” Scrooge McDuck's combination that opens the lock.
Print a single integerΒ β€” the minimum number of moves Scrooge McDuck needs to open the lock.
[ "5\n82195\n64723\n" ]
[ "13\n" ]
In the sample he needs 13 moves: - 1 disk: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/b8967f65a723782358b93eff9ce69f336817cf70.png" style="max-width: 100.0%;max-height: 100.0%;"/> - 2 disk: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/07fa58573ece0d32...
500
[ { "input": "5\n82195\n64723", "output": "13" }, { "input": "12\n102021090898\n010212908089", "output": "16" }, { "input": "1\n8\n1", "output": "3" }, { "input": "2\n83\n57", "output": "7" }, { "input": "10\n0728592530\n1362615763", "output": "27" }, { ...
1,601,500,034
2,147,483,647
Python 3
OK
TESTS
43
109
307,200
n=int(input()) x=input() y=input() count=0 for i in range(n): if abs(int(x[i])-int(y[i]))>=5: count=count+10-abs(int(x[i])-int(y[i])) else: count=count+abs(int(x[i])-int(y[i])) print(count)
Title: Combination Lock Time Limit: None seconds Memory Limit: None megabytes Problem Description: Scrooge McDuck keeps his most treasured savings in a home safe with a combination lock. Each time he wants to put there the treasures that he's earned fair and square, he has to open the lock. The combination lock is ...
```python n=int(input()) x=input() y=input() count=0 for i in range(n): if abs(int(x[i])-int(y[i]))>=5: count=count+10-abs(int(x[i])-int(y[i])) else: count=count+abs(int(x[i])-int(y[i])) print(count) ```
3
41
A
Translation
PROGRAMMING
800
[ "implementation", "strings" ]
A. Translation
2
256
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc....
The first line contains word *s*, the second line contains word *t*. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
If the word *t* is a word *s*, written reversely, print YES, otherwise print NO.
[ "code\nedoc\n", "abb\naba\n", "code\ncode\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "code\nedoc", "output": "YES" }, { "input": "abb\naba", "output": "NO" }, { "input": "code\ncode", "output": "NO" }, { "input": "abacaba\nabacaba", "output": "YES" }, { "input": "q\nq", "output": "YES" }, { "input": "asrgdfngfnmfgnhweratgjkk...
1,411,286,829
2,147,483,647
Python 3
OK
TESTS
40
122
0
from sys import stdin def main(): inp=stdin palabra1=inp.readline().strip() palabra2=inp.readline().strip() comparar='' for i in range(len(palabra1)-1,-1,-1): comparar+=palabra1[i] if comparar==palabra2: print("YES") else: print("NO") main()
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python from sys import stdin def main(): inp=stdin palabra1=inp.readline().strip() palabra2=inp.readline().strip() comparar='' for i in range(len(palabra1)-1,-1,-1): comparar+=palabra1[i] if comparar==palabra2: print("YES") else: print("NO") main() ...
3.9695
236
A
Boy or Girl
PROGRAMMING
800
[ "brute force", "implementation", "strings" ]
null
null
Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he thought so). After that they talked very often and eventually they became a couple in the network. Bu...
The first line contains a non-empty string, that contains only lowercase English letters β€” the user name. This string contains at most 100 letters.
If it is a female by our hero's method, print "CHAT WITH HER!" (without the quotes), otherwise, print "IGNORE HIM!" (without the quotes).
[ "wjmzbmr\n", "xiaodao\n", "sevenkplus\n" ]
[ "CHAT WITH HER!\n", "IGNORE HIM!\n", "CHAT WITH HER!\n" ]
For the first example. There are 6 distinct characters in "wjmzbmr". These characters are: "w", "j", "m", "z", "b", "r". So wjmzbmr is a female and you should print "CHAT WITH HER!".
500
[ { "input": "wjmzbmr", "output": "CHAT WITH HER!" }, { "input": "xiaodao", "output": "IGNORE HIM!" }, { "input": "sevenkplus", "output": "CHAT WITH HER!" }, { "input": "pezu", "output": "CHAT WITH HER!" }, { "input": "wnemlgppy", "output": "CHAT WITH HER!" },...
1,698,664,993
2,147,483,647
PyPy 3-64
OK
TESTS
85
124
0
print(["CHAT WITH HER!", "IGNORE HIM!"][len(set(input())) % 2])
Title: Boy or Girl Time Limit: None seconds Memory Limit: None megabytes Problem Description: Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he though...
```python print(["CHAT WITH HER!", "IGNORE HIM!"][len(set(input())) % 2]) ```
3
867
A
Between the Offices
PROGRAMMING
800
[ "implementation" ]
null
null
As you may know, MemSQL has American offices in both San Francisco and Seattle. Being a manager in the company, you travel a lot between the two cities, always by plane. You prefer flying from Seattle to San Francisco than in the other direction, because it's warmer in San Francisco. You are so busy that you don't rem...
The first line of input contains single integer *n* (2<=≀<=*n*<=≀<=100)Β β€” the number of days. The second line contains a string of length *n* consisting of only capital 'S' and 'F' letters. If the *i*-th letter is 'S', then you were in Seattle office on that day. Otherwise you were in San Francisco. The days are given...
Print "YES" if you flew more times from Seattle to San Francisco, and "NO" otherwise. You can print each letter in any case (upper or lower).
[ "4\nFSSF\n", "2\nSF\n", "10\nFFFFFFFFFF\n", "10\nSSFFSFFSFF\n" ]
[ "NO\n", "YES\n", "NO\n", "YES\n" ]
In the first example you were initially at San Francisco, then flew to Seattle, were there for two days and returned to San Francisco. You made one flight in each direction, so the answer is "NO". In the second example you just flew from Seattle to San Francisco, so the answer is "YES". In the third example you staye...
500
[ { "input": "4\nFSSF", "output": "NO" }, { "input": "2\nSF", "output": "YES" }, { "input": "10\nFFFFFFFFFF", "output": "NO" }, { "input": "10\nSSFFSFFSFF", "output": "YES" }, { "input": "20\nSFSFFFFSSFFFFSSSSFSS", "output": "NO" }, { "input": "20\nSSFFF...
1,615,814,316
2,147,483,647
PyPy 3
OK
TESTS
34
93
0
n = int(input()) S = input() countTrue = 0 countFalse = 0 for i in range(1, len(S)): if S[i-1] == "S" and S[i] == "F": countTrue += 1 if S[i-1] == "F" and S[i] == "S": countFalse += 1 # print(countTrue, countFalse) if countTrue > countFalse: print("YES") else: print("NO"...
Title: Between the Offices Time Limit: None seconds Memory Limit: None megabytes Problem Description: As you may know, MemSQL has American offices in both San Francisco and Seattle. Being a manager in the company, you travel a lot between the two cities, always by plane. You prefer flying from Seattle to San Franci...
```python n = int(input()) S = input() countTrue = 0 countFalse = 0 for i in range(1, len(S)): if S[i-1] == "S" and S[i] == "F": countTrue += 1 if S[i-1] == "F" and S[i] == "S": countFalse += 1 # print(countTrue, countFalse) if countTrue > countFalse: print("YES") else: ...
3
873
C
Strange Game On Matrix
PROGRAMMING
1,600
[ "greedy", "two pointers" ]
null
null
Ivan is playing a strange game. He has a matrix *a* with *n* rows and *m* columns. Each element of the matrix is equal to either 0 or 1. Rows and columns are 1-indexed. Ivan can replace any number of ones in this matrix with zeroes. After that, his score in the game will be calculated as follows: 1. Initially Ivan's...
The first line contains three integer numbers *n*, *m* and *k* (1<=≀<=*k*<=≀<=*n*<=≀<=100, 1<=≀<=*m*<=≀<=100). Then *n* lines follow, *i*-th of them contains *m* integer numbers β€” the elements of *i*-th row of matrix *a*. Each number is either 0 or 1.
Print two numbers: the maximum possible score Ivan can get and the minimum number of replacements required to get this score.
[ "4 3 2\n0 1 0\n1 0 1\n0 1 0\n1 1 1\n", "3 2 1\n1 0\n0 1\n0 0\n" ]
[ "4 1\n", "2 0\n" ]
In the first example Ivan will replace the element *a*<sub class="lower-index">1, 2</sub>.
0
[ { "input": "4 3 2\n0 1 0\n1 0 1\n0 1 0\n1 1 1", "output": "4 1" }, { "input": "3 2 1\n1 0\n0 1\n0 0", "output": "2 0" }, { "input": "3 4 2\n0 1 1 1\n1 0 1 1\n1 0 0 1", "output": "7 0" }, { "input": "3 57 3\n1 0 0 1 1 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 1 1 1...
1,692,167,366
2,147,483,647
PyPy 3
OK
TESTS
20
108
1,945,600
n, m, k = map(int, input().split()) a = [] for _ in range(n): a.append(list(map(int, input().split()))) total = 0 count = 0 for col in range(m): b = [0] * n b[0] = a[0][col] for row in range(1, n): b[row] = b[row - 1] + a[row][col] maxSum = 0 chg = 0 for ...
Title: Strange Game On Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ivan is playing a strange game. He has a matrix *a* with *n* rows and *m* columns. Each element of the matrix is equal to either 0 or 1. Rows and columns are 1-indexed. Ivan can replace any number of ones in thi...
```python n, m, k = map(int, input().split()) a = [] for _ in range(n): a.append(list(map(int, input().split()))) total = 0 count = 0 for col in range(m): b = [0] * n b[0] = a[0][col] for row in range(1, n): b[row] = b[row - 1] + a[row][col] maxSum = 0 chg = 0 ...
3
417
B
Crash
PROGRAMMING
1,400
[ "implementation" ]
null
null
During the "Russian Code Cup" programming competition, the testing system stores all sent solutions for each participant. We know that many participants use random numbers in their programs and are often sent several solutions with the same source code to check. Each participant is identified by some unique positive i...
The first line of the input contains an integer *n* (1<=≀<=*n*<=≀<=105)Β β€” the number of solutions. Each of the following *n* lines contains two integers separated by space *x* and *k* (0<=≀<=*x*<=≀<=105; 1<=≀<=*k*<=≀<=105)Β β€” the number of previous unique solutions and the identifier of the participant.
A single line of the output should contain Β«YESΒ» if the data is in chronological order, and Β«NOΒ» otherwise.
[ "2\n0 1\n1 1\n", "4\n0 1\n1 2\n1 1\n0 2\n", "4\n0 1\n1 1\n0 1\n0 2\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
1,000
[ { "input": "2\n0 1\n1 1", "output": "YES" }, { "input": "4\n0 1\n1 2\n1 1\n0 2", "output": "NO" }, { "input": "4\n0 1\n1 1\n0 1\n0 2", "output": "YES" }, { "input": "4\n7 1\n4 2\n8 2\n1 8", "output": "NO" }, { "input": "2\n0 8\n0 5", "output": "YES" }, { ...
1,697,807,799
2,147,483,647
PyPy 3-64
OK
TESTS
45
607
7,680,000
n = int(input()) c = [-1] * 100001 for i in range(n): x, k = map(int, input().split()) if x > c[k] + 1: print('NO') break c[k] = max(c[k], x) else: print('YES')# 1697807799.4821746
Title: Crash Time Limit: None seconds Memory Limit: None megabytes Problem Description: During the "Russian Code Cup" programming competition, the testing system stores all sent solutions for each participant. We know that many participants use random numbers in their programs and are often sent several solutions wi...
```python n = int(input()) c = [-1] * 100001 for i in range(n): x, k = map(int, input().split()) if x > c[k] + 1: print('NO') break c[k] = max(c[k], x) else: print('YES')# 1697807799.4821746 ```
3
621
B
Wet Shark and Bishops
PROGRAMMING
1,300
[ "combinatorics", "implementation" ]
null
null
Today, Wet Shark is given *n* bishops on a 1000 by 1000 grid. Both rows and columns of the grid are numbered from 1 to 1000. Rows are numbered from top to bottom, while columns are numbered from left to right. Wet Shark thinks that two bishops attack each other if they share the same diagonal. Note, that this is the o...
The first line of the input contains *n* (1<=≀<=*n*<=≀<=200<=000)Β β€” the number of bishops. Each of next *n* lines contains two space separated integers *x**i* and *y**i* (1<=≀<=*x**i*,<=*y**i*<=≀<=1000)Β β€” the number of row and the number of column where *i*-th bishop is positioned. It's guaranteed that no two bishops ...
Output one integerΒ β€” the number of pairs of bishops which attack each other.
[ "5\n1 1\n1 5\n3 3\n5 1\n5 5\n", "3\n1 1\n2 3\n3 5\n" ]
[ "6\n", "0\n" ]
In the first sample following pairs of bishops attack each other: (1, 3), (1, 5), (2, 3), (2, 4), (3, 4) and (3, 5). Pairs (1, 2), (1, 4), (2, 5) and (4, 5) do not attack each other because they do not share the same diagonal.
1,000
[ { "input": "5\n1 1\n1 5\n3 3\n5 1\n5 5", "output": "6" }, { "input": "3\n1 1\n2 3\n3 5", "output": "0" }, { "input": "3\n859 96\n634 248\n808 72", "output": "0" }, { "input": "3\n987 237\n891 429\n358 145", "output": "0" }, { "input": "3\n411 81\n149 907\n611 114"...
1,573,749,861
2,147,483,647
PyPy 3
OK
TESTS
68
1,497
9,113,600
n = int(input()) a = [0] * 2001 b = [0] * 2001 for i in range(n): x, y = map(int, input().split()) a[x - y] += 1 b[x + y] += 1 ans = 0 for i in range(2001): ans += a[i] * (a[i] - 1) // 2 ans += b[i] * (b[i] - 1) // 2 print(ans)
Title: Wet Shark and Bishops Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today, Wet Shark is given *n* bishops on a 1000 by 1000 grid. Both rows and columns of the grid are numbered from 1 to 1000. Rows are numbered from top to bottom, while columns are numbered from left to right. We...
```python n = int(input()) a = [0] * 2001 b = [0] * 2001 for i in range(n): x, y = map(int, input().split()) a[x - y] += 1 b[x + y] += 1 ans = 0 for i in range(2001): ans += a[i] * (a[i] - 1) // 2 ans += b[i] * (b[i] - 1) // 2 print(ans) ```
3
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,588,865,495
2,147,483,647
Python 3
OK
TESTS
40
108
6,656,000
s=input() x="hello" k=0 y=0 for i in range(0,len(s)): if s[i]==x[k]: k+=1 y+=1 if y==5: break else: continue else: continue if y==5: print("YES") else: print("NO")
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python s=input() x="hello" k=0 y=0 for i in range(0,len(s)): if s[i]==x[k]: k+=1 y+=1 if y==5: break else: continue else: continue if y==5: print("YES") else: print("NO") ```
3.933602
729
D
Sea Battle
PROGRAMMING
1,700
[ "constructive algorithms", "greedy", "math" ]
null
null
Galya is playing one-dimensional Sea Battle on a 1<=Γ—<=*n* grid. In this game *a* ships are placed on the grid. Each of the ships consists of *b* consecutive cells. No cell can be part of two ships, however, the ships can touch each other. Galya doesn't know the ships location. She can shoot to some cells and after ea...
The first line contains four positive integers *n*, *a*, *b*, *k* (1<=≀<=*n*<=≀<=2Β·105, 1<=≀<=*a*,<=*b*<=≀<=*n*, 0<=≀<=*k*<=≀<=*n*<=-<=1)Β β€” the length of the grid, the number of ships on the grid, the length of each ship and the number of shots Galya has already made. The second line contains a string of length *n*, c...
In the first line print the minimum number of cells such that if Galya shoot at all of them, she would hit at least one ship. In the second line print the cells Galya should shoot at. Each cell should be printed exactly once. You can print the cells in arbitrary order. The cells are numbered from 1 to *n*, starting f...
[ "5 1 2 1\n00100\n", "13 3 2 3\n1000000010001\n" ]
[ "2\n4 2\n", "2\n7 11\n" ]
There is one ship in the first sample. It can be either to the left or to the right from the shot Galya has already made (the "1" character). So, it is necessary to make two shots: one at the left part, and one at the right part.
1,750
[ { "input": "5 1 2 1\n00100", "output": "2\n2 5 " }, { "input": "13 3 2 3\n1000000010001", "output": "2\n3 5 " }, { "input": "1 1 1 0\n0", "output": "1\n1 " }, { "input": "2 2 1 0\n00", "output": "1\n1 " }, { "input": "5 4 1 0\n00000", "output": "2\n1 2 " }, ...
1,595,650,354
2,147,483,647
PyPy 3
OK
TESTS
21
249
32,870,400
n,a,b,k = map(int,input().split()) s = input() sm = 0 num = 0 res = [] for i in range(n): if s[i] == "1": sm = 0 if s[i] == "0": sm += 1 if sm == b: num += 1 res.append(i+1) sm = 0 k = num - a + 1 print(k) print(*res[:k])
Title: Sea Battle Time Limit: None seconds Memory Limit: None megabytes Problem Description: Galya is playing one-dimensional Sea Battle on a 1<=Γ—<=*n* grid. In this game *a* ships are placed on the grid. Each of the ships consists of *b* consecutive cells. No cell can be part of two ships, however, the ships can to...
```python n,a,b,k = map(int,input().split()) s = input() sm = 0 num = 0 res = [] for i in range(n): if s[i] == "1": sm = 0 if s[i] == "0": sm += 1 if sm == b: num += 1 res.append(i+1) sm = 0 k = num - a + 1 print(k) print(*res[:k]) ...
3
222
A
Shooshuns and Sequence
PROGRAMMING
1,200
[ "brute force", "implementation" ]
null
null
One day shooshuns found a sequence of *n* integers, written on a blackboard. The shooshuns can perform one operation with it, the operation consists of two steps: 1. Find the number that goes *k*-th in the current sequence and add the same number to the end of the sequence; 1. Delete the first number of the current ...
The first line contains two space-separated integers *n* and *k* (1<=≀<=*k*<=≀<=*n*<=≀<=105). The second line contains *n* space-separated integers: *a*1,<=*a*2,<=...,<=*a**n* (1<=≀<=*a**i*<=≀<=105) β€” the sequence that the shooshuns found.
Print the minimum number of operations, required for all numbers on the blackboard to become the same. If it is impossible to achieve, print -1.
[ "3 2\n3 1 1\n", "3 1\n3 1 1\n" ]
[ "1\n", "-1\n" ]
In the first test case after the first operation the blackboard will have sequence [1, 1, 1]. So, one operation is enough to make all numbers the same. Thus, the answer equals one. In the second test case the sequence will never consist of the same numbers. It will always contain at least two distinct numbers 3 and 1....
500
[ { "input": "3 2\n3 1 1", "output": "1" }, { "input": "3 1\n3 1 1", "output": "-1" }, { "input": "1 1\n1", "output": "0" }, { "input": "2 1\n1 1", "output": "0" }, { "input": "2 1\n2 1", "output": "-1" }, { "input": "4 4\n1 2 3 4", "output": "3" }...
1,604,319,271
2,147,483,647
Python 3
OK
TESTS
47
342
6,041,600
v=input().split() v[0]=int(v[0]) v[1]=int(v[1]) c=input().split() for i in range(v[0]): c[i]=int(c[i]) s=1 for i in range(v[0]-1,0,-1): if c[i]==c[i-1]: s+=1 else: break if v[1]>v[0]-s: print(v[0]-s) else: print(-1)
Title: Shooshuns and Sequence Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day shooshuns found a sequence of *n* integers, written on a blackboard. The shooshuns can perform one operation with it, the operation consists of two steps: 1. Find the number that goes *k*-th in the cur...
```python v=input().split() v[0]=int(v[0]) v[1]=int(v[1]) c=input().split() for i in range(v[0]): c[i]=int(c[i]) s=1 for i in range(v[0]-1,0,-1): if c[i]==c[i-1]: s+=1 else: break if v[1]>v[0]-s: print(v[0]-s) else: print(-1) ```
3
821
A
Okabe and Future Gadget Laboratory
PROGRAMMING
800
[ "implementation" ]
null
null
Okabe needs to renovate the Future Gadget Laboratory after he tried doing some crazy experiments! The lab is represented as an *n* by *n* square grid of integers. A good lab is defined as a lab in which every number not equal to 1 can be expressed as the sum of a number in the same row and a number in the same column. ...
The first line of input contains the integer *n* (1<=≀<=*n*<=≀<=50)Β β€” the size of the lab. The next *n* lines contain *n* space-separated integers denoting a row of the grid. The *j*-th integer in the *i*-th row is *a**i*,<=*j* (1<=≀<=*a**i*,<=*j*<=≀<=105).
Print "Yes" if the given lab is good and "No" otherwise. You can output each letter in upper or lower case.
[ "3\n1 1 2\n2 3 1\n6 4 1\n", "3\n1 5 2\n1 1 1\n1 2 3\n" ]
[ "Yes\n", "No\n" ]
In the first sample test, the 6 in the bottom left corner is valid because it is the sum of the 2 above it and the 4 on the right. The same holds for every number not equal to 1 in this table, so the answer is "Yes". In the second sample test, the 5 cannot be formed as the sum of an integer in the same row and an inte...
500
[ { "input": "3\n1 1 2\n2 3 1\n6 4 1", "output": "Yes" }, { "input": "3\n1 5 2\n1 1 1\n1 2 3", "output": "No" }, { "input": "1\n1", "output": "Yes" }, { "input": "4\n1 1 1 1\n1 11 1 2\n2 5 1 4\n3 9 4 1", "output": "Yes" }, { "input": "4\n1 1 1 1\n1 7 1 1\n1 3 1 2\n2...
1,498,401,766
466
Python 3
OK
TESTS
31
296
5,529,600
N = int(input()) table = [] for i in range(N): table.append(list(map(int, input().split()))) for i in range(N): for j in range(N): if table[i][j] == 1: continue flg = False for s in range(N): for t in range(N): if table[i][j] == table[i][s] + tabl...
Title: Okabe and Future Gadget Laboratory Time Limit: None seconds Memory Limit: None megabytes Problem Description: Okabe needs to renovate the Future Gadget Laboratory after he tried doing some crazy experiments! The lab is represented as an *n* by *n* square grid of integers. A good lab is defined as a lab in whi...
```python N = int(input()) table = [] for i in range(N): table.append(list(map(int, input().split()))) for i in range(N): for j in range(N): if table[i][j] == 1: continue flg = False for s in range(N): for t in range(N): if table[i][j] == table[i]...
3
499
B
Lecture
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
You have a new professor of graph theory and he speaks very quickly. You come up with the following plan to keep up with his lecture and make notes. You know two languages, and the professor is giving the lecture in the first one. The words in both languages consist of lowercase English characters, each language consi...
The first line contains two integers, *n* and *m* (1<=≀<=*n*<=≀<=3000, 1<=≀<=*m*<=≀<=3000) β€” the number of words in the professor's lecture and the number of words in each of these languages. The following *m* lines contain the words. The *i*-th line contains two strings *a**i*, *b**i* meaning that the word *a**i* bel...
Output exactly *n* words: how you will record the lecture in your notebook. Output the words of the lecture in the same order as in the input.
[ "4 3\ncodeforces codesecrof\ncontest round\nletter message\ncodeforces contest letter contest\n", "5 3\njoll wuqrd\neuzf un\nhbnyiyc rsoqqveh\nhbnyiyc joll joll euzf joll\n" ]
[ "codeforces round letter round\n", "hbnyiyc joll joll un joll\n" ]
none
500
[ { "input": "4 3\ncodeforces codesecrof\ncontest round\nletter message\ncodeforces contest letter contest", "output": "codeforces round letter round" }, { "input": "5 3\njoll wuqrd\neuzf un\nhbnyiyc rsoqqveh\nhbnyiyc joll joll euzf joll", "output": "hbnyiyc joll joll un joll" }, { "input"...
1,608,580,672
2,147,483,647
Python 3
OK
TESTS
37
124
512,000
n, m = map(int, input().split()) lang_map = {} for i in range(m): w1, w2 = input().split() lang_map[w1] = min(w1, w2, key=len) lecture = input() print(" ".join([lang_map[w] for w in lecture.split()]))
Title: Lecture Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have a new professor of graph theory and he speaks very quickly. You come up with the following plan to keep up with his lecture and make notes. You know two languages, and the professor is giving the lecture in the first ...
```python n, m = map(int, input().split()) lang_map = {} for i in range(m): w1, w2 = input().split() lang_map[w1] = min(w1, w2, key=len) lecture = input() print(" ".join([lang_map[w] for w in lecture.split()])) ```
3
701
A
Cards
PROGRAMMING
800
[ "greedy", "implementation" ]
null
null
There are *n* cards (*n* is even) in the deck. Each card has a positive integer written on it. *n*<=/<=2 people will play new card game. At the beginning of the game each player gets two cards, each card is given to exactly one player. Find the way to distribute cards such that the sum of values written of the cards ...
The first line of the input contains integer *n* (2<=≀<=*n*<=≀<=100)Β β€” the number of cards in the deck. It is guaranteed that *n* is even. The second line contains the sequence of *n* positive integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≀<=*a**i*<=≀<=100), where *a**i* is equal to the number written on the *i*-th card.
Print *n*<=/<=2 pairs of integers, the *i*-th pair denote the cards that should be given to the *i*-th player. Each card should be given to exactly one player. Cards are numbered in the order they appear in the input. It is guaranteed that solution exists. If there are several correct answers, you are allowed to print...
[ "6\n1 5 7 4 4 3\n", "4\n10 10 10 10\n" ]
[ "1 3\n6 2\n4 5\n", "1 2\n3 4\n" ]
In the first sample, cards are distributed in such a way that each player has the sum of numbers written on his cards equal to 8. In the second sample, all values *a*<sub class="lower-index">*i*</sub> are equal. Thus, any distribution is acceptable.
500
[ { "input": "6\n1 5 7 4 4 3", "output": "1 3\n6 2\n4 5" }, { "input": "4\n10 10 10 10", "output": "1 4\n2 3" }, { "input": "100\n2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...
1,654,603,350
2,147,483,647
Python 3
OK
TESTS
35
46
0
def sort_key(x): return x[1] n = int(input()) a = list(map(int, input().split())) a = list(enumerate(a, 1)) a = sorted(a, key=sort_key) for i in range(n // 2): print(a[i][0], a[(-i - 1)][0])
Title: Cards Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* cards (*n* is even) in the deck. Each card has a positive integer written on it. *n*<=/<=2 people will play new card game. At the beginning of the game each player gets two cards, each card is given to exactly one p...
```python def sort_key(x): return x[1] n = int(input()) a = list(map(int, input().split())) a = list(enumerate(a, 1)) a = sorted(a, key=sort_key) for i in range(n // 2): print(a[i][0], a[(-i - 1)][0]) ```
3
551
A
GukiZ and Contest
PROGRAMMING
800
[ "brute force", "implementation", "sortings" ]
null
null
Professor GukiZ likes programming contests. He especially likes to rate his students on the contests he prepares. Now, he has decided to prepare a new contest. In total, *n* students will attend, and before the start, every one of them has some positive integer rating. Students are indexed from 1 to *n*. Let's denote...
The first line contains integer *n* (1<=≀<=*n*<=≀<=2000), number of GukiZ's students. The second line contains *n* numbers *a*1,<=*a*2,<=... *a**n* (1<=≀<=*a**i*<=≀<=2000) where *a**i* is the rating of *i*-th student (1<=≀<=*i*<=≀<=*n*).
In a single line, print the position after the end of the contest for each of *n* students in the same order as they appear in the input.
[ "3\n1 3 3\n", "1\n1\n", "5\n3 5 3 4 5\n" ]
[ "3 1 1\n", "1\n", "4 1 4 3 1\n" ]
In the first sample, students 2 and 3 are positioned first (there is no other student with higher rating), and student 1 is positioned third since there are two students with higher rating. In the second sample, first student is the only one on the contest. In the third sample, students 2 and 5 share the first positi...
500
[ { "input": "3\n1 3 3", "output": "3 1 1" }, { "input": "1\n1", "output": "1" }, { "input": "5\n3 5 3 4 5", "output": "4 1 4 3 1" }, { "input": "7\n1 3 5 4 2 2 1", "output": "6 3 1 2 4 4 6" }, { "input": "11\n5 6 4 2 9 7 6 6 6 6 7", "output": "9 4 10 11 1 2 4 4...
1,624,252,605
2,147,483,647
Python 3
OK
TESTS
36
529
0
n = int(input()) arr = list(map(int, input().split())) for i in arr: count = 0 for j in arr: if j > i: count+=1 if count == 0: print(1, end=" ") else: print(count+1, end=" ")
Title: GukiZ and Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Professor GukiZ likes programming contests. He especially likes to rate his students on the contests he prepares. Now, he has decided to prepare a new contest. In total, *n* students will attend, and before the star...
```python n = int(input()) arr = list(map(int, input().split())) for i in arr: count = 0 for j in arr: if j > i: count+=1 if count == 0: print(1, end=" ") else: print(count+1, end=" ") ```
3
334
A
Candy Bags
PROGRAMMING
1,000
[ "implementation" ]
null
null
Gerald has *n* younger brothers and their number happens to be even. One day he bought *n*2 candy bags. One bag has one candy, one bag has two candies, one bag has three candies and so on. In fact, for each integer *k* from 1 to *n*2 he has exactly one bag with *k* candies. Help him give *n* bags of candies to each b...
The single line contains a single integer *n* (*n* is even, 2<=≀<=*n*<=≀<=100) β€” the number of Gerald's brothers.
Let's assume that Gerald indexes his brothers with numbers from 1 to *n*. You need to print *n* lines, on the *i*-th line print *n* integers β€” the numbers of candies in the bags for the *i*-th brother. Naturally, all these numbers should be distinct and be within limits from 1 to *n*2. You can print the numbers in the ...
[ "2\n" ]
[ "1 4\n2 3\n" ]
The sample shows Gerald's actions if he has two brothers. In this case, his bags contain 1, 2, 3 and 4 candies. He can give the bags with 1 and 4 candies to one brother and the bags with 2 and 3 to the other brother.
500
[ { "input": "2", "output": "1 4\n2 3" }, { "input": "4", "output": "1 16 2 15\n3 14 4 13\n5 12 6 11\n7 10 8 9" }, { "input": "6", "output": "1 36 2 35 3 34\n4 33 5 32 6 31\n7 30 8 29 9 28\n10 27 11 26 12 25\n13 24 14 23 15 22\n16 21 17 20 18 19" }, { "input": "8", "output"...
1,531,053,100
2,147,483,647
Python 3
OK
TESTS
21
248
204,800
n = int(input()) k, N = n // 2, n ** 2 for i in range(n): for j in range(1, k + 1): num = k * i + j print(num, N - num + 1, end=' ') print()
Title: Candy Bags Time Limit: None seconds Memory Limit: None megabytes Problem Description: Gerald has *n* younger brothers and their number happens to be even. One day he bought *n*2 candy bags. One bag has one candy, one bag has two candies, one bag has three candies and so on. In fact, for each integer *k* from ...
```python n = int(input()) k, N = n // 2, n ** 2 for i in range(n): for j in range(1, k + 1): num = k * i + j print(num, N - num + 1, end=' ') print() ```
3
599
A
Patrick and Shopping
PROGRAMMING
800
[ "implementation" ]
null
null
Today Patrick waits for a visit from his friend Spongebob. To prepare for the visit, Patrick needs to buy some goodies in two stores located near his house. There is a *d*1 meter long road between his house and the first shop and a *d*2 meter long road between his house and the second shop. Also, there is a road of len...
The first line of the input contains three integers *d*1, *d*2, *d*3 (1<=≀<=*d*1,<=*d*2,<=*d*3<=≀<=108)Β β€” the lengths of the paths. - *d*1 is the length of the path connecting Patrick's house and the first shop; - *d*2 is the length of the path connecting Patrick's house and the second shop; - *d*3 is the length o...
Print the minimum distance that Patrick will have to walk in order to visit both shops and return to his house.
[ "10 20 30\n", "1 1 5\n" ]
[ "60\n", "4\n" ]
The first sample is shown on the picture in the problem statement. One of the optimal routes is: house <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> first shop <img align="middle" class="tex-form...
500
[ { "input": "10 20 30", "output": "60" }, { "input": "1 1 5", "output": "4" }, { "input": "100 33 34", "output": "134" }, { "input": "777 777 777", "output": "2331" }, { "input": "2 2 8", "output": "8" }, { "input": "12 34 56", "output": "92" }, ...
1,652,004,785
2,147,483,647
Python 3
OK
TESTS
21
46
0
a,b,c=map(int,input().split()) l=[] l.append(2*a+2*b) l.append(a+b+c) l.append(2*c+2*a) l.append(2*c+2*b) l.sort() print(l[0])
Title: Patrick and Shopping Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today Patrick waits for a visit from his friend Spongebob. To prepare for the visit, Patrick needs to buy some goodies in two stores located near his house. There is a *d*1 meter long road between his house and the...
```python a,b,c=map(int,input().split()) l=[] l.append(2*a+2*b) l.append(a+b+c) l.append(2*c+2*a) l.append(2*c+2*b) l.sort() print(l[0]) ```
3
460
A
Vasya and Socks
PROGRAMMING
900
[ "brute force", "implementation", "math" ]
null
null
Vasya has *n* pairs of socks. In the morning of each day Vasya has to put on a pair of socks before he goes to school. When he comes home in the evening, Vasya takes off the used socks and throws them away. Every *m*-th day (at days with numbers *m*,<=2*m*,<=3*m*,<=...) mom buys a pair of socks to Vasya. She does it la...
The single line contains two integers *n* and *m* (1<=≀<=*n*<=≀<=100;Β 2<=≀<=*m*<=≀<=100), separated by a space.
Print a single integer β€” the answer to the problem.
[ "2 2\n", "9 3\n" ]
[ "3\n", "13\n" ]
In the first sample Vasya spends the first two days wearing the socks that he had initially. Then on day three he puts on the socks that were bought on day two. In the second sample Vasya spends the first nine days wearing the socks that he had initially. Then he spends three days wearing the socks that were bought on...
500
[ { "input": "2 2", "output": "3" }, { "input": "9 3", "output": "13" }, { "input": "1 2", "output": "1" }, { "input": "2 3", "output": "2" }, { "input": "1 99", "output": "1" }, { "input": "4 4", "output": "5" }, { "input": "10 2", "outp...
1,660,881,479
2,147,483,647
Python 3
OK
TESTS
26
46
0
n,m = map(int,input().split()) z = ((n-1)/(m-1)) print(int(n+z))
Title: Vasya and Socks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has *n* pairs of socks. In the morning of each day Vasya has to put on a pair of socks before he goes to school. When he comes home in the evening, Vasya takes off the used socks and throws them away. Every *m*-th...
```python n,m = map(int,input().split()) z = ((n-1)/(m-1)) print(int(n+z)) ```
3
236
A
Boy or Girl
PROGRAMMING
800
[ "brute force", "implementation", "strings" ]
null
null
Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he thought so). After that they talked very often and eventually they became a couple in the network. Bu...
The first line contains a non-empty string, that contains only lowercase English letters β€” the user name. This string contains at most 100 letters.
If it is a female by our hero's method, print "CHAT WITH HER!" (without the quotes), otherwise, print "IGNORE HIM!" (without the quotes).
[ "wjmzbmr\n", "xiaodao\n", "sevenkplus\n" ]
[ "CHAT WITH HER!\n", "IGNORE HIM!\n", "CHAT WITH HER!\n" ]
For the first example. There are 6 distinct characters in "wjmzbmr". These characters are: "w", "j", "m", "z", "b", "r". So wjmzbmr is a female and you should print "CHAT WITH HER!".
500
[ { "input": "wjmzbmr", "output": "CHAT WITH HER!" }, { "input": "xiaodao", "output": "IGNORE HIM!" }, { "input": "sevenkplus", "output": "CHAT WITH HER!" }, { "input": "pezu", "output": "CHAT WITH HER!" }, { "input": "wnemlgppy", "output": "CHAT WITH HER!" },...
1,695,711,735
2,147,483,647
PyPy 3-64
OK
TESTS
85
154
0
s=str(input()) mylist=[] for i in s: if i not in mylist: mylist.append(i) if (len(mylist)%2)==0: print("CHAT WITH HER!") else : print("IGNORE HIM!")
Title: Boy or Girl Time Limit: None seconds Memory Limit: None megabytes Problem Description: Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he though...
```python s=str(input()) mylist=[] for i in s: if i not in mylist: mylist.append(i) if (len(mylist)%2)==0: print("CHAT WITH HER!") else : print("IGNORE HIM!") ```
3
556
A
Case of the Zeros and Ones
PROGRAMMING
900
[ "greedy" ]
null
null
Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Consider the following operation: we choose any two adjacent positions in the string, and if one them contains 0, an...
First line of the input contains a single integer *n* (1<=≀<=*n*<=≀<=2Β·105), the length of the string that Andreid has. The second line contains the string of length *n* consisting only from zeros and ones.
Output the minimum length of the string that may remain after applying the described operations several times.
[ "4\n1100\n", "5\n01010\n", "8\n11101111\n" ]
[ "0\n", "1\n", "6\n" ]
In the first sample test it is possible to change the string like the following: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/10df55364c21c6e8d5da31b6ab6f6294c4fc26b3.png" style="max-width: 100.0%;max-height: 100.0%;"/>. In the second sample test it is possible to change the string like...
250
[ { "input": "4\n1100", "output": "0" }, { "input": "5\n01010", "output": "1" }, { "input": "8\n11101111", "output": "6" }, { "input": "1\n0", "output": "1" }, { "input": "1\n1", "output": "1" }, { "input": "2\n00", "output": "2" }, { "input"...
1,646,109,387
2,147,483,647
PyPy 3-64
OK
TESTS
49
108
8,192,000
from collections import Counter def case_of_zeros_and_ones(): n = int(input()) s = input() counts = Counter(s) if len(counts) == 1: print(n) else: print( n - min(counts.values()) * 2) case_of_zeros_and_ones()
Title: Case of the Zeros and Ones Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Cons...
```python from collections import Counter def case_of_zeros_and_ones(): n = int(input()) s = input() counts = Counter(s) if len(counts) == 1: print(n) else: print( n - min(counts.values()) * 2) case_of_zeros_and_ones() ```
3
432
A
Choosing Teams
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. According to the ACM ICPC rules, each person can participate in the world championship at most 5 times. Th...
The first line contains two integers, *n* and *k* (1<=≀<=*n*<=≀<=2000;Β 1<=≀<=*k*<=≀<=5). The next line contains *n* integers: *y*1,<=*y*2,<=...,<=*y**n* (0<=≀<=*y**i*<=≀<=5), where *y**i* shows the number of times the *i*-th person participated in the ACM ICPC world championship.
Print a single number β€” the answer to the problem.
[ "5 2\n0 4 5 1 0\n", "6 4\n0 1 2 3 4 5\n", "6 5\n0 0 0 0 0 0\n" ]
[ "1\n", "0\n", "2\n" ]
In the first sample only one team could be made: the first, the fourth and the fifth participants. In the second sample no teams could be created. In the third sample two teams could be created. Any partition into two teams fits.
500
[ { "input": "5 2\n0 4 5 1 0", "output": "1" }, { "input": "6 4\n0 1 2 3 4 5", "output": "0" }, { "input": "6 5\n0 0 0 0 0 0", "output": "2" }, { "input": "3 4\n0 1 0", "output": "1" }, { "input": "3 4\n0 2 0", "output": "0" }, { "input": "6 5\n0 0 0 0 0...
1,660,898,884
2,147,483,647
Python 3
OK
TESTS
35
46
0
n=str(input()).split() a=str(input()).split() for i in range (len(n)): n[i]=int(n[i]) for i in range (len(a)): a[i]=int(a[i]) for i in range (len(a)): a[i]=5-a[i] s=[] for x in range (len(a)): if a[x]-n[1]>=0: s.append(a[x]) print(len(s)//3)
Title: Choosing Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. Accordi...
```python n=str(input()).split() a=str(input()).split() for i in range (len(n)): n[i]=int(n[i]) for i in range (len(a)): a[i]=int(a[i]) for i in range (len(a)): a[i]=5-a[i] s=[] for x in range (len(a)): if a[x]-n[1]>=0: s.append(a[x]) print(len(s)//3) ```
3
268
A
Games
PROGRAMMING
800
[ "brute force" ]
null
null
Manao works on a sports TV. He's spent much time watching the football games of some country. After a while he began to notice different patterns. For example, each team has two sets of uniforms: home uniform and guest uniform. When a team plays a game at home, the players put on the home uniform. When a team plays as ...
The first line contains an integer *n* (2<=≀<=*n*<=≀<=30). Each of the following *n* lines contains a pair of distinct space-separated integers *h**i*, *a**i* (1<=≀<=*h**i*,<=*a**i*<=≀<=100) β€” the colors of the *i*-th team's home and guest uniforms, respectively.
In a single line print the number of games where the host team is going to play in the guest uniform.
[ "3\n1 2\n2 4\n3 4\n", "4\n100 42\n42 100\n5 42\n100 5\n", "2\n1 2\n1 2\n" ]
[ "1\n", "5\n", "0\n" ]
In the first test case the championship consists of 6 games. The only game with the event in question is the game between teams 2 and 1 on the stadium of team 2. In the second test sample the host team will have to wear guest uniform in the games between teams: 1 and 2, 2 and 1, 2 and 3, 3 and 4, 4 and 2 (the host tea...
500
[ { "input": "3\n1 2\n2 4\n3 4", "output": "1" }, { "input": "4\n100 42\n42 100\n5 42\n100 5", "output": "5" }, { "input": "2\n1 2\n1 2", "output": "0" }, { "input": "7\n4 7\n52 55\n16 4\n55 4\n20 99\n3 4\n7 52", "output": "6" }, { "input": "10\n68 42\n1 35\n25 70\n...
1,687,367,515
2,147,483,647
PyPy 3-64
OK
TESTS
31
124
0
n = int(input()) a = [] for i in range(n): a.append(list(map(int, input().split()))) count = 0 for i in range(len(a)): for j in range(len(a)): if i != j: if a[i][1] == a[j][0]: count += 1 print(count)
Title: Games Time Limit: None seconds Memory Limit: None megabytes Problem Description: Manao works on a sports TV. He's spent much time watching the football games of some country. After a while he began to notice different patterns. For example, each team has two sets of uniforms: home uniform and guest uniform. W...
```python n = int(input()) a = [] for i in range(n): a.append(list(map(int, input().split()))) count = 0 for i in range(len(a)): for j in range(len(a)): if i != j: if a[i][1] == a[j][0]: count += 1 print(count) ```
3
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,653,983,586
2,147,483,647
Python 3
OK
TESTS
3
60
0
t = int(input()) for i in range(t): a = int(input()) if a>=180: print("NO") continue; n = 360/(180-a) if n%int(n)==0 and a<180 : print("YES") continue; else: print("NO") continue;
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 t = int(input()) for i in range(t): a = int(input()) if a>=180: print("NO") continue; n = 360/(180-a) if n%int(n)==0 and a<180 : print("YES") continue; else: print("NO") continue; ```
3
895
A
Pizza Separation
PROGRAMMING
1,200
[ "brute force", "implementation" ]
null
null
Students Vasya and Petya are studying at the BSU (Byteland State University). At one of the breaks they decided to order a pizza. In this problem pizza is a circle of some radius. The pizza was delivered already cut into *n* pieces. The *i*-th piece is a sector of angle equal to *a**i*. Vasya and Petya want to divide a...
The first line contains one integer *n* (1<=≀<=*n*<=≀<=360) Β β€” the number of pieces into which the delivered pizza was cut. The second line contains *n* integers *a**i* (1<=≀<=*a**i*<=≀<=360) Β β€” the angles of the sectors into which the pizza was cut. The sum of all *a**i* is 360.
Print one integer Β β€” the minimal difference between angles of sectors that will go to Vasya and Petya.
[ "4\n90 90 90 90\n", "3\n100 100 160\n", "1\n360\n", "4\n170 30 150 10\n" ]
[ "0\n", "40\n", "360\n", "0\n" ]
In first sample Vasya can take 1 and 2 pieces, Petya can take 3 and 4 pieces. Then the answer is |(90 + 90) - (90 + 90)| = 0. In third sample there is only one piece of pizza that can be taken by only one from Vasya and Petya. So the answer is |360 - 0| = 360. In fourth sample Vasya can take 1 and 4 pieces, then Pety...
500
[ { "input": "4\n90 90 90 90", "output": "0" }, { "input": "3\n100 100 160", "output": "40" }, { "input": "1\n360", "output": "360" }, { "input": "4\n170 30 150 10", "output": "0" }, { "input": "5\n10 10 10 10 320", "output": "280" }, { "input": "8\n45 4...
1,511,875,662
2,147,483,647
Python 3
OK
TESTS
93
202
6,348,800
# -*- coding: utf-8 -*- """ Created on Mon Nov 27 22:34:44 2017 @author: rohit """ n = int(input()) a = [int(x) for x in input().split()]+[0] Tot = sum(a) B = 360 lena = len(a)-1 for i in range(0,lena): for j in range(i+1,lena): P = abs(Tot-2*sum(a[i:j])) if P<B: B = P ...
Title: Pizza Separation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Students Vasya and Petya are studying at the BSU (Byteland State University). At one of the breaks they decided to order a pizza. In this problem pizza is a circle of some radius. The pizza was delivered already cut in...
```python # -*- coding: utf-8 -*- """ Created on Mon Nov 27 22:34:44 2017 @author: rohit """ n = int(input()) a = [int(x) for x in input().split()]+[0] Tot = sum(a) B = 360 lena = len(a)-1 for i in range(0,lena): for j in range(i+1,lena): P = abs(Tot-2*sum(a[i:j])) if P<B: ...
3
255
A
Greg's Workout
PROGRAMMING
800
[ "implementation" ]
null
null
Greg is a beginner bodybuilder. Today the gym coach gave him the training plan. All it had was *n* integers *a*1,<=*a*2,<=...,<=*a**n*. These numbers mean that Greg needs to do exactly *n* exercises today. Besides, Greg should repeat the *i*-th in order exercise *a**i* times. Greg now only does three types of exercise...
The first line contains integer *n* (1<=≀<=*n*<=≀<=20). The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≀<=*a**i*<=≀<=25) β€” the number of times Greg repeats the exercises.
Print word "chest" (without the quotes), if the chest gets the most exercise, "biceps" (without the quotes), if the biceps gets the most exercise and print "back" (without the quotes) if the back gets the most exercise. It is guaranteed that the input is such that the answer to the problem is unambiguous.
[ "2\n2 8\n", "3\n5 1 10\n", "7\n3 3 2 7 9 6 8\n" ]
[ "biceps\n", "back\n", "chest\n" ]
In the first sample Greg does 2 chest, 8 biceps and zero back exercises, so the biceps gets the most exercises. In the second sample Greg does 5 chest, 1 biceps and 10 back exercises, so the back gets the most exercises. In the third sample Greg does 18 chest, 12 biceps and 8 back exercises, so the chest gets the mos...
500
[ { "input": "2\n2 8", "output": "biceps" }, { "input": "3\n5 1 10", "output": "back" }, { "input": "7\n3 3 2 7 9 6 8", "output": "chest" }, { "input": "4\n5 6 6 2", "output": "chest" }, { "input": "5\n8 2 2 6 3", "output": "chest" }, { "input": "6\n8 7 ...
1,698,331,537
2,147,483,647
Python 3
OK
TESTS
61
92
0
n = int(input()) exercise_counts = list(map(int, input().split())) chest_count = 0 biceps_count = 0 back_count = 0 for i in range(n): if i % 3 == 0: chest_count += exercise_counts[i] elif i % 3 == 1: biceps_count += exercise_counts[i] else: back_count += exercise_count...
Title: Greg's Workout Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greg is a beginner bodybuilder. Today the gym coach gave him the training plan. All it had was *n* integers *a*1,<=*a*2,<=...,<=*a**n*. These numbers mean that Greg needs to do exactly *n* exercises today. Besides, Greg ...
```python n = int(input()) exercise_counts = list(map(int, input().split())) chest_count = 0 biceps_count = 0 back_count = 0 for i in range(n): if i % 3 == 0: chest_count += exercise_counts[i] elif i % 3 == 1: biceps_count += exercise_counts[i] else: back_count += exer...
3
357
A
Group of Students
PROGRAMMING
1,000
[ "brute force", "greedy", "implementation" ]
null
null
At the beginning of the school year Berland State University starts two city school programming groups, for beginners and for intermediate coders. The children were tested in order to sort them into groups. According to the results, each student got some score from 1 to *m* points. We know that *c*1 schoolchildren got ...
The first line contains integer *m* (2<=≀<=*m*<=≀<=100). The second line contains *m* integers *c*1, *c*2, ..., *c**m*, separated by single spaces (0<=≀<=*c**i*<=≀<=100). The third line contains two space-separated integers *x* and *y* (1<=≀<=*x*<=≀<=*y*<=≀<=10000). At least one *c**i* is greater than 0.
If it is impossible to pick a passing rate in a way that makes the size of each resulting groups at least *x* and at most *y*, print 0. Otherwise, print an integer from 1 to *m* β€” the passing rate you'd like to suggest. If there are multiple possible answers, print any of them.
[ "5\n3 4 3 2 1\n6 8\n", "5\n0 3 3 4 2\n3 10\n", "2\n2 5\n3 6\n" ]
[ "3\n", "4\n", "0\n" ]
In the first sample the beginner group has 7 students, the intermediate group has 6 of them. In the second sample another correct answer is 3.
500
[ { "input": "5\n3 4 3 2 1\n6 8", "output": "3" }, { "input": "5\n0 3 3 4 2\n3 10", "output": "4" }, { "input": "2\n2 5\n3 6", "output": "0" }, { "input": "3\n0 1 0\n2 10", "output": "0" }, { "input": "5\n2 2 2 2 2\n5 5", "output": "0" }, { "input": "10\...
1,582,389,481
2,147,483,647
Python 3
OK
TESTS
58
124
0
m = int(input()) c = [int(c) for c in input().split()] x, y = map(int, input().split()) tot = sum(c) _sum = 0 for i in range(m): _sum += c[i] if x <= _sum <= y and x <= tot - _sum <= y: print(i+2) break else: print('0')
Title: Group of Students Time Limit: None seconds Memory Limit: None megabytes Problem Description: At the beginning of the school year Berland State University starts two city school programming groups, for beginners and for intermediate coders. The children were tested in order to sort them into groups. According ...
```python m = int(input()) c = [int(c) for c in input().split()] x, y = map(int, input().split()) tot = sum(c) _sum = 0 for i in range(m): _sum += c[i] if x <= _sum <= y and x <= tot - _sum <= y: print(i+2) break else: print('0') ```
3
1,006
C
Three Parts of the Array
PROGRAMMING
1,200
[ "binary search", "data structures", "two pointers" ]
null
null
You are given an array $d_1, d_2, \dots, d_n$ consisting of $n$ integer numbers. Your task is to split this array into three parts (some of which may be empty) in such a way that each element of the array belongs to exactly one of the three parts, and each of the parts forms a consecutive contiguous subsegment (possib...
The first line of the input contains one integer $n$ ($1 \le n \le 2 \cdot 10^5$) β€” the number of elements in the array $d$. The second line of the input contains $n$ integers $d_1, d_2, \dots, d_n$ ($1 \le d_i \le 10^9$) β€” the elements of the array $d$.
Print a single integer β€” the maximum possible value of $sum_1$, considering that the condition $sum_1 = sum_3$ must be met. Obviously, at least one valid way to split the array exists (use $a=c=0$ and $b=n$).
[ "5\n1 3 1 1 4\n", "5\n1 3 2 1 4\n", "3\n4 1 2\n" ]
[ "5\n", "4\n", "0\n" ]
In the first example there is only one possible splitting which maximizes $sum_1$: $[1, 3, 1], [~], [1, 4]$. In the second example the only way to have $sum_1=4$ is: $[1, 3], [2, 1], [4]$. In the third example there is only one way to split the array: $[~], [4, 1, 2], [~]$.
0
[ { "input": "5\n1 3 1 1 4", "output": "5" }, { "input": "5\n1 3 2 1 4", "output": "4" }, { "input": "3\n4 1 2", "output": "0" }, { "input": "1\n1000000000", "output": "0" }, { "input": "2\n1 1", "output": "1" }, { "input": "5\n1 3 5 4 5", "output": ...
1,636,206,026
2,147,483,647
Python 3
OK
TESTS
27
155
22,425,600
import math def main_function(): n = int(input()) a = [int(i) for i in input().split(" ")] sum_1 = 0 sum_2 = 0 detected_sum = 0 i = 0 j = len(a) - 1 while True: if sum_1 == sum_2: detected_sum = sum_1 sum_1 += a[i] i += 1 ...
Title: Three Parts of the Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array $d_1, d_2, \dots, d_n$ consisting of $n$ integer numbers. Your task is to split this array into three parts (some of which may be empty) in such a way that each element of the array belo...
```python import math def main_function(): n = int(input()) a = [int(i) for i in input().split(" ")] sum_1 = 0 sum_2 = 0 detected_sum = 0 i = 0 j = len(a) - 1 while True: if sum_1 == sum_2: detected_sum = sum_1 sum_1 += a[i] ...
3
868
A
Bark to Unlock
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
As technologies develop, manufacturers are making the process of unlocking a phone as user-friendly as possible. To unlock its new phone, Arkady's pet dog Mu-mu has to bark the password once. The phone represents a password as a string of two lowercase English letters. Mu-mu's enemy Kashtanka wants to unlock Mu-mu's p...
The first line contains two lowercase English lettersΒ β€” the password on the phone. The second line contains single integer *n* (1<=≀<=*n*<=≀<=100)Β β€” the number of words Kashtanka knows. The next *n* lines contain two lowercase English letters each, representing the words Kashtanka knows. The words are guaranteed to b...
Print "YES" if Kashtanka can bark several words in a line forming a string containing the password, and "NO" otherwise. You can print each letter in arbitrary case (upper or lower).
[ "ya\n4\nah\noy\nto\nha\n", "hp\n2\nht\ntp\n", "ah\n1\nha\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first example the password is "ya", and Kashtanka can bark "oy" and then "ah", and then "ha" to form the string "oyahha" which contains the password. So, the answer is "YES". In the second example Kashtanka can't produce a string containing password as a substring. Note that it can bark "ht" and then "tp" produ...
250
[ { "input": "ya\n4\nah\noy\nto\nha", "output": "YES" }, { "input": "hp\n2\nht\ntp", "output": "NO" }, { "input": "ah\n1\nha", "output": "YES" }, { "input": "bb\n4\nba\nab\naa\nbb", "output": "YES" }, { "input": "bc\n4\nca\nba\nbb\ncc", "output": "YES" }, { ...
1,655,200,778
2,147,483,647
Python 3
OK
TESTS
90
46
0
password = input() n = int(input()) l = [] for i in range(n): l.append(input()) for i in l: for j in l: if password in i + j: print("YES") exit() print("NO")
Title: Bark to Unlock Time Limit: None seconds Memory Limit: None megabytes Problem Description: As technologies develop, manufacturers are making the process of unlocking a phone as user-friendly as possible. To unlock its new phone, Arkady's pet dog Mu-mu has to bark the password once. The phone represents a passw...
```python password = input() n = int(input()) l = [] for i in range(n): l.append(input()) for i in l: for j in l: if password in i + j: print("YES") exit() print("NO") ```
3
1,006
D
Two Strings Swaps
PROGRAMMING
1,700
[ "implementation" ]
null
null
You are given two strings $a$ and $b$ consisting of lowercase English letters, both of length $n$. The characters of both strings have indices from $1$ to $n$, inclusive. You are allowed to do the following changes: - Choose any index $i$ ($1 \le i \le n$) and swap characters $a_i$ and $b_i$; - Choose any index $...
The first line of the input contains one integer $n$ ($1 \le n \le 10^5$) β€” the length of strings $a$ and $b$. The second line contains the string $a$ consisting of exactly $n$ lowercase English letters. The third line contains the string $b$ consisting of exactly $n$ lowercase English letters.
Print a single integer β€” the minimum number of preprocess moves to apply before changes, so that it is possible to make the string $a$ equal to string $b$ with a sequence of changes from the list above.
[ "7\nabacaba\nbacabaa\n", "5\nzcabd\ndbacz\n" ]
[ "4\n", "0\n" ]
In the first example preprocess moves are as follows: $a_1 := $'b', $a_3 := $'c', $a_4 := $'a' and $a_5:=$'b'. Afterwards, $a = $"bbcabba". Then we can obtain equal strings by the following sequence of changes: $swap(a_2, b_2)$ and $swap(a_2, a_6)$. There is no way to use fewer than $4$ preprocess moves before a sequen...
0
[ { "input": "7\nabacaba\nbacabaa", "output": "4" }, { "input": "5\nzcabd\ndbacz", "output": "0" }, { "input": "1\na\nb", "output": "1" }, { "input": "5\nahmad\nyogaa", "output": "3" } ]
1,689,759,163
2,147,483,647
Python 3
OK
TESTS
23
77
512,000
n=int(input()) a=input() b=input() ans=0 if n%2!=0: if a[n//2]!=b[n//2]: ans+=1 for i in range(n//2): if b[i]==b[n-1-i]: if a[i]!=a[n-1-i]: ans+=1 continue if b[i]!=a[i] and b[i]!=a[n-1-i]: ans+=1 if b[n-1-i]!=a[i] and b[n-1-i]!=a[n-1-i]: ans+=1 print(...
Title: Two Strings Swaps Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two strings $a$ and $b$ consisting of lowercase English letters, both of length $n$. The characters of both strings have indices from $1$ to $n$, inclusive. You are allowed to do the following changes:...
```python n=int(input()) a=input() b=input() ans=0 if n%2!=0: if a[n//2]!=b[n//2]: ans+=1 for i in range(n//2): if b[i]==b[n-1-i]: if a[i]!=a[n-1-i]: ans+=1 continue if b[i]!=a[i] and b[i]!=a[n-1-i]: ans+=1 if b[n-1-i]!=a[i] and b[n-1-i]!=a[n-1-i]: ans...
3
978
B
File Name
PROGRAMMING
800
[ "greedy", "strings" ]
null
null
You can not just take the file and send it. When Polycarp trying to send a file in the social network "Codehorses", he encountered an unexpected problem. If the name of the file contains three or more "x" (lowercase Latin letters "x") in a row, the system considers that the file content does not correspond to the socia...
The first line contains integer $n$ $(3 \le n \le 100)$ β€” the length of the file name. The second line contains a string of length $n$ consisting of lowercase Latin letters only β€” the file name.
Print the minimum number of characters to remove from the file name so after that the name does not contain "xxx" as a substring. If initially the file name dost not contain a forbidden substring "xxx", print 0.
[ "6\nxxxiii\n", "5\nxxoxx\n", "10\nxxxxxxxxxx\n" ]
[ "1\n", "0\n", "8\n" ]
In the first example Polycarp tried to send a file with name contains number $33$, written in Roman numerals. But he can not just send the file, because it name contains three letters "x" in a row. To send the file he needs to remove any one of this letters.
0
[ { "input": "6\nxxxiii", "output": "1" }, { "input": "5\nxxoxx", "output": "0" }, { "input": "10\nxxxxxxxxxx", "output": "8" }, { "input": "100\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "output": "98" }, { ...
1,697,967,592
2,147,483,647
Python 3
OK
TESTS
13
46
0
n = int(input()) s = input() c = 0 cnt = 0 for i in s: if i == 'x': cnt += 1 else: cnt = 0 if cnt == 3: c += 1 cnt -= 1 print(c)
Title: File Name Time Limit: None seconds Memory Limit: None megabytes Problem Description: You can not just take the file and send it. When Polycarp trying to send a file in the social network "Codehorses", he encountered an unexpected problem. If the name of the file contains three or more "x" (lowercase Latin let...
```python n = int(input()) s = input() c = 0 cnt = 0 for i in s: if i == 'x': cnt += 1 else: cnt = 0 if cnt == 3: c += 1 cnt -= 1 print(c) ```
3
408
A
Line to Cashier
PROGRAMMING
900
[ "implementation" ]
null
null
Little Vasya went to the supermarket to get some groceries. He walked about the supermarket for a long time and got a basket full of products. Now he needs to choose the cashier to pay for the products. There are *n* cashiers at the exit from the supermarket. At the moment the queue for the *i*-th cashier already has ...
The first line contains integer *n* (1<=≀<=*n*<=≀<=100)Β β€” the number of cashes in the shop. The second line contains *n* space-separated integers: *k*1,<=*k*2,<=...,<=*k**n* (1<=≀<=*k**i*<=≀<=100), where *k**i* is the number of people in the queue to the *i*-th cashier. The *i*-th of the next *n* lines contains *k**i*...
Print a single integer β€” the minimum number of seconds Vasya needs to get to the cashier.
[ "1\n1\n1\n", "4\n1 4 3 2\n100\n1 2 2 3\n1 9 1\n7 8\n" ]
[ "20\n", "100\n" ]
In the second test sample, if Vasya goes to the first queue, he gets to the cashier in 100Β·5 + 15 = 515 seconds. But if he chooses the second queue, he will need 1Β·5 + 2Β·5 + 2Β·5 + 3Β·5 + 4Β·15 = 100 seconds. He will need 1Β·5 + 9Β·5 + 1Β·5 + 3Β·15 = 100 seconds for the third one and 7Β·5 + 8Β·5 + 2Β·15 = 105 seconds for the fou...
500
[ { "input": "1\n1\n1", "output": "20" }, { "input": "4\n1 4 3 2\n100\n1 2 2 3\n1 9 1\n7 8", "output": "100" }, { "input": "4\n5 4 5 5\n3 1 3 1 2\n3 1 1 3\n1 1 1 2 2\n2 2 1 1 3", "output": "100" }, { "input": "5\n5 3 6 6 4\n7 5 3 3 9\n6 8 2\n1 10 8 5 9 2\n9 7 8 5 9 10\n9 8 3 3"...
1,620,638,014
2,147,483,647
Python 3
OK
TESTS
20
62
6,758,400
n=int(input()) a=list(map(int,input().split())) b=[] for i in range(n): items=list(map(int,input().split())) t=sum(items)*5+len(items)*15 b.append(t) print(min(b))
Title: Line to Cashier Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Vasya went to the supermarket to get some groceries. He walked about the supermarket for a long time and got a basket full of products. Now he needs to choose the cashier to pay for the products. There are *n* c...
```python n=int(input()) a=list(map(int,input().split())) b=[] for i in range(n): items=list(map(int,input().split())) t=sum(items)*5+len(items)*15 b.append(t) print(min(b)) ```
3
41
A
Translation
PROGRAMMING
800
[ "implementation", "strings" ]
A. Translation
2
256
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc....
The first line contains word *s*, the second line contains word *t*. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
If the word *t* is a word *s*, written reversely, print YES, otherwise print NO.
[ "code\nedoc\n", "abb\naba\n", "code\ncode\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "code\nedoc", "output": "YES" }, { "input": "abb\naba", "output": "NO" }, { "input": "code\ncode", "output": "NO" }, { "input": "abacaba\nabacaba", "output": "YES" }, { "input": "q\nq", "output": "YES" }, { "input": "asrgdfngfnmfgnhweratgjkk...
1,680,707,603
2,147,483,647
Python 3
OK
TESTS
40
92
0
def main(): word1 = input() word2 = input() if(word2[::-1] == word1): return "YES" return "NO" print(main())
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python def main(): word1 = input() word2 = input() if(word2[::-1] == word1): return "YES" return "NO" print(main()) ```
3.977
78
B
Easter Eggs
PROGRAMMING
1,200
[ "constructive algorithms", "implementation" ]
B. Easter Eggs
2
256
The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: - Each of the seven colors should be used to paint at least one egg. - Any four eggs lying s...
The only line contains an integer *n* β€” the amount of eggs (7<=≀<=*n*<=≀<=100).
Print one line consisting of *n* characters. The *i*-th character should describe the color of the *i*-th egg in the order they lie in the circle. The colors should be represented as follows: "R" stands for red, "O" stands for orange, "Y" stands for yellow, "G" stands for green, "B" stands for blue, "I" stands for indi...
[ "8\n", "13\n" ]
[ "ROYGRBIV\n", "ROYGBIVGBIVYG\n" ]
The way the eggs will be painted in the first sample is shown on the picture:
1,000
[ { "input": "8", "output": "ROYGBIVG" }, { "input": "13", "output": "ROYGBIVOYGBIV" }, { "input": "7", "output": "ROYGBIV" }, { "input": "10", "output": "ROYGBIVYGB" }, { "input": "14", "output": "ROYGBIVROYGBIV" }, { "input": "50", "output": "ROYGB...
1,585,849,235
2,147,483,647
PyPy 3
OK
TESTS
34
528
512,000
import sys import bisect from collections import deque # from math import ceil,log,gcd,sqrt # sys.setrecursionlimit(10**9) RI = lambda : [int(x) for x in sys.stdin.readline().split()] ri = lambda : sys.stdin.readline().strip() def input(): return sys.stdin.readline().strip() def list2d(a, b, c): return [[c]...
Title: Easter Eggs Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: -...
```python import sys import bisect from collections import deque # from math import ceil,log,gcd,sqrt # sys.setrecursionlimit(10**9) RI = lambda : [int(x) for x in sys.stdin.readline().split()] ri = lambda : sys.stdin.readline().strip() def input(): return sys.stdin.readline().strip() def list2d(a, b, c): r...
3.867046
803
D
Magazine Ad
PROGRAMMING
1,900
[ "binary search", "greedy" ]
null
null
The main city magazine offers its readers an opportunity to publish their ads. The format of the ad should be like this: There are space-separated non-empty words of lowercase and uppercase Latin letters. There are hyphen characters '-' in some words, their positions set word wrapping points. Word can include more th...
The first line contains number *k* (1<=≀<=*k*<=≀<=105). The second line contains the text of the ad β€” non-empty space-separated words of lowercase and uppercase Latin letters and hyphens. Total length of the ad don't exceed 106 characters.
Output minimal width of the ad.
[ "4\ngarage for sa-le\n", "4\nEdu-ca-tion-al Ro-unds are so fun\n" ]
[ "7\n", "10\n" ]
Here all spaces are replaced with dots. In the first example one of possible results after all word wraps looks like this: The second example:
0
[ { "input": "4\ngarage for sa-le", "output": "7" }, { "input": "4\nEdu-ca-tion-al Ro-unds are so fun", "output": "10" }, { "input": "1\nj", "output": "1" }, { "input": "10\nb", "output": "1" }, { "input": "1\nQGVsfZevMD", "output": "10" }, { "input": "1...
1,643,299,148
2,147,483,647
PyPy 3-64
OK
TESTS
30
187
16,486,400
def isDone(a,maxl,maxr): s=0 row=1 for x in a: if x>maxl: return False if x+s<=maxl: s=s+x else: row+=1 s=x if(row>maxr): return False return True def minlen(a,maxr,l,r): ans=r while(l<=r): ...
Title: Magazine Ad Time Limit: None seconds Memory Limit: None megabytes Problem Description: The main city magazine offers its readers an opportunity to publish their ads. The format of the ad should be like this: There are space-separated non-empty words of lowercase and uppercase Latin letters. There are hyphen...
```python def isDone(a,maxl,maxr): s=0 row=1 for x in a: if x>maxl: return False if x+s<=maxl: s=s+x else: row+=1 s=x if(row>maxr): return False return True def minlen(a,maxr,l,r): ans=r while(l...
3
712
A
Memory and Crow
PROGRAMMING
800
[ "implementation", "math" ]
null
null
There are *n* integers *b*1,<=*b*2,<=...,<=*b**n* written in a row. For all *i* from 1 to *n*, values *a**i* are defined by the crows performing the following procedure: - The crow sets *a**i* initially 0. - The crow then adds *b**i* to *a**i*, subtracts *b**i*<=+<=1, adds the *b**i*<=+<=2 number, and so on until th...
The first line of the input contains a single integer *n* (2<=≀<=*n*<=≀<=100<=000)Β β€” the number of integers written in the row. The next line contains *n*, the *i*'th of which is *a**i* (<=-<=109<=≀<=*a**i*<=≀<=109)Β β€” the value of the *i*'th number.
Print *n* integers corresponding to the sequence *b*1,<=*b*2,<=...,<=*b**n*. It's guaranteed that the answer is unique and fits in 32-bit integer type.
[ "5\n6 -4 8 -2 3\n", "5\n3 -2 -1 5 6\n" ]
[ "2 4 6 1 3 \n", "1 -3 4 11 6 \n" ]
In the first sample test, the crows report the numbers 6, - 4, 8, - 2, and 3 when he starts at indices 1, 2, 3, 4 and 5 respectively. It is easy to check that the sequence 2 4 6 1 3 satisfies the reports. For example, 6 = 2 - 4 + 6 - 1 + 3, and  - 4 = 4 - 6 + 1 - 3. In the second sample test, the sequence 1,  - 3, 4, ...
500
[ { "input": "5\n6 -4 8 -2 3", "output": "2 4 6 1 3 " }, { "input": "5\n3 -2 -1 5 6", "output": "1 -3 4 11 6 " }, { "input": "10\n13 -2 532 -63 -23 -63 -64 -23 12 10", "output": "11 530 469 -86 -86 -127 -87 -11 22 10 " }, { "input": "10\n0 0 0 0 0 0 0 0 0 0", "output": "0 0...
1,543,533,494
2,147,483,647
Python 3
OK
TESTS
49
374
8,396,800
n=int(input()) a=list(map(int,input().split())) b=[0]*n sumi=0 for i in range(n-1,-1,-1): b[i]=a[i]+sumi sumi=-sumi+b[i] for p in b: print(p,end=" ")
Title: Memory and Crow Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* integers *b*1,<=*b*2,<=...,<=*b**n* written in a row. For all *i* from 1 to *n*, values *a**i* are defined by the crows performing the following procedure: - The crow sets *a**i* initially 0. - The crow...
```python n=int(input()) a=list(map(int,input().split())) b=[0]*n sumi=0 for i in range(n-1,-1,-1): b[i]=a[i]+sumi sumi=-sumi+b[i] for p in b: print(p,end=" ") ```
3
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=Γ—<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=Γ—<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* β€” board sizes in squares (1<=≀<=*M*<=≀<=*N*<=≀<=16).
Output one number β€” the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,619,759,796
2,147,483,647
Python 3
OK
TESTS
35
154
0
#q6 Domino piling def func6(): m,n=[int(x) for x in input().split()] print((m*n)//2) func6()
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=Γ—<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=Γ—<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python #q6 Domino piling def func6(): m,n=[int(x) for x in input().split()] print((m*n)//2) func6() ```
3.9615
794
A
Bank Robbery
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
A robber has attempted to rob a bank but failed to complete his task. However, he had managed to open all the safes. Oleg the bank client loves money (who doesn't), and decides to take advantage of this failed robbery and steal some money from the safes. There are many safes arranged in a line, where the *i*-th safe f...
The first line of input contains three space-separated integers, *a*, *b* and *c* (1<=≀<=*b*<=&lt;<=*a*<=&lt;<=*c*<=≀<=109), denoting the positions of Oleg, the first security guard and the second security guard, respectively. The next line of input contains a single integer *n* (1<=≀<=*n*<=≀<=105), denoting the numbe...
Output a single integer: the maximum number of banknotes Oleg can take.
[ "5 3 7\n8\n4 7 5 5 3 6 2 8\n", "6 5 7\n5\n1 5 7 92 3\n" ]
[ "4\n", "0\n" ]
In the first example Oleg can take the banknotes in positions 4, 5, 6 (note that there are 2 banknotes at position 5). Oleg can't take the banknotes in safes 7 and 8 because he can't run into the second security guard. Similarly, Oleg cannot take the banknotes at positions 3 and 2 because he can't run into the first se...
500
[ { "input": "5 3 7\n8\n4 7 5 5 3 6 2 8", "output": "4" }, { "input": "6 5 7\n5\n1 5 7 92 3", "output": "0" }, { "input": "3 2 4\n1\n3", "output": "1" }, { "input": "5 3 8\n12\n8 3 4 5 7 6 8 3 5 4 7 6", "output": "8" }, { "input": "7 3 10\n5\n3 3 3 3 3", "output...
1,513,995,081
2,147,483,647
Python 3
OK
TESTS
46
124
13,926,400
(a,b,c)= map(int , input().split()) n = int(input()) count = 0 bankNotes = list(map(int , input().split())) for i in range(n): if bankNotes[i]>b and bankNotes[i]<c: count+=1 print(count)
Title: Bank Robbery Time Limit: None seconds Memory Limit: None megabytes Problem Description: A robber has attempted to rob a bank but failed to complete his task. However, he had managed to open all the safes. Oleg the bank client loves money (who doesn't), and decides to take advantage of this failed robbery and...
```python (a,b,c)= map(int , input().split()) n = int(input()) count = 0 bankNotes = list(map(int , input().split())) for i in range(n): if bankNotes[i]>b and bankNotes[i]<c: count+=1 print(count) ```
3
433
A
Kitahara Haruki's Gift
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
Kitahara Haruki has bought *n* apples for Touma Kazusa and Ogiso Setsuna. Now he wants to divide all the apples between the friends. Each apple weights 100 grams or 200 grams. Of course Kitahara Haruki doesn't want to offend any of his friend. Therefore the total weight of the apples given to Touma Kazusa must be equa...
The first line contains an integer *n* (1<=≀<=*n*<=≀<=100) β€” the number of apples. The second line contains *n* integers *w*1,<=*w*2,<=...,<=*w**n* (*w**i*<==<=100 or *w**i*<==<=200), where *w**i* is the weight of the *i*-th apple.
In a single line print "YES" (without the quotes) if it is possible to divide all the apples between his friends. Otherwise print "NO" (without the quotes).
[ "3\n100 200 100\n", "4\n100 100 100 200\n" ]
[ "YES\n", "NO\n" ]
In the first test sample Kitahara Haruki can give the first and the last apple to Ogiso Setsuna and the middle apple to Touma Kazusa.
500
[ { "input": "3\n100 200 100", "output": "YES" }, { "input": "4\n100 100 100 200", "output": "NO" }, { "input": "1\n100", "output": "NO" }, { "input": "1\n200", "output": "NO" }, { "input": "2\n100 100", "output": "YES" }, { "input": "2\n200 200", "o...
1,698,153,215
2,147,483,647
Python 3
OK
TESTS
50
46
0
n=int(input()) arr=list(map(int,input().split())) count_100=arr.count(100) count_200=arr.count(200) if count_100 %2 ==0 and (count_200%2==0 or count_100>0): print("YES") else: print("NO")
Title: Kitahara Haruki's Gift Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kitahara Haruki has bought *n* apples for Touma Kazusa and Ogiso Setsuna. Now he wants to divide all the apples between the friends. Each apple weights 100 grams or 200 grams. Of course Kitahara Haruki doesn't w...
```python n=int(input()) arr=list(map(int,input().split())) count_100=arr.count(100) count_200=arr.count(200) if count_100 %2 ==0 and (count_200%2==0 or count_100>0): print("YES") else: print("NO") ```
3
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,697,454,786
2,147,483,647
PyPy 3-64
OK
TESTS
5
61
0
q = int(input()) if q==1: print(5) else: print(25)
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 q = int(input()) if q==1: print(5) else: print(25) ```
3
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,567,673,140
2,147,483,647
Python 3
OK
TESTS
36
389
20,787,200
n = int(input()) l = list(map(int,input().split())) l.sort() s = 0 for i in range(n): s += l[i] * (i + 2) print(s - l[-1])
Title: Appleman and Toastman Time Limit: None seconds Memory Limit: None megabytes Problem Description: Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all...
```python n = int(input()) l = list(map(int,input().split())) l.sort() s = 0 for i in range(n): s += l[i] * (i + 2) print(s - l[-1]) ```
3
659
C
Tanya and Toys
PROGRAMMING
1,200
[ "greedy", "implementation" ]
null
null
In Berland recently a new collection of toys went on sale. This collection consists of 109 types of toys, numbered with integers from 1 to 109. A toy from the new collection of the *i*-th type costs *i* bourles. Tania has managed to collect *n* different types of toys *a*1,<=*a*2,<=...,<=*a**n* from the new collection...
The first line contains two integers *n* (1<=≀<=*n*<=≀<=100<=000) and *m* (1<=≀<=*m*<=≀<=109)Β β€” the number of types of toys that Tanya already has and the number of bourles that her mom is willing to spend on buying new toys. The next line contains *n* distinct integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≀<=*a**i*<=≀<=109...
In the first line print a single integer *k*Β β€” the number of different types of toys that Tanya should choose so that the number of different types of toys in her collection is maximum possible. Of course, the total cost of the selected toys should not exceed *m*. In the second line print *k* distinct space-separated ...
[ "3 7\n1 3 4\n", "4 14\n4 6 12 8\n" ]
[ "2\n2 5 \n", "4\n7 2 3 1\n" ]
In the first sample mom should buy two toys: one toy of the 2-nd type and one toy of the 5-th type. At any other purchase for 7 bourles (assuming that the toys of types 1, 3 and 4 have already been bought), it is impossible to buy two and more toys.
1,000
[ { "input": "3 7\n1 3 4", "output": "2\n2 5 " }, { "input": "4 14\n4 6 12 8", "output": "4\n1 2 3 5 " }, { "input": "5 6\n97746 64770 31551 96547 65684", "output": "3\n1 2 3 " }, { "input": "10 10\n94125 56116 29758 94024 29289 31663 99794 35076 25328 58656", "output": "4\...
1,587,742,034
2,147,483,647
PyPy 3
OK
TESTS
61
295
14,131,200
# https://codeforces.com/problemset/problem/659/C n,m = map(int,input().split()) arr = list(map(int,input().split())) d = {} for i in arr: d[i] = 0 ans = [] i= 1 summ = sum(ans) while summ<m: # print(ans) if i not in d: if i+summ<=m: ans.append(i) summ+=i ...
Title: Tanya and Toys Time Limit: None seconds Memory Limit: None megabytes Problem Description: In Berland recently a new collection of toys went on sale. This collection consists of 109 types of toys, numbered with integers from 1 to 109. A toy from the new collection of the *i*-th type costs *i* bourles. Tania h...
```python # https://codeforces.com/problemset/problem/659/C n,m = map(int,input().split()) arr = list(map(int,input().split())) d = {} for i in arr: d[i] = 0 ans = [] i= 1 summ = sum(ans) while summ<m: # print(ans) if i not in d: if i+summ<=m: ans.append(i) summ...
3
136
A
Presents
PROGRAMMING
800
[ "implementation" ]
null
null
Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on this occasion he organized a New Year party at his place and invited *n* his friends there. If...
The first line contains one integer *n* (1<=≀<=*n*<=≀<=100) β€” the quantity of friends Petya invited to the party. The second line contains *n* space-separated integers: the *i*-th number is *p**i* β€” the number of a friend who gave a gift to friend number *i*. It is guaranteed that each friend received exactly one gift....
Print *n* space-separated integers: the *i*-th number should equal the number of the friend who gave a gift to friend number *i*.
[ "4\n2 3 4 1\n", "3\n1 3 2\n", "2\n1 2\n" ]
[ "4 1 2 3\n", "1 3 2\n", "1 2\n" ]
none
500
[ { "input": "4\n2 3 4 1", "output": "4 1 2 3" }, { "input": "3\n1 3 2", "output": "1 3 2" }, { "input": "2\n1 2", "output": "1 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 3 2 6 4 5 7 9 8 10", "output": "1 3 2 5 6 4 7 9 8 10" }, { "input"...
1,690,295,169
2,147,483,647
Python 3
OK
TESTS
101
92
0
n = int(input()) a1 = [int(x) for x in input().split()] a2 = [0] * n for i in range(1, n + 1): a2[a1[i-1]-1] = i print(*a2)
Title: Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on t...
```python n = int(input()) a1 = [int(x) for x in input().split()] a2 = [0] * n for i in range(1, n + 1): a2[a1[i-1]-1] = i print(*a2) ```
3
556
A
Case of the Zeros and Ones
PROGRAMMING
900
[ "greedy" ]
null
null
Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Consider the following operation: we choose any two adjacent positions in the string, and if one them contains 0, an...
First line of the input contains a single integer *n* (1<=≀<=*n*<=≀<=2Β·105), the length of the string that Andreid has. The second line contains the string of length *n* consisting only from zeros and ones.
Output the minimum length of the string that may remain after applying the described operations several times.
[ "4\n1100\n", "5\n01010\n", "8\n11101111\n" ]
[ "0\n", "1\n", "6\n" ]
In the first sample test it is possible to change the string like the following: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/10df55364c21c6e8d5da31b6ab6f6294c4fc26b3.png" style="max-width: 100.0%;max-height: 100.0%;"/>. In the second sample test it is possible to change the string like...
250
[ { "input": "4\n1100", "output": "0" }, { "input": "5\n01010", "output": "1" }, { "input": "8\n11101111", "output": "6" }, { "input": "1\n0", "output": "1" }, { "input": "1\n1", "output": "1" }, { "input": "2\n00", "output": "2" }, { "input"...
1,683,987,717
2,147,483,647
PyPy 3
OK
TESTS
49
93
4,300,800
import sys, os, io input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline n = int(input()) s = list(input().rstrip()) cnt = [0] * 2 for i in s: cnt[i & 1] += 1 ans = abs(cnt[0] - cnt[1]) print(ans)
Title: Case of the Zeros and Ones Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Cons...
```python import sys, os, io input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline n = int(input()) s = list(input().rstrip()) cnt = [0] * 2 for i in s: cnt[i & 1] += 1 ans = abs(cnt[0] - cnt[1]) print(ans) ```
3
979
C
Kuro and Walking Route
PROGRAMMING
1,600
[ "dfs and similar", "trees" ]
null
null
Kuro is living in a country called Uberland, consisting of $n$ towns, numbered from $1$ to $n$, and $n - 1$ bidirectional roads connecting these towns. It is possible to reach each town from any other. Each road connects two towns $a$ and $b$. Kuro loves walking and he is planning to take a walking marathon, in which h...
The first line contains three integers $n$, $x$ and $y$ ($1 \leq n \leq 3 \cdot 10^5$, $1 \leq x, y \leq n$, $x \ne y$) - the number of towns, index of the town Flowrisa and index of the town Beetopia, respectively. $n - 1$ lines follow, each line contains two integers $a$ and $b$ ($1 \leq a, b \leq n$, $a \ne b$), de...
A single integer resembles the number of pair of towns $(u, v)$ that Kuro can use as his walking route.
[ "3 1 3\n1 2\n2 3\n", "3 1 3\n1 2\n1 3\n" ]
[ "5", "4" ]
On the first example, Kuro can choose these pairs: - $(1, 2)$: his route would be $1 \rightarrow 2$, - $(2, 3)$: his route would be $2 \rightarrow 3$, - $(3, 2)$: his route would be $3 \rightarrow 2$, - $(2, 1)$: his route would be $2 \rightarrow 1$, - $(3, 1)$: his route would be $3 \rightarrow 2 \rightarrow 1$...
1,250
[ { "input": "3 1 3\n1 2\n2 3", "output": "5" }, { "input": "3 1 3\n1 2\n1 3", "output": "4" }, { "input": "61 26 12\n33 38\n32 8\n27 59\n1 21\n61 57\n61 22\n35 18\n61 14\n39 56\n50 10\n1 42\n21 43\n61 41\n31 30\n35 9\n23 28\n39 34\n39 4\n39 25\n27 60\n45 51\n1 11\n35 26\n29 15\n23 44\n31 ...
1,646,878,480
2,147,483,647
Python 3
OK
TESTS
71
1,232
33,587,200
import sys input = sys.stdin.readline def solve(n, x, y, graph): def dfs(x, y): stack = [x] visited = {x} while stack: node = stack.pop() for nei in graph[node]: if nei != y and nei not in visited: stack.append(nei) ...
Title: Kuro and Walking Route Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kuro is living in a country called Uberland, consisting of $n$ towns, numbered from $1$ to $n$, and $n - 1$ bidirectional roads connecting these towns. It is possible to reach each town from any other. Each road ...
```python import sys input = sys.stdin.readline def solve(n, x, y, graph): def dfs(x, y): stack = [x] visited = {x} while stack: node = stack.pop() for nei in graph[node]: if nei != y and nei not in visited: stack.append(nei) ...
3
784
G
BF Calculator
PROGRAMMING
2,000
[ "*special" ]
null
null
In this problem you will write a simple generator of Brainfuck ([https://en.wikipedia.org/wiki/Brainfuck](https://en.wikipedia.org/wiki/Brainfuck)) calculators. You are given an arithmetic expression consisting of integers from 0 to 255 and addition/subtraction signs between them. Output a Brainfuck program which, whe...
The only line of input data contains the arithmetic expression. The expression will contain between 2 and 10 operands, separated with arithmetic signs plus and/or minus. Each operand will be an integer between 0 and 255, inclusive. The calculations result is guaranteed to be an integer between 0 and 255, inclusive (res...
Output a Brainfuck program which, when executed, will print the result of evaluating this expression. The program must be at most 5000000 characters long (including the non-command characters), and its execution must be complete in at most 50000000 steps.
[ "2+3\n", "9-7\n" ]
[ "++&gt;\n+++&gt;\n&lt;[&lt;+&gt;-]&lt;\n++++++++++++++++++++++++++++++++++++++++++++++++.\n", "+++++++++&gt;\n+++++++&gt;\n&lt;[&lt;-&gt;-]&lt;\n++++++++++++++++++++++++++++++++++++++++++++++++.\n" ]
You can download the source code of the Brainfuck interpreter by the link [http://assets.codeforces.com/rounds/784/bf.cpp](//assets.codeforces.com/rounds/784/bf.cpp). We use this code to interpret outputs.
0
[ { "input": "2+3", "output": "+++++++++++++++++++++++++++++++++++++++++++++++++++++.>" }, { "input": "9-7", "output": "++++++++++++++++++++++++++++++++++++++++++++++++++.>" }, { "input": "1+1+1", "output": "+++++++++++++++++++++++++++++++++++++++++++++++++++.>" }, { "input": "...
1,692,432,511
2,147,483,647
PyPy 3-64
OK
TESTS
20
62
0
from sys import stdin,stdout # from os import _exit # from bisect import bisect_left,bisect # from heapq import heapify,heappop,heappush # from sys import setrecursionlimit # from collections import defaultdict,Counter # from itertools import permutations # from math import gcd,ceil,sqrt,factorial # setrecursio...
Title: BF Calculator Time Limit: None seconds Memory Limit: None megabytes Problem Description: In this problem you will write a simple generator of Brainfuck ([https://en.wikipedia.org/wiki/Brainfuck](https://en.wikipedia.org/wiki/Brainfuck)) calculators. You are given an arithmetic expression consisting of intege...
```python from sys import stdin,stdout # from os import _exit # from bisect import bisect_left,bisect # from heapq import heapify,heappop,heappush # from sys import setrecursionlimit # from collections import defaultdict,Counter # from itertools import permutations # from math import gcd,ceil,sqrt,factorial # s...
3
796
D
Police Stations
PROGRAMMING
2,100
[ "constructive algorithms", "dfs and similar", "dp", "graphs", "shortest paths", "trees" ]
null
null
Inzane finally found Zane with a lot of money to spare, so they together decided to establish a country of their own. Ruling a country is not an easy job. Thieves and terrorists are always ready to ruin the country's peace. To fight back, Zane and Inzane have enacted a very effective law: from each city it must be pos...
The first line contains three integers *n*, *k*, and *d* (2<=≀<=*n*<=≀<=3Β·105, 1<=≀<=*k*<=≀<=3Β·105, 0<=≀<=*d*<=≀<=*n*<=-<=1)Β β€” the number of cities, the number of police stations, and the distance limitation in kilometers, respectively. The second line contains *k* integers *p*1,<=*p*2,<=...,<=*p**k* (1<=≀<=*p**i*<=≀<...
In the first line, print one integer *s* that denotes the maximum number of roads that can be shut down. In the second line, print *s* distinct integers, the indices of such roads, in any order. If there are multiple answers, print any of them.
[ "6 2 4\n1 6\n1 2\n2 3\n3 4\n4 5\n5 6\n", "6 3 2\n1 5 6\n1 2\n1 3\n1 4\n1 5\n5 6\n" ]
[ "1\n5\n", "2\n4 5 " ]
In the first sample, if you shut down road 5, all cities can still reach a police station within *k* = 4 kilometers. In the second sample, although this is the only largest valid set of roads that can be shut down, you can print either 4 5 or 5 4 in the second line.
1,500
[ { "input": "6 2 4\n1 6\n1 2\n2 3\n3 4\n4 5\n5 6", "output": "1\n3 " }, { "input": "6 3 2\n1 5 6\n1 2\n1 3\n1 4\n1 5\n5 6", "output": "2\n4 5 " }, { "input": "10 1 5\n5\n1 2\n2 3\n3 4\n4 5\n5 6\n6 7\n7 8\n8 9\n9 10", "output": "0" }, { "input": "11 1 5\n6\n1 2\n2 3\n3 4\n4 5\n...
1,584,961,082
2,147,483,647
PyPy 3
OK
TESTS
135
1,824
98,508,800
import os, sys, bisect, copy from collections import defaultdict, Counter, deque from functools import lru_cache #use @lru_cache(None) if os.path.exists('in.txt'): sys.stdin=open('in.txt','r') if os.path.exists('out.txt'): sys.stdout=open('out.txt', 'w') # def input(): return sys.stdin.readline() def mapi(arg=...
Title: Police Stations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Inzane finally found Zane with a lot of money to spare, so they together decided to establish a country of their own. Ruling a country is not an easy job. Thieves and terrorists are always ready to ruin the country's p...
```python import os, sys, bisect, copy from collections import defaultdict, Counter, deque from functools import lru_cache #use @lru_cache(None) if os.path.exists('in.txt'): sys.stdin=open('in.txt','r') if os.path.exists('out.txt'): sys.stdout=open('out.txt', 'w') # def input(): return sys.stdin.readline() def...
3
785
A
Anton and Polyhedrons
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Anton's favourite geometric figures are regular polyhedrons. Note that there are five kinds of regular polyhedrons: - Tetrahedron. Tetrahedron has 4 triangular faces. - Cube. Cube has 6 square faces. - Octahedron. Octahedron has 8 triangular faces. - Dodecahedron. Dodecahedron has 12 pentagonal faces. - Icosahed...
The first line of the input contains a single integer *n* (1<=≀<=*n*<=≀<=200<=000)Β β€” the number of polyhedrons in Anton's collection. Each of the following *n* lines of the input contains a string *s**i*Β β€” the name of the *i*-th polyhedron in Anton's collection. The string can look like this: - "Tetrahedron" (withou...
Output one numberΒ β€” the total number of faces in all the polyhedrons in Anton's collection.
[ "4\nIcosahedron\nCube\nTetrahedron\nDodecahedron\n", "3\nDodecahedron\nOctahedron\nOctahedron\n" ]
[ "42\n", "28\n" ]
In the first sample Anton has one icosahedron, one cube, one tetrahedron and one dodecahedron. Icosahedron has 20 faces, cube has 6 faces, tetrahedron has 4 faces and dodecahedron has 12 faces. In total, they have 20 + 6 + 4 + 12 = 42 faces.
500
[ { "input": "4\nIcosahedron\nCube\nTetrahedron\nDodecahedron", "output": "42" }, { "input": "3\nDodecahedron\nOctahedron\nOctahedron", "output": "28" }, { "input": "25\nIcosahedron\nOctahedron\nTetrahedron\nDodecahedron\nCube\nIcosahedron\nOctahedron\nCube\nTetrahedron\nIcosahedron\nIcosa...
1,677,887,289
2,147,483,647
PyPy 3-64
OK
TESTS
30
1,466
20,684,800
# Tetrahedron. Tetrahedron has 4 triangular faces. # Cube. Cube has 6 square faces. # Octahedron. Octahedron has 8 triangular faces. # Dodecahedron. Dodecahedron has 12 pentagonal faces. # Icosahedron. Icosahedron has 20 triangular faces. class Solution(): MAPPING = { "cube": 6, "tetrahedron": 4, "o...
Title: Anton and Polyhedrons Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anton's favourite geometric figures are regular polyhedrons. Note that there are five kinds of regular polyhedrons: - Tetrahedron. Tetrahedron has 4 triangular faces. - Cube. Cube has 6 square faces. - Octahe...
```python # Tetrahedron. Tetrahedron has 4 triangular faces. # Cube. Cube has 6 square faces. # Octahedron. Octahedron has 8 triangular faces. # Dodecahedron. Dodecahedron has 12 pentagonal faces. # Icosahedron. Icosahedron has 20 triangular faces. class Solution(): MAPPING = { "cube": 6, "tetrahedron"...
3
476
B
Dreamoon and WiFi
PROGRAMMING
1,300
[ "bitmasks", "brute force", "combinatorics", "dp", "math", "probabilities" ]
null
null
Dreamoon is standing at the position 0 on a number line. Drazil is sending a list of commands through Wi-Fi to Dreamoon's smartphone and Dreamoon follows them. Each command is one of the following two types: 1. Go 1 unit towards the positive direction, denoted as '+' 1. Go 1 unit towards the negative direction, de...
The first line contains a string *s*1 β€” the commands Drazil sends to Dreamoon, this string consists of only the characters in the set {'+', '-'}. The second line contains a string *s*2 β€” the commands Dreamoon's smartphone recognizes, this string consists of only the characters in the set {'+', '-', '?'}. '?' denotes ...
Output a single real number corresponding to the probability. The answer will be considered correct if its relative or absolute error doesn't exceed 10<=-<=9.
[ "++-+-\n+-+-+\n", "+-+-\n+-??\n", "+++\n??-\n" ]
[ "1.000000000000\n", "0.500000000000\n", "0.000000000000\n" ]
For the first sample, both *s*<sub class="lower-index">1</sub> and *s*<sub class="lower-index">2</sub> will lead Dreamoon to finish at the same position  + 1. For the second sample, *s*<sub class="lower-index">1</sub> will lead Dreamoon to finish at position 0, while there are four possibilites for *s*<sub class="low...
1,500
[ { "input": "++-+-\n+-+-+", "output": "1.000000000000" }, { "input": "+-+-\n+-??", "output": "0.500000000000" }, { "input": "+++\n??-", "output": "0.000000000000" }, { "input": "++++++++++\n+++??++?++", "output": "0.125000000000" }, { "input": "--+++---+-\n????????...
1,685,081,622
2,147,483,647
Python 3
OK
TESTS
31
46
409,600
import operator as op from functools import reduce def ncr(n, r): r = min(r, n-r) numer = reduce(op.mul, range(n, n-r, -1), 1) denom = reduce(op.mul, range(1, r+1), 1) return numer // denom # or / in Python 2 def cq(lst): return lst.count('?') def cp(lst): return lst.count('+') d...
Title: Dreamoon and WiFi Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dreamoon is standing at the position 0 on a number line. Drazil is sending a list of commands through Wi-Fi to Dreamoon's smartphone and Dreamoon follows them. Each command is one of the following two types: 1. Go...
```python import operator as op from functools import reduce def ncr(n, r): r = min(r, n-r) numer = reduce(op.mul, range(n, n-r, -1), 1) denom = reduce(op.mul, range(1, r+1), 1) return numer // denom # or / in Python 2 def cq(lst): return lst.count('?') def cp(lst): return lst.cou...
3
99
A
Help Far Away Kingdom
PROGRAMMING
800
[ "strings" ]
A. Help Far Away Kingdom
2
256
In a far away kingdom lived the King, the Prince, the Shoemaker, the Dressmaker and many other citizens. They lived happily until great trouble came into the Kingdom. The ACMers settled there. Most damage those strange creatures inflicted upon the kingdom was that they loved high precision numbers. As a result, the Ki...
The first line contains a single number to round up β€” the integer part (a non-empty set of decimal digits that do not start with 0 β€” with the exception of a case when the set consists of a single digit β€” in this case 0 can go first), then follows character Β«.Β» (a dot), and then follows the fractional part (any non-empt...
If the last number of the integer part is not equal to 9, print the rounded-up number without leading zeroes. Otherwise, print the message "GOTO Vasilisa." (without the quotes).
[ "0.0\n", "1.49\n", "1.50\n", "2.71828182845904523536\n", "3.14159265358979323846\n", "12345678901234567890.1\n", "123456789123456789.999\n" ]
[ "0", "1", "2", "3", "3", "12345678901234567890", "GOTO Vasilisa." ]
none
500
[ { "input": "0.0", "output": "0" }, { "input": "1.49", "output": "1" }, { "input": "1.50", "output": "2" }, { "input": "2.71828182845904523536", "output": "3" }, { "input": "3.14159265358979323846", "output": "3" }, { "input": "12345678901234567890.1", ...
1,681,305,686
2,147,483,647
PyPy 3-64
OK
TESTS
150
154
0
def help_far_away_kingdom(num:int): integer, decimal = num.split(".") integer = int(integer) if integer % 10 == 9 : return "GOTO Vasilisa." if int(decimal[0] ) < 5 : return integer return integer + 1 if __name__ == "__main__": # n = int(input()) # ...
Title: Help Far Away Kingdom Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: In a far away kingdom lived the King, the Prince, the Shoemaker, the Dressmaker and many other citizens. They lived happily until great trouble came into the Kingdom. The ACMers settled there. Most damage those stran...
```python def help_far_away_kingdom(num:int): integer, decimal = num.split(".") integer = int(integer) if integer % 10 == 9 : return "GOTO Vasilisa." if int(decimal[0] ) < 5 : return integer return integer + 1 if __name__ == "__main__": # n = int(input()) ...
3.9615
902
B
Coloring a Tree
PROGRAMMING
1,200
[ "dfs and similar", "dsu", "greedy" ]
null
null
You are given a rooted tree with *n* vertices. The vertices are numbered from 1 to *n*, the root is the vertex number 1. Each vertex has a color, let's denote the color of vertex *v* by *c**v*. Initially *c**v*<==<=0. You have to color the tree into the given colors using the smallest possible number of steps. On eac...
The first line contains a single integer *n* (2<=≀<=*n*<=≀<=104)Β β€” the number of vertices in the tree. The second line contains *n*<=-<=1 integers *p*2,<=*p*3,<=...,<=*p**n* (1<=≀<=*p**i*<=&lt;<=*i*), where *p**i* means that there is an edge between vertices *i* and *p**i*. The third line contains *n* integers *c*1,<...
Print a single integerΒ β€” the minimum number of steps you have to perform to color the tree into given colors.
[ "6\n1 2 2 1 5\n2 1 1 1 1 1\n", "7\n1 1 2 3 1 4\n3 3 1 1 1 2 3\n" ]
[ "3\n", "5\n" ]
The tree from the first sample is shown on the picture (numbers are vetices' indices): <img class="tex-graphics" src="https://espresso.codeforces.com/10324ccdc37f95343acc4f3c6050d8c334334ffa.png" style="max-width: 100.0%;max-height: 100.0%;"/> On first step we color all vertices in the subtree of vertex 1 into color ...
1,000
[ { "input": "6\n1 2 2 1 5\n2 1 1 1 1 1", "output": "3" }, { "input": "7\n1 1 2 3 1 4\n3 3 1 1 1 2 3", "output": "5" }, { "input": "2\n1\n2 2", "output": "1" }, { "input": "3\n1 1\n2 2 2", "output": "1" }, { "input": "4\n1 2 1\n1 2 3 4", "output": "4" }, { ...
1,595,929,577
2,147,483,647
Python 3
OK
TESTS
50
109
7,987,200
n = int(input()) p = [1] + list(map(int, input().split())) c = list(map(int, input().split())) ans = 1 for i in range(n): if(c[i]!=c[p[i]-1]): ans+=1 print(ans)
Title: Coloring a Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a rooted tree with *n* vertices. The vertices are numbered from 1 to *n*, the root is the vertex number 1. Each vertex has a color, let's denote the color of vertex *v* by *c**v*. Initially *c**v*<==<=0. ...
```python n = int(input()) p = [1] + list(map(int, input().split())) c = list(map(int, input().split())) ans = 1 for i in range(n): if(c[i]!=c[p[i]-1]): ans+=1 print(ans) ```
3
106
A
Card Game
PROGRAMMING
1,000
[ "implementation" ]
A. Card Game
2
256
There is a card game called "Durak", which means "Fool" in Russian. The game is quite popular in the countries that used to form USSR. The problem does not state all the game's rules explicitly β€” you can find them later yourselves if you want. To play durak you need a pack of 36 cards. Each card has a suit ("S", "H", ...
The first line contains the tramp suit. It is "S", "H", "D" or "C". The second line contains the description of the two different cards. Each card is described by one word consisting of two symbols. The first symbol stands for the rank ("6", "7", "8", "9", "T", "J", "Q", "K" and "A"), and the second one stands for the...
Print "YES" (without the quotes) if the first cards beats the second one. Otherwise, print "NO" (also without the quotes).
[ "H\nQH 9S\n", "S\n8D 6D\n", "C\n7H AS\n" ]
[ "YES\n", "YES", "NO" ]
none
500
[ { "input": "H\nQH 9S", "output": "YES" }, { "input": "S\n8D 6D", "output": "YES" }, { "input": "C\n7H AS", "output": "NO" }, { "input": "C\nKC 9C", "output": "YES" }, { "input": "D\n7D KD", "output": "NO" }, { "input": "H\n7H KD", "output": "YES" ...
1,652,374,204
304
Python 3
OK
TESTS
78
122
0
di = {'6': 1, '7': 2, '8': 3, '9': 4, 'T': 5, 'J': 6, 'Q': 7, 'K': 8, 'A': 9} t = input() c1, c2 = input().split() if (c1[1] == c2[1]): if (di[c1[0]] > di[c2[0]]): print('YES') else: print('NO') else: if (c1[1] == t): print('YES') else: print('NO')
Title: Card Game Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: There is a card game called "Durak", which means "Fool" in Russian. The game is quite popular in the countries that used to form USSR. The problem does not state all the game's rules explicitly β€” you can find them later yourselve...
```python di = {'6': 1, '7': 2, '8': 3, '9': 4, 'T': 5, 'J': 6, 'Q': 7, 'K': 8, 'A': 9} t = input() c1, c2 = input().split() if (c1[1] == c2[1]): if (di[c1[0]] > di[c2[0]]): print('YES') else: print('NO') else: if (c1[1] == t): print('YES') else: print('NO')...
3.9695
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,500,644,895
2,147,483,647
Python 3
OK
TESTS
34
124
4,608,000
n = int(input().strip()) ll = [0] * 2 ll1 = [] for i in range(n): k = input().strip() if k not in ll1: ll1.append(k) for j in range(2): if ll1[j] == k: ll[j] += 1 break if ll[0] > ll[1]: print(ll1[0]) else: print(ll1[1])
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().strip()) ll = [0] * 2 ll1 = [] for i in range(n): k = input().strip() if k not in ll1: ll1.append(k) for j in range(2): if ll1[j] == k: ll[j] += 1 break if ll[0] > ll[1]: print(ll1[0]) else: print(ll1[1]) ```
3.960417
439
B
Devu, the Dumb Guy
PROGRAMMING
1,200
[ "implementation", "sortings" ]
null
null
Devu is a dumb guy, his learning curve is very slow. You are supposed to teach him *n* subjects, the *i**th* subject has *c**i* chapters. When you teach him, you are supposed to teach all the chapters of a subject continuously. Let us say that his initial per chapter learning power of a subject is *x* hours. In other ...
The first line will contain two space separated integers *n*, *x* (1<=≀<=*n*,<=*x*<=≀<=105). The next line will contain *n* space separated integers: *c*1,<=*c*2,<=...,<=*c**n* (1<=≀<=*c**i*<=≀<=105).
Output a single integer representing the answer to the problem.
[ "2 3\n4 1\n", "4 2\n5 1 2 1\n", "3 3\n1 1 1\n" ]
[ "11\n", "10\n", "6\n" ]
Look at the first example. Consider the order of subjects: 1, 2. When you teach Devu the first subject, it will take him 3 hours per chapter, so it will take 12 hours to teach first subject. After teaching first subject, his per chapter learning time will be 2 hours. Now teaching him second subject will take 2 × 1 = 2 ...
1,000
[ { "input": "2 3\n4 1", "output": "11" }, { "input": "4 2\n5 1 2 1", "output": "10" }, { "input": "3 3\n1 1 1", "output": "6" }, { "input": "20 4\n1 1 3 5 5 1 3 4 2 5 2 4 3 1 3 3 3 3 4 3", "output": "65" }, { "input": "20 10\n6 6 1 2 6 4 5 3 6 5 4 5 6 5 4 6 6 2 3 3...
1,593,934,742
2,147,483,647
Python 3
OK
TESTS
31
202
14,438,400
n,x=map(int,input().split()) l=list(map(int,input().split())) l.sort() s=0 for i in range(n): s+=x*l[i] if(x>1): x-=1 print(s)
Title: Devu, the Dumb Guy Time Limit: None seconds Memory Limit: None megabytes Problem Description: Devu is a dumb guy, his learning curve is very slow. You are supposed to teach him *n* subjects, the *i**th* subject has *c**i* chapters. When you teach him, you are supposed to teach all the chapters of a subject co...
```python n,x=map(int,input().split()) l=list(map(int,input().split())) l.sort() s=0 for i in range(n): s+=x*l[i] if(x>1): x-=1 print(s) ```
3
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,696,088,455
2,147,483,647
PyPy 3
OK
TESTS
27
218
0
# Beautiful Year Difficulty:800 year = int(input()) + 1 while True: year_ = str(year) n = len(set(year_)) if len(year_) == n: print(year) break else: year += 1
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 # Beautiful Year Difficulty:800 year = int(input()) + 1 while True: year_ = str(year) n = len(set(year_)) if len(year_) == n: print(year) break else: year += 1 ```
3
651
A
Joysticks
PROGRAMMING
1,100
[ "dp", "greedy", "implementation", "math" ]
null
null
Friends are going to play console. They have two joysticks and only one charger for them. Initially first joystick is charged at *a*1 percent and second one is charged at *a*2 percent. You can connect charger to a joystick only at the beginning of each minute. In one minute joystick either discharges by 2 percent (if n...
The first line of the input contains two positive integers *a*1 and *a*2 (1<=≀<=*a*1,<=*a*2<=≀<=100), the initial charge level of first and second joystick respectively.
Output the only integer, the maximum number of minutes that the game can last. Game continues until some joystick is discharged.
[ "3 5\n", "4 4\n" ]
[ "6\n", "5\n" ]
In the first sample game lasts for 6 minute by using the following algorithm: - at the beginning of the first minute connect first joystick to the charger, by the end of this minute first joystick is at 4%, second is at 3%; - continue the game without changing charger, by the end of the second minute the first joyst...
500
[ { "input": "3 5", "output": "6" }, { "input": "4 4", "output": "5" }, { "input": "100 100", "output": "197" }, { "input": "1 100", "output": "98" }, { "input": "100 1", "output": "98" }, { "input": "1 4", "output": "2" }, { "input": "1 1", ...
1,591,011,231
2,147,483,647
Python 3
OK
TESTS
39
108
512,000
""" https://codeforces.com/problemset/problem/651/A """ a = [int(x) for x in input().split(" ")] minutes = 0 while a[0] > 0 and a[1] > 0: if a[0] > a[1]: a[1] += 1 a[0] -= 2 else: a[0] += 1 a[1] -= 2 minutes += 1 if a[0] < 0 or a[1] < 0: print(minu...
Title: Joysticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Friends are going to play console. They have two joysticks and only one charger for them. Initially first joystick is charged at *a*1 percent and second one is charged at *a*2 percent. You can connect charger to a joystick on...
```python """ https://codeforces.com/problemset/problem/651/A """ a = [int(x) for x in input().split(" ")] minutes = 0 while a[0] > 0 and a[1] > 0: if a[0] > a[1]: a[1] += 1 a[0] -= 2 else: a[0] += 1 a[1] -= 2 minutes += 1 if a[0] < 0 or a[1] < 0: ...
3
49
A
Sleuth
PROGRAMMING
800
[ "implementation" ]
A. Sleuth
2
256
Vasya plays the sleuth with his friends. The rules of the game are as follows: those who play for the first time, that is Vasya is the sleuth, he should investigate a "crime" and find out what is happening. He can ask any questions whatsoever that can be answered with "Yes" or "No". All the rest agree beforehand to ans...
The single line contains a question represented by a non-empty line consisting of large and small Latin letters, spaces and a question mark. The line length does not exceed 100. It is guaranteed that the question mark occurs exactly once in the line β€” as the last symbol and that the line contains at least one letter.
Print answer for the question in a single line: YES if the answer is "Yes", NO if the answer is "No". Remember that in the reply to the question the last letter, not the last character counts. I. e. the spaces and the question mark do not count as letters.
[ "Is it a melon?\n", "Is it an apple?\n", "Is it a banana ?\n", "Is it an apple and a banana simultaneouSLY?\n" ]
[ "NO\n", "YES\n", "YES\n", "YES\n" ]
none
500
[ { "input": "Is it a melon?", "output": "NO" }, { "input": "Is it an apple?", "output": "YES" }, { "input": " Is it a banana ?", "output": "YES" }, { "input": "Is it an apple and a banana simultaneouSLY?", "output": "YES" }, { "input": "oHtSbDwzHb?", ...
1,630,464,436
2,147,483,647
PyPy 3
OK
TESTS
35
218
20,172,800
from sys import stdin, stdout def read(): return stdin.readline().rstrip() def read_int(): return int(read()) def read_ints(): return list(map(int, read().split())) def solve(): a=read()[::-1] for c in a: if c in "AEIOUYaeiouy": print("YES") return elif c in "BCDFGHJKLMNPQRSTVWXZbcdf...
Title: Sleuth Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya plays the sleuth with his friends. The rules of the game are as follows: those who play for the first time, that is Vasya is the sleuth, he should investigate a "crime" and find out what is happening. He can ask any questions ...
```python from sys import stdin, stdout def read(): return stdin.readline().rstrip() def read_int(): return int(read()) def read_ints(): return list(map(int, read().split())) def solve(): a=read()[::-1] for c in a: if c in "AEIOUYaeiouy": print("YES") return elif c in "BCDFGHJKLMNPQR...
3.907925
731
A
Night at the Museum
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devise that allows to "print" the text of a plastic tape. Text is printed sequentially, character by character...
The only line of input contains the name of some exhibitΒ β€” the non-empty string consisting of no more than 100 characters. It's guaranteed that the string consists of only lowercase English letters.
Print one integerΒ β€” the minimum number of rotations of the wheel, required to print the name given in the input.
[ "zeus\n", "map\n", "ares\n" ]
[ "18\n", "35\n", "34\n" ]
To print the string from the first sample it would be optimal to perform the following sequence of rotations: 1. from 'a' to 'z' (1 rotation counterclockwise), 1. from 'z' to 'e' (5 clockwise rotations), 1. from 'e' to 'u' (10 rotations counterclockwise), 1. from 'u' to 's' (2 counterclockwise rotations).
500
[ { "input": "zeus", "output": "18" }, { "input": "map", "output": "35" }, { "input": "ares", "output": "34" }, { "input": "l", "output": "11" }, { "input": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuv", "...
1,687,894,644
2,147,483,647
PyPy 3-64
OK
TESTS
44
62
0
s = list(input()) curr = ord('a') - 97 t = 0 for elem in s: a = curr - (ord(elem)-97) t += min(abs(a), 26 - abs(a)) curr = ord(elem) - 97 print(t)
Title: Night at the Museum Time Limit: None seconds Memory Limit: None megabytes Problem Description: Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devis...
```python s = list(input()) curr = ord('a') - 97 t = 0 for elem in s: a = curr - (ord(elem)-97) t += min(abs(a), 26 - abs(a)) curr = ord(elem) - 97 print(t) ```
3
867
A
Between the Offices
PROGRAMMING
800
[ "implementation" ]
null
null
As you may know, MemSQL has American offices in both San Francisco and Seattle. Being a manager in the company, you travel a lot between the two cities, always by plane. You prefer flying from Seattle to San Francisco than in the other direction, because it's warmer in San Francisco. You are so busy that you don't rem...
The first line of input contains single integer *n* (2<=≀<=*n*<=≀<=100)Β β€” the number of days. The second line contains a string of length *n* consisting of only capital 'S' and 'F' letters. If the *i*-th letter is 'S', then you were in Seattle office on that day. Otherwise you were in San Francisco. The days are given...
Print "YES" if you flew more times from Seattle to San Francisco, and "NO" otherwise. You can print each letter in any case (upper or lower).
[ "4\nFSSF\n", "2\nSF\n", "10\nFFFFFFFFFF\n", "10\nSSFFSFFSFF\n" ]
[ "NO\n", "YES\n", "NO\n", "YES\n" ]
In the first example you were initially at San Francisco, then flew to Seattle, were there for two days and returned to San Francisco. You made one flight in each direction, so the answer is "NO". In the second example you just flew from Seattle to San Francisco, so the answer is "YES". In the third example you staye...
500
[ { "input": "4\nFSSF", "output": "NO" }, { "input": "2\nSF", "output": "YES" }, { "input": "10\nFFFFFFFFFF", "output": "NO" }, { "input": "10\nSSFFSFFSFF", "output": "YES" }, { "input": "20\nSFSFFFFSSFFFFSSSSFSS", "output": "NO" }, { "input": "20\nSSFFF...
1,642,685,450
2,147,483,647
Python 3
OK
TESTS
34
61
0
n = int(input()) s = input() yes,no = 0,0 for i in range(0,n-1) : if (s[i] == 'S' and s[i + 1] == 'F') : yes += 1 if (s[i] == 'F' and s[i + 1] == 'S') : no += 1 if (yes > no) : print ("YES") else : print ("NO")
Title: Between the Offices Time Limit: None seconds Memory Limit: None megabytes Problem Description: As you may know, MemSQL has American offices in both San Francisco and Seattle. Being a manager in the company, you travel a lot between the two cities, always by plane. You prefer flying from Seattle to San Franci...
```python n = int(input()) s = input() yes,no = 0,0 for i in range(0,n-1) : if (s[i] == 'S' and s[i + 1] == 'F') : yes += 1 if (s[i] == 'F' and s[i + 1] == 'S') : no += 1 if (yes > no) : print ("YES") else : print ("NO") ```
3
285
C
Building Permutation
PROGRAMMING
1,200
[ "greedy", "implementation", "sortings" ]
null
null
Permutation *p* is an ordered set of integers *p*1,<=<=*p*2,<=<=...,<=<=*p**n*, consisting of *n* distinct positive integers, each of them doesn't exceed *n*. We'll denote the *i*-th element of permutation *p* as *p**i*. We'll call number *n* the size or the length of permutation *p*1,<=<=*p*2,<=<=...,<=<=*p**n*. You ...
The first line contains integer *n* (1<=≀<=*n*<=≀<=3Β·105) β€” the size of the sought permutation. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=109<=≀<=*a**i*<=≀<=109).
Print a single number β€” the minimum number of moves. Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.
[ "2\n3 0\n", "3\n-1 -1 2\n" ]
[ "2\n", "6\n" ]
In the first sample you should decrease the first number by one and then increase the second number by one. The resulting permutation is (2, 1). In the second sample you need 6 moves to build permutation (1, 3, 2).
1,500
[ { "input": "2\n3 0", "output": "2" }, { "input": "3\n-1 -1 2", "output": "6" }, { "input": "5\n-3 5 -3 3 3", "output": "10" }, { "input": "10\n9 6 -2 4 1 1 1 9 6 2", "output": "18" }, { "input": "9\n2 0 0 6 5 4 1 9 3", "output": "15" }, { "input": "100...
1,685,595,885
2,147,483,647
Python 3
OK
TESTS
33
280
40,038,400
def main(): size = int(input()) numbers = sorted(map(int, input().split())) total = 0 numbers.insert(0, 0) for i in range(1, size + 1): if numbers[i] > i: total += numbers[i] - i elif numbers[i] < i: total += i - numbers[i] ...
Title: Building Permutation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Permutation *p* is an ordered set of integers *p*1,<=<=*p*2,<=<=...,<=<=*p**n*, consisting of *n* distinct positive integers, each of them doesn't exceed *n*. We'll denote the *i*-th element of permutation *p* as *...
```python def main(): size = int(input()) numbers = sorted(map(int, input().split())) total = 0 numbers.insert(0, 0) for i in range(1, size + 1): if numbers[i] > i: total += numbers[i] - i elif numbers[i] < i: total += i - numbers[i] ...
3
79
B
Colorful Field
PROGRAMMING
1,400
[ "implementation", "sortings" ]
B. Colorful Field
2
256
Fox Ciel saw a large field while she was on a bus. The field was a *n*<=Γ—<=*m* rectangle divided into 1<=Γ—<=1 cells. Some cells were wasteland, and other each cell contained crop plants: either carrots or kiwis or grapes. After seeing the field carefully, Ciel found that the crop plants of each cell were planted in f...
In the first line there are four positive integers *n*,<=*m*,<=*k*,<=*t* (1<=≀<=*n*<=≀<=4Β·104,<=1<=≀<=*m*<=≀<=4Β·104,<=1<=≀<=*k*<=≀<=103,<=1<=≀<=*t*<=≀<=103), each of which represents the height of the field, the width of the field, the number of waste cells and the number of queries that ask the kind of crop plants in ...
For each query, if the cell is waste, print Waste. Otherwise, print the name of crop plants in the cell: either Carrots or Kiwis or Grapes.
[ "4 5 5 6\n4 3\n1 3\n3 3\n2 5\n3 2\n1 3\n1 4\n2 3\n2 4\n1 1\n1 1\n" ]
[ "Waste\nGrapes\nCarrots\nKiwis\nCarrots\nCarrots\n" ]
The sample corresponds to the figure in the statement.
1,000
[ { "input": "4 5 5 6\n4 3\n1 3\n3 3\n2 5\n3 2\n1 3\n1 4\n2 3\n2 4\n1 1\n1 1", "output": "Waste\nGrapes\nCarrots\nKiwis\nCarrots\nCarrots" }, { "input": "2 3 2 2\n1 1\n2 2\n2 1\n2 2", "output": "Grapes\nWaste" }, { "input": "31 31 31 4\n4 9\n16 27\n11 29\n8 28\n11 2\n10 7\n22 6\n1 25\n14 8...
1,623,981,860
2,147,483,647
PyPy 3
OK
TESTS
29
342
4,198,400
n, m, k, t = map(int, input().split()) def mToA(i, j): return i * m + j - m - 1 waste = [mToA(*map(int, input().split())) for _ in range(k)] waste.sort() plants = ["Carrots", "Kiwis", "Grapes"] for _ in range(t): i, j = map(int, input().split()) a = mToA(i, j) if a in waste: prin...
Title: Colorful Field Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Fox Ciel saw a large field while she was on a bus. The field was a *n*<=Γ—<=*m* rectangle divided into 1<=Γ—<=1 cells. Some cells were wasteland, and other each cell contained crop plants: either carrots or kiwis or grapes. ...
```python n, m, k, t = map(int, input().split()) def mToA(i, j): return i * m + j - m - 1 waste = [mToA(*map(int, input().split())) for _ in range(k)] waste.sort() plants = ["Carrots", "Kiwis", "Grapes"] for _ in range(t): i, j = map(int, input().split()) a = mToA(i, j) if a in waste: ...
3.90668
664
A
Complicated GCD
PROGRAMMING
800
[ "math", "number theory" ]
null
null
Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find greatest common divisor *GCD*(*a*,<=*b*), for example, Euclid algorithm. Formally, find the biggest in...
The only line of the input contains two integers *a* and *b* (1<=≀<=*a*<=≀<=*b*<=≀<=10100).
Output one integerΒ β€” greatest common divisor of all integers from *a* to *b* inclusive.
[ "1 2\n", "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576\n" ]
[ "1\n", "61803398874989484820458683436563811772030917980576\n" ]
none
500
[ { "input": "1 2", "output": "1" }, { "input": "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576", "output": "61803398874989484820458683436563811772030917980576" }, { "input": "1 100", "output": "1" }, { "input": "100 100000...
1,671,767,953
2,147,483,647
Python 3
OK
TESTS
28
46
0
# LUOGU_RID: 97809184 a, b = input().split() if (a == b): print(b) else: print('1')
Title: Complicated GCD Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find gre...
```python # LUOGU_RID: 97809184 a, b = input().split() if (a == b): print(b) else: print('1') ```
3
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=Γ—<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=Γ—<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* β€” board sizes in squares (1<=≀<=*M*<=≀<=*N*<=≀<=16).
Output one number β€” the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,607,703,906
2,147,483,647
Python 3
OK
TESTS
35
248
0
m, n = map(int, input().split()) print(m * (n - (n%2))//2 + (n%2) * m//2)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=Γ—<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=Γ—<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python m, n = map(int, input().split()) print(m * (n - (n%2))//2 + (n%2) * m//2) ```
3.938
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,593,023,158
2,147,483,647
PyPy 3
OK
TESTS
34
389
27,750,400
import sys input = sys.stdin.readline """ Interval intersection """ def main(): n, k = map(int, input().split()) guests = input().rstrip() guestbook = {} for idx, guest in enumerate(guests): if guest not in guestbook: guestbook[guest] = (idx, idx) else: val = guestbook[guest] guestbo...
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 import sys input = sys.stdin.readline """ Interval intersection """ def main(): n, k = map(int, input().split()) guests = input().rstrip() guestbook = {} for idx, guest in enumerate(guests): if guest not in guestbook: guestbook[guest] = (idx, idx) else: val = guestbook[guest] ...
3
660
B
Seating On Bus
PROGRAMMING
1,000
[ "implementation" ]
null
null
Consider 2*n* rows of the seats in a bus. *n* rows of the seats on the left and *n* rows of the seats on the right. Each row can be filled by two people. So the total capacity of the bus is 4*n*. Consider that *m* (*m*<=≀<=4*n*) people occupy the seats in the bus. The passengers entering the bus are numbered from 1 to...
The only line contains two integers, *n* and *m* (1<=≀<=*n*<=≀<=100,<=1<=≀<=*m*<=≀<=4*n*) β€” the number of pairs of rows and the number of passengers.
Print *m* distinct integers from 1 to *m* β€” the order in which the passengers will get off the bus.
[ "2 7\n", "9 36\n" ]
[ "5 1 6 2 7 3 4\n", "19 1 20 2 21 3 22 4 23 5 24 6 25 7 26 8 27 9 28 10 29 11 30 12 31 13 32 14 33 15 34 16 35 17 36 18\n" ]
none
0
[ { "input": "2 7", "output": "5 1 6 2 7 3 4" }, { "input": "9 36", "output": "19 1 20 2 21 3 22 4 23 5 24 6 25 7 26 8 27 9 28 10 29 11 30 12 31 13 32 14 33 15 34 16 35 17 36 18" }, { "input": "1 1", "output": "1" }, { "input": "1 4", "output": "3 1 4 2" }, { "input...
1,662,917,294
2,147,483,647
Python 3
OK
TESTS
23
46
0
from itertools import zip_longest as zl n, m = map(int, input().split()) if m-n*2 <= 0: wind = list(range(1, m+1)) prh = [] else: man = range(1, m+1) wind = list(man[:n*2]) prh = list(man[n*2:]) for a,b in zl(prh, wind, fillvalue=''): print (str(a) + ' ' + str(b), end=' ')
Title: Seating On Bus Time Limit: None seconds Memory Limit: None megabytes Problem Description: Consider 2*n* rows of the seats in a bus. *n* rows of the seats on the left and *n* rows of the seats on the right. Each row can be filled by two people. So the total capacity of the bus is 4*n*. Consider that *m* (*m*<...
```python from itertools import zip_longest as zl n, m = map(int, input().split()) if m-n*2 <= 0: wind = list(range(1, m+1)) prh = [] else: man = range(1, m+1) wind = list(man[:n*2]) prh = list(man[n*2:]) for a,b in zl(prh, wind, fillvalue=''): print (str(a) + ' ' + str(b), end...
3
415
A
Mashmokh and Lights
PROGRAMMING
900
[ "implementation" ]
null
null
Mashmokh works in a factory. At the end of each day he must turn off all of the lights. The lights on the factory are indexed from 1 to *n*. There are *n* buttons in Mashmokh's room indexed from 1 to *n* as well. If Mashmokh pushes button with index *i*, then each light with index not less than *i* that is still turn...
The first line of the input contains two space-separated integers *n* and *m* (1<=≀<=*n*,<=*m*<=≀<=100), the number of the factory lights and the pushed buttons respectively. The next line contains *m* distinct space-separated integers *b*1,<=*b*2,<=...,<=*b**m*Β (1<=≀<=*b**i*<=≀<=*n*). It is guaranteed that all lights...
Output *n* space-separated integers where the *i*-th number is index of the button that turns the *i*-th light off.
[ "5 4\n4 3 1 2\n", "5 5\n5 4 3 2 1\n" ]
[ "1 1 3 4 4 \n", "1 2 3 4 5 \n" ]
In the first sample, after pressing button number 4, lights 4 and 5 are turned off and lights 1, 2 and 3 are still on. Then after pressing button number 3, light number 3 is turned off as well. Pressing button number 1 turns off lights number 1 and 2 as well so pressing button number 2 in the end has no effect. Thus bu...
500
[ { "input": "5 4\n4 3 1 2", "output": "1 1 3 4 4 " }, { "input": "5 5\n5 4 3 2 1", "output": "1 2 3 4 5 " }, { "input": "16 11\n8 5 12 10 14 2 6 3 15 9 1", "output": "1 2 2 2 5 5 5 8 8 8 8 8 8 8 8 8 " }, { "input": "79 22\n76 32 48 28 33 44 58 59 1 51 77 13 15 64 49 72 74 21 6...
1,549,734,932
2,147,483,647
PyPy 3
OK
TESTS
31
155
0
n,m=[int(x) for x in input().split()] a=[int(y) for y in input().split()] i=0 x=[0 for y in range(n)] while i<len(a): j=a[i]-1 while j<n and (x[j]==0): x[j]=a[i] j+=1 i+=1 for i in range(n): print(x[i],end=" ")
Title: Mashmokh and Lights Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mashmokh works in a factory. At the end of each day he must turn off all of the lights. The lights on the factory are indexed from 1 to *n*. There are *n* buttons in Mashmokh's room indexed from 1 to *n* as well. ...
```python n,m=[int(x) for x in input().split()] a=[int(y) for y in input().split()] i=0 x=[0 for y in range(n)] while i<len(a): j=a[i]-1 while j<n and (x[j]==0): x[j]=a[i] j+=1 i+=1 for i in range(n): print(x[i],end=" ") ```
3
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,662,828,559
2,147,483,647
Python 3
OK
TESTS
40
31
0
def main() -> str: my_str = input() # ΠΏΠ΅Ρ€Π²ΠΎΠΉ ΠΈ СдинствСнной строкС записано слово start_pos = 0 my_str_len = len(my_str) for cur_l in "hello": for ind in range(start_pos, my_str_len): if cur_l == my_str[ind]: if cur_l == "o": return "YES"...
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python def main() -> str: my_str = input() # ΠΏΠ΅Ρ€Π²ΠΎΠΉ ΠΈ СдинствСнной строкС записано слово start_pos = 0 my_str_len = len(my_str) for cur_l in "hello": for ind in range(start_pos, my_str_len): if cur_l == my_str[ind]: if cur_l == "o": re...
3.9845
488
A
Giga Tower
PROGRAMMING
1,100
[ "brute force" ]
null
null
Giga Tower is the tallest and deepest building in Cyberland. There are 17<=777<=777<=777 floors, numbered from <=-<=8<=888<=888<=888 to 8<=888<=888<=888. In particular, there is floor 0 between floor <=-<=1 and floor 1. Every day, thousands of tourists come to this place to enjoy the wonderful view. In Cyberland, it ...
The only line of input contains an integer *a* (<=-<=109<=≀<=*a*<=≀<=109).
Print the minimum *b* in a line.
[ "179\n", "-1\n", "18\n" ]
[ "1\n", "9\n", "10\n" ]
For the first sample, he has to arrive at the floor numbered 180. For the second sample, he will arrive at 8. Note that *b* should be positive, so the answer for the third sample is 10, not 0.
500
[ { "input": "179", "output": "1" }, { "input": "-1", "output": "9" }, { "input": "18", "output": "10" }, { "input": "-410058385", "output": "1" }, { "input": "-586825624", "output": "1" }, { "input": "852318890", "output": "1" }, { "input": ...
1,678,514,623
2,147,483,647
PyPy 3
OK
TESTS
35
92
0
number = int(input()) res = 1 while '8' not in str (number + res): res += 1 print(res)
Title: Giga Tower Time Limit: None seconds Memory Limit: None megabytes Problem Description: Giga Tower is the tallest and deepest building in Cyberland. There are 17<=777<=777<=777 floors, numbered from <=-<=8<=888<=888<=888 to 8<=888<=888<=888. In particular, there is floor 0 between floor <=-<=1 and floor 1. Ever...
```python number = int(input()) res = 1 while '8' not in str (number + res): res += 1 print(res) ```
3
17
A
Noldbach problem
PROGRAMMING
1,000
[ "brute force", "math", "number theory" ]
A. Noldbach problem
2
64
Nick is interested in prime numbers. Once he read about Goldbach problem. It states that every even integer greater than 2 can be expressed as the sum of two primes. That got Nick's attention and he decided to invent a problem of his own and call it Noldbach problem. Since Nick is interested only in prime numbers, Nold...
The first line of the input contains two integers *n* (2<=≀<=*n*<=≀<=1000) and *k* (0<=≀<=*k*<=≀<=1000).
Output YES if at least *k* prime numbers from 2 to *n* inclusively can be expressed as it was described above. Otherwise output NO.
[ "27 2\n", "45 7\n" ]
[ "YES", "NO" ]
In the first sample the answer is YES since at least two numbers can be expressed as it was described (for example, 13 and 19). In the second sample the answer is NO since it is impossible to express 7 prime numbers from 2 to 45 in the desired form.
0
[ { "input": "27 2", "output": "YES" }, { "input": "45 7", "output": "NO" }, { "input": "2 0", "output": "YES" }, { "input": "15 1", "output": "YES" }, { "input": "17 1", "output": "YES" }, { "input": "34 5", "output": "NO" }, { "input": "37 ...
1,518,500,322
2,147,483,647
Python 3
OK
TESTS
35
186
5,632,000
# Finds if number is Prime data = input().split(' ') n = int(data[0]) k = int(data[1]) def isPrime(n): A = [] factor = 2 while n > 1: if n % factor == 0: A.append(factor) n = n / factor else: factor+=1 if len(A)==1: return True ...
Title: Noldbach problem Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Nick is interested in prime numbers. Once he read about Goldbach problem. It states that every even integer greater than 2 can be expressed as the sum of two primes. That got Nick's attention and he decided to invent a prob...
```python # Finds if number is Prime data = input().split(' ') n = int(data[0]) k = int(data[1]) def isPrime(n): A = [] factor = 2 while n > 1: if n % factor == 0: A.append(factor) n = n / factor else: factor+=1 if len(A)==1: re...
3.911538
897
B
Chtholly's request
PROGRAMMING
1,300
[ "brute force" ]
null
null
β€” I experienced so many great things. β€” You gave me memories like dreams... But I have to leave now... β€” One last request, can you... β€” Help me solve a Codeforces problem? β€” ...... β€” What? Chtholly has been thinking about a problem for days: If a number is palindrome and length of its decimal representation with...
The first line contains two integers *k* and *p* (1<=≀<=*k*<=≀<=105,<=1<=≀<=*p*<=≀<=109).
Output single integerΒ β€” answer to the problem.
[ "2 100\n", "5 30\n" ]
[ "33\n", "15\n" ]
In the first example, the smallest zcy number is 11, and the second smallest zcy number is 22. In the second example, <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/68fffad54395f7d920ad0384e07c6215ddc64141.png" style="max-width: 100.0%;max-height: 100.0%;"/>.
1,000
[ { "input": "2 100", "output": "33" }, { "input": "5 30", "output": "15" }, { "input": "42147 412393322", "output": "251637727" }, { "input": "77809 868097296", "output": "440411873" }, { "input": "5105 443422097", "output": "363192634" }, { "input": "7...
1,512,227,502
4,002
Python 3
OK
TESTS
26
234
9,216,000
n, p = map(int, list(input().split())) a = [] x = 11 for i in range(9): a.append(x * (i + 1)) for i in range(10, 100): temp = str(i) temp = temp + temp[::-1] a.append(int(temp)) for i in range(100, 1000): temp = str(i) temp = temp + temp[::-1] a.append(int(temp)) for i in range(1000, 10000):...
Title: Chtholly's request Time Limit: None seconds Memory Limit: None megabytes Problem Description: β€” I experienced so many great things. β€” You gave me memories like dreams... But I have to leave now... β€” One last request, can you... β€” Help me solve a Codeforces problem? β€” ...... β€” What? Chtholly has been thi...
```python n, p = map(int, list(input().split())) a = [] x = 11 for i in range(9): a.append(x * (i + 1)) for i in range(10, 100): temp = str(i) temp = temp + temp[::-1] a.append(int(temp)) for i in range(100, 1000): temp = str(i) temp = temp + temp[::-1] a.append(int(temp)) for i in range(100...
3
779
B
Weird Rounding
PROGRAMMING
1,100
[ "brute force", "greedy" ]
null
null
Polycarp is crazy about round numbers. He especially likes the numbers divisible by 10*k*. In the given number of *n* Polycarp wants to remove the least number of digits to get a number that is divisible by 10*k*. For example, if *k*<==<=3, in the number 30020 it is enough to delete a single digit (2). In this case, t...
The only line of the input contains two integer numbers *n* and *k* (0<=≀<=*n*<=≀<=2<=000<=000<=000, 1<=≀<=*k*<=≀<=9). It is guaranteed that the answer exists. All numbers in the input are written in traditional notation of integers, that is, without any extra leading zeros.
Print *w* β€” the required minimal number of digits to erase. After removing the appropriate *w* digits from the number *n*, the result should have a value that is divisible by 10*k*. The result can start with digit 0 in the single case (the result is zero and written by exactly the only digit 0).
[ "30020 3\n", "100 9\n", "10203049 2\n" ]
[ "1\n", "2\n", "3\n" ]
In the example 2 you can remove two digits: 1 and any 0. The result is number 0 which is divisible by any number.
1,000
[ { "input": "30020 3", "output": "1" }, { "input": "100 9", "output": "2" }, { "input": "10203049 2", "output": "3" }, { "input": "0 1", "output": "0" }, { "input": "0 9", "output": "0" }, { "input": "100 2", "output": "0" }, { "input": "102...
1,598,869,543
2,147,483,647
PyPy 3
OK
TESTS
161
156
20,172,800
a,b=[int(i) for i in input().split()] a=str(a) c=a.count('0') if(c>=b): a=a[::-1] e=0 for i in range(0,len(a)): if(a[i]=='0'): e=e+1 if(e==b): l=i break a=a[0:l] print(len(a)-a.count('0')) else: print(len(a)-1)
Title: Weird Rounding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp is crazy about round numbers. He especially likes the numbers divisible by 10*k*. In the given number of *n* Polycarp wants to remove the least number of digits to get a number that is divisible by 10*k*. For e...
```python a,b=[int(i) for i in input().split()] a=str(a) c=a.count('0') if(c>=b): a=a[::-1] e=0 for i in range(0,len(a)): if(a[i]=='0'): e=e+1 if(e==b): l=i break a=a[0:l] print(len(a)-a.count('0')) else: print(len(a)-1) ```
3
469
A
I Wanna Be the Guy
PROGRAMMING
800
[ "greedy", "implementation" ]
null
null
There is a game called "I Wanna Be the Guy", consisting of *n* levels. Little X and his friend Little Y are addicted to the game. Each of them wants to pass the whole game. Little X can pass only *p* levels of the game. And Little Y can pass only *q* levels of the game. You are given the indices of levels Little X can...
The first line contains a single integer *n* (1<=≀<=<=*n*<=≀<=100). The next line contains an integer *p* (0<=≀<=*p*<=≀<=*n*) at first, then follows *p* distinct integers *a*1,<=*a*2,<=...,<=*a**p* (1<=≀<=*a**i*<=≀<=*n*). These integers denote the indices of levels Little X can pass. The next line contains the levels...
If they can pass all the levels, print "I become the guy.". If it's impossible, print "Oh, my keyboard!" (without the quotes).
[ "4\n3 1 2 3\n2 2 4\n", "4\n3 1 2 3\n2 2 3\n" ]
[ "I become the guy.\n", "Oh, my keyboard!\n" ]
In the first sample, Little X can pass levels [1 2 3], and Little Y can pass level [2 4], so they can pass all the levels both. In the second sample, no one can pass level 4.
500
[ { "input": "4\n3 1 2 3\n2 2 4", "output": "I become the guy." }, { "input": "4\n3 1 2 3\n2 2 3", "output": "Oh, my keyboard!" }, { "input": "10\n5 8 6 1 5 4\n6 1 3 2 9 4 6", "output": "Oh, my keyboard!" }, { "input": "10\n8 8 10 7 3 1 4 2 6\n8 9 5 10 3 7 2 4 8", "output":...
1,695,907,855
2,147,483,647
Python 3
OK
TESTS
29
31
0
n=int(input()) p=input().split() q=input().split() r=[] for i in range(1,len(p)): r.append(int(p[i])) for ii in range(1,len(q)): r.append(int(q[ii])) s=set(r) if len(s)>=n: print('I become the guy.') else: print('Oh, my keyboard!')
Title: I Wanna Be the Guy Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is a game called "I Wanna Be the Guy", consisting of *n* levels. Little X and his friend Little Y are addicted to the game. Each of them wants to pass the whole game. Little X can pass only *p* levels of the g...
```python n=int(input()) p=input().split() q=input().split() r=[] for i in range(1,len(p)): r.append(int(p[i])) for ii in range(1,len(q)): r.append(int(q[ii])) s=set(r) if len(s)>=n: print('I become the guy.') else: print('Oh, my keyboard!') ```
3
670
B
Game of Robots
PROGRAMMING
1,000
[ "implementation" ]
null
null
In late autumn evening *n* robots gathered in the cheerful company of friends. Each robot has a unique identifierΒ β€” an integer from 1 to 109. At some moment, robots decided to play the game "Snowball". Below there are the rules of this game. First, all robots stand in a row. Then the first robot says his identifier. A...
The first line contains two positive integers *n* and *k* (1<=≀<=*n*<=≀<=100<=000, 1<=≀<=*k*<=≀<=*min*(2Β·109,<=*n*Β·(*n*<=+<=1)<=/<=2). The second line contains the sequence *id*1,<=*id*2,<=...,<=*id**n* (1<=≀<=*id**i*<=≀<=109)Β β€” identifiers of roborts. It is guaranteed that all identifiers are different.
Print the *k*-th pronounced identifier (assume that the numeration starts from 1).
[ "2 2\n1 2\n", "4 5\n10 4 18 3\n" ]
[ "1\n", "4\n" ]
In the first sample identifiers of robots will be pronounced in the following order: 1, 1, 2. As *k* = 2, the answer equals to 1. In the second test case identifiers of robots will be pronounced in the following order: 10, 10, 4, 10, 4, 18, 10, 4, 18, 3. As *k* = 5, the answer equals to 4.
750
[ { "input": "2 2\n1 2", "output": "1" }, { "input": "4 5\n10 4 18 3", "output": "4" }, { "input": "1 1\n4", "output": "4" }, { "input": "2 1\n5 1", "output": "5" }, { "input": "2 2\n1 4", "output": "1" }, { "input": "2 3\n6 7", "output": "7" }, ...
1,625,004,622
2,147,483,647
Python 3
OK
TESTS
143
109
7,168,000
n,k = map(int, input().split()) k_els = [x for x in input().split()] previous = 0 cur_count = 0 additive_factor = 1 for i in range(len(k_els)): if k <= cur_count: break previous = cur_count cur_count += additive_factor additive_factor += 1 print(k_els[k-previous-1]) ...
Title: Game of Robots Time Limit: None seconds Memory Limit: None megabytes Problem Description: In late autumn evening *n* robots gathered in the cheerful company of friends. Each robot has a unique identifierΒ β€” an integer from 1 to 109. At some moment, robots decided to play the game "Snowball". Below there are t...
```python n,k = map(int, input().split()) k_els = [x for x in input().split()] previous = 0 cur_count = 0 additive_factor = 1 for i in range(len(k_els)): if k <= cur_count: break previous = cur_count cur_count += additive_factor additive_factor += 1 print(k_els[k-previous-1]) ...
3
148
A
Insomnia cure
PROGRAMMING
800
[ "constructive algorithms", "implementation", "math" ]
null
null
Β«One dragon. Two dragon. Three dragonΒ», β€” the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entertained herself at best she could. Tonight she imagined that all dragons were here to steal her, and ...
Input data contains integer numbers *k*,<=*l*,<=*m*,<=*n* and *d*, each number in a separate line (1<=≀<=*k*,<=*l*,<=*m*,<=*n*<=≀<=10, 1<=≀<=*d*<=≀<=105).
Output the number of damaged dragons.
[ "1\n2\n3\n4\n12\n", "2\n3\n4\n5\n24\n" ]
[ "12\n", "17\n" ]
In the first case every first dragon got punched with a frying pan. Some of the dragons suffered from other reasons as well, but the pan alone would be enough. In the second case dragons 1, 7, 11, 13, 17, 19 and 23 escaped unharmed.
1,000
[ { "input": "1\n2\n3\n4\n12", "output": "12" }, { "input": "2\n3\n4\n5\n24", "output": "17" }, { "input": "1\n1\n1\n1\n100000", "output": "100000" }, { "input": "10\n9\n8\n7\n6", "output": "0" }, { "input": "8\n4\n4\n3\n65437", "output": "32718" }, { "i...
1,696,350,950
2,147,483,647
Python 3
OK
TESTS
40
154
0
k=int(input()) l=int(input()) m=int(input()) n=int(input()) d=int(input()) tot=0 for i in range(1,d+1): c=0 for j in [k,l,m,n]: if i%j==0: c=1 break if c: tot+=1 print(tot)
Title: Insomnia cure Time Limit: None seconds Memory Limit: None megabytes Problem Description: Β«One dragon. Two dragon. Three dragonΒ», β€” the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entert...
```python k=int(input()) l=int(input()) m=int(input()) n=int(input()) d=int(input()) tot=0 for i in range(1,d+1): c=0 for j in [k,l,m,n]: if i%j==0: c=1 break if c: tot+=1 print(tot) ```
3
908
C
New Year and Curling
PROGRAMMING
1,500
[ "brute force", "geometry", "implementation", "math" ]
null
null
Carol is currently curling. She has *n* disks each with radius *r* on the 2D plane. Initially she has all these disks above the line *y*<==<=10100. She then will slide the disks towards the line *y*<==<=0 one by one in order from 1 to *n*. When she slides the *i*-th disk, she will place its center at the point (*...
The first line will contain two integers *n* and *r* (1<=≀<=*n*,<=*r*<=≀<=1<=000), the number of disks, and the radius of the disks, respectively. The next line will contain *n* integers *x*1,<=*x*2,<=...,<=*x**n* (1<=≀<=*x**i*<=≀<=1<=000)Β β€” the *x*-coordinates of the disks.
Print a single line with *n* numbers. The *i*-th number denotes the *y*-coordinate of the center of the *i*-th disk. The output will be accepted if it has absolute or relative error at most 10<=-<=6. Namely, let's assume that your answer for a particular value of a coordinate is *a* and the answer of the jury is *b*. ...
[ "6 2\n5 5 6 8 3 12\n" ]
[ "2 6.0 9.87298334621 13.3370849613 12.5187346573 13.3370849613\n" ]
The final positions of the disks will look as follows: In particular, note the position of the last disk.
1,000
[ { "input": "6 2\n5 5 6 8 3 12", "output": "2 6.0 9.87298334621 13.3370849613 12.5187346573 13.3370849613" }, { "input": "1 1\n5", "output": "1" }, { "input": "5 300\n939 465 129 611 532", "output": "300 667.864105343 1164.9596696 1522.27745533 2117.05388391" }, { "input": "5 ...
1,514,583,557
2,147,483,647
Python 3
OK
TESTS
15
1,014
5,632,000
n, r = map(int, input().split()) rad = list(map(int, input().split())) y = [] for i in range(n): y.append(r) for j in range(i): d = abs(rad[i] - rad[j]) if d > 2 * r: continue inc = (4 * r ** 2 - d ** 2) ** (1 / 2) y[i] = max(y[i], y[j] + inc) print...
Title: New Year and Curling Time Limit: None seconds Memory Limit: None megabytes Problem Description: Carol is currently curling. She has *n* disks each with radius *r* on the 2D plane. Initially she has all these disks above the line *y*<==<=10100. She then will slide the disks towards the line *y*<==<=0 one b...
```python n, r = map(int, input().split()) rad = list(map(int, input().split())) y = [] for i in range(n): y.append(r) for j in range(i): d = abs(rad[i] - rad[j]) if d > 2 * r: continue inc = (4 * r ** 2 - d ** 2) ** (1 / 2) y[i] = max(y[i], y[j] + inc...
3
0
none
none
none
0
[ "none" ]
null
null
The last stage of Football World Cup is played using the play-off system. There are *n* teams left in this stage, they are enumerated from 1 to *n*. Several rounds are held, in each round the remaining teams are sorted in the order of their ids, then the first in this order plays with the second, the thirdΒ β€” with the ...
The only line contains three integers *n*, *a* and *b* (2<=≀<=*n*<=≀<=256, 1<=≀<=*a*,<=*b*<=≀<=*n*)Β β€” the total number of teams, and the ids of the teams that Arkady is interested in. It is guaranteed that *n* is such that in each round an even number of team advance, and that *a* and *b* are not equal.
In the only line print "Final!" (without quotes), if teams *a* and *b* can meet in the Final. Otherwise, print a single integerΒ β€” the number of the round in which teams *a* and *b* can meet. The round are enumerated from 1.
[ "4 1 2\n", "8 2 6\n", "8 7 5\n" ]
[ "1\n", "Final!\n", "2\n" ]
In the first example teams 1 and 2 meet in the first round. In the second example teams 2 and 6 can only meet in the third round, which is the Final, if they win all their opponents in earlier rounds. In the third example the teams with ids 7 and 5 can meet in the second round, if they win their opponents in the firs...
0
[ { "input": "4 1 2", "output": "1" }, { "input": "8 2 6", "output": "Final!" }, { "input": "8 7 5", "output": "2" }, { "input": "128 30 98", "output": "Final!" }, { "input": "256 128 256", "output": "Final!" }, { "input": "256 2 127", "output": "7" ...
1,550,747,271
2,147,483,647
Python 3
OK
TESTS
64
109
0
n, a, b = map(int, input().split()) a -= 1 b -= 1 c = 1 while a > 0 or b > 0: a //= 2 b //= 2 if a == b: if n > 2: print(c) else: print("Final!") break c += 1 n //= 2
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: The last stage of Football World Cup is played using the play-off system. There are *n* teams left in this stage, they are enumerated from 1 to *n*. Several rounds are held, in each round the remaining teams are sorted in the ord...
```python n, a, b = map(int, input().split()) a -= 1 b -= 1 c = 1 while a > 0 or b > 0: a //= 2 b //= 2 if a == b: if n > 2: print(c) else: print("Final!") break c += 1 n //= 2 ```
3
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,580,338,527
2,147,483,647
PyPy 3
OK
TESTS
81
372
0
x=int(input()) l=[] for i in range(x): l1=[int(i) for i in input().split()] l.append(l1) l1=[] s=0 b=0 for j in range (3): for i in l : s=s+i[j] if(s!=0): b=b+1 s=0 if(b==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 x=int(input()) l=[] for i in range(x): l1=[int(i) for i in input().split()] l.append(l1) l1=[] s=0 b=0 for j in range (3): for i in l : s=s+i[j] if(s!=0): b=b+1 s=0 if(b==0): print('YES') else: print('NO') ```
3.907
126
B
Password
PROGRAMMING
1,700
[ "binary search", "dp", "hashing", "string suffix structures", "strings" ]
null
null
Asterix, Obelix and their temporary buddies Suffix and Prefix has finally found the Harmony temple. However, its doors were firmly locked and even Obelix had no luck opening them. A little later they found a string *s*, carved on a rock below the temple's gates. Asterix supposed that that's the password that opens the...
You are given the string *s* whose length can vary from 1 to 106 (inclusive), consisting of small Latin letters.
Print the string *t*. If a suitable *t* string does not exist, then print "Just a legend" without the quotes.
[ "fixprefixsuffix\n", "abcdabc\n" ]
[ "fix", "Just a legend" ]
none
1,000
[ { "input": "fixprefixsuffix", "output": "fix" }, { "input": "abcdabc", "output": "Just a legend" }, { "input": "qwertyqwertyqwerty", "output": "qwerty" }, { "input": "papapapap", "output": "papap" }, { "input": "aaaaaaaaaa", "output": "aaaaaaaa" }, { "...
1,667,632,248
2,147,483,647
PyPy 3
OK
TESTS
97
1,152
32,563,200
# ---------------------------iye ha aam zindegi--------------------------------------------- from calendar import c from cmath import inf from math import ceil, gcd, sqrt, log2 import os from re import I, M import sys from io import BytesIO, IOBase from collections import Counter, defaultdict, deque from heapq...
Title: Password Time Limit: None seconds Memory Limit: None megabytes Problem Description: Asterix, Obelix and their temporary buddies Suffix and Prefix has finally found the Harmony temple. However, its doors were firmly locked and even Obelix had no luck opening them. A little later they found a string *s*, carve...
```python # ---------------------------iye ha aam zindegi--------------------------------------------- from calendar import c from cmath import inf from math import ceil, gcd, sqrt, log2 import os from re import I, M import sys from io import BytesIO, IOBase from collections import Counter, defaultdict, deque ...
3
158
A
Next Round
PROGRAMMING
800
[ "*special", "implementation" ]
null
null
"Contestant who earns a score equal to or greater than the *k*-th place finisher's score will advance to the next round, as long as the contestant earns a positive score..." β€” an excerpt from contest rules. A total of *n* participants took part in the contest (*n*<=β‰₯<=*k*), and you already know their scores. Calculate...
The first line of the input contains two integers *n* and *k* (1<=≀<=*k*<=≀<=*n*<=≀<=50) separated by a single space. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≀<=*a**i*<=≀<=100), where *a**i* is the score earned by the participant who got the *i*-th place. The given sequence...
Output the number of participants who advance to the next round.
[ "8 5\n10 9 8 7 7 7 5 5\n", "4 2\n0 0 0 0\n" ]
[ "6\n", "0\n" ]
In the first example the participant on the 5th place earned 7 points. As the participant on the 6th place also earned 7 points, there are 6 advancers. In the second example nobody got a positive score.
500
[ { "input": "8 5\n10 9 8 7 7 7 5 5", "output": "6" }, { "input": "4 2\n0 0 0 0", "output": "0" }, { "input": "5 1\n1 1 1 1 1", "output": "5" }, { "input": "5 5\n1 1 1 1 1", "output": "5" }, { "input": "1 1\n10", "output": "1" }, { "input": "17 14\n16 15...
1,696,647,065
2,147,483,647
Python 3
OK
TESTS
50
92
0
n, k = input().split(" ") n, k = int(n), int(k) participants = [int(p) for p in input().split(" ")] nextRound = 0 for sc in participants: if sc >= participants[k-1] and sc > 0: nextRound+=1 print(nextRound)
Title: Next Round Time Limit: None seconds Memory Limit: None megabytes Problem Description: "Contestant who earns a score equal to or greater than the *k*-th place finisher's score will advance to the next round, as long as the contestant earns a positive score..." β€” an excerpt from contest rules. A total of *n* p...
```python n, k = input().split(" ") n, k = int(n), int(k) participants = [int(p) for p in input().split(" ")] nextRound = 0 for sc in participants: if sc >= participants[k-1] and sc > 0: nextRound+=1 print(nextRound) ```
3
373
A
Collecting Beats is Fun
PROGRAMMING
900
[ "implementation" ]
null
null
Cucumber boy is fan of Kyubeat, a famous music game. Kyubeat has 16 panels for playing arranged in 4<=Γ—<=4 table. When a panel lights up, he has to press that panel. Each panel has a timing to press (the preffered time when a player should press it), and Cucumber boy is able to press at most *k* panels in a time with...
The first line contains a single integer *k* (1<=≀<=*k*<=≀<=5) β€” the number of panels Cucumber boy can press with his one hand. Next 4 lines contain 4 characters each (digits from 1 to 9, or period) β€” table of panels. If a digit *i* was written on the panel, it means the boy has to press that panel in time *i*. If per...
Output "YES" (without quotes), if he is able to press all the panels in perfect timing. If not, output "NO" (without quotes).
[ "1\n.135\n1247\n3468\n5789\n", "5\n..1.\n1111\n..1.\n..1.\n", "1\n....\n12.1\n.2..\n.2..\n" ]
[ "YES\n", "YES\n", "NO\n" ]
In the third sample boy cannot press all panels in perfect timing. He can press all the panels in timing in time 1, but he cannot press the panels in time 2 in timing with his two hands.
500
[ { "input": "1\n.135\n1247\n3468\n5789", "output": "YES" }, { "input": "5\n..1.\n1111\n..1.\n..1.", "output": "YES" }, { "input": "1\n....\n12.1\n.2..\n.2..", "output": "NO" }, { "input": "1\n6981\n.527\n4163\n2345", "output": "YES" }, { "input": "5\n9999\n9999\n99...
1,590,129,035
2,147,483,647
Python 3
OK
TESTS
27
109
0
def solve(l, k): for i in l: if i > 2*k: return "NO" return "YES" k = int(input()) count = [0 for x in range(10)] for _ in range(4): s = input() for i in range(4): if s[i] != '.': count[int(s[i])] += 1 print(solve(count,k))
Title: Collecting Beats is Fun Time Limit: None seconds Memory Limit: None megabytes Problem Description: Cucumber boy is fan of Kyubeat, a famous music game. Kyubeat has 16 panels for playing arranged in 4<=Γ—<=4 table. When a panel lights up, he has to press that panel. Each panel has a timing to press (the preff...
```python def solve(l, k): for i in l: if i > 2*k: return "NO" return "YES" k = int(input()) count = [0 for x in range(10)] for _ in range(4): s = input() for i in range(4): if s[i] != '.': count[int(s[i])] += 1 print(solve(count,k)) ```
3
450
A
Jzzhu and Children
PROGRAMMING
1,000
[ "implementation" ]
null
null
There are *n* children in Jzzhu's school. Jzzhu is going to give some candies to them. Let's number all the children from 1 to *n*. The *i*-th child wants to get at least *a**i* candies. Jzzhu asks children to line up. Initially, the *i*-th child stands at the *i*-th place of the line. Then Jzzhu start distribution of...
The first line contains two integers *n*,<=*m* (1<=≀<=*n*<=≀<=100;Β 1<=≀<=*m*<=≀<=100). The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≀<=*a**i*<=≀<=100).
Output a single integer, representing the number of the last child.
[ "5 2\n1 3 1 4 2\n", "6 4\n1 1 2 2 3 3\n" ]
[ "4\n", "6\n" ]
Let's consider the first sample. Firstly child 1 gets 2 candies and go home. Then child 2 gets 2 candies and go to the end of the line. Currently the line looks like [3, 4, 5, 2] (indices of the children in order of the line). Then child 3 gets 2 candies and go home, and then child 4 gets 2 candies and goes to the en...
500
[ { "input": "5 2\n1 3 1 4 2", "output": "4" }, { "input": "6 4\n1 1 2 2 3 3", "output": "6" }, { "input": "7 3\n6 1 5 4 2 3 1", "output": "4" }, { "input": "10 5\n2 7 3 6 2 5 1 3 4 5", "output": "4" }, { "input": "100 1\n1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18...
1,658,839,063
2,147,483,647
Python 3
OK
TESTS
49
217
0
n,m=map(int,input().split()) candy=[] candy=list(map(int,input().split())) index=[] for i in range(1,n+1): index.append(i) while(len(candy)!=1): if(candy[0]<=m): candy.remove(candy[0]) index.remove(index[0]) else: candy[0]=candy[0]-m for i in range(0,len(candy)-...
Title: Jzzhu and Children Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* children in Jzzhu's school. Jzzhu is going to give some candies to them. Let's number all the children from 1 to *n*. The *i*-th child wants to get at least *a**i* candies. Jzzhu asks children to line ...
```python n,m=map(int,input().split()) candy=[] candy=list(map(int,input().split())) index=[] for i in range(1,n+1): index.append(i) while(len(candy)!=1): if(candy[0]<=m): candy.remove(candy[0]) index.remove(index[0]) else: candy[0]=candy[0]-m for i in range(0,l...
3
937
A
Olympiad
PROGRAMMING
800
[ "implementation", "sortings" ]
null
null
The recent All-Berland Olympiad in Informatics featured *n* participants with each scoring a certain amount of points. As the head of the programming committee, you are to determine the set of participants to be awarded with diplomas with respect to the following criteria: - At least one participant should get a di...
The first line contains a single integer *n* (1<=≀<=*n*<=≀<=100)Β β€” the number of participants. The next line contains a sequence of *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≀<=*a**i*<=≀<=600)Β β€” participants' scores. It's guaranteed that at least one participant has non-zero score.
Print a single integerΒ β€” the desired number of ways.
[ "4\n1 3 3 2\n", "3\n1 1 1\n", "4\n42 0 0 42\n" ]
[ "3\n", "1\n", "1\n" ]
There are three ways to choose a subset in sample case one. 1. Only participants with 3 points will get diplomas. 1. Participants with 2 or 3 points will get diplomas. 1. Everyone will get a diploma! The only option in sample case two is to award everyone. Note that in sample case three participants with zero sco...
500
[ { "input": "4\n1 3 3 2", "output": "3" }, { "input": "3\n1 1 1", "output": "1" }, { "input": "4\n42 0 0 42", "output": "1" }, { "input": "10\n1 0 1 0 1 0 0 0 0 1", "output": "1" }, { "input": "10\n572 471 540 163 50 30 561 510 43 200", "output": "10" }, { ...
1,521,440,994
2,147,483,647
Python 3
OK
TESTS
21
77
8,089,600
import math from sys import stdin n= int(stdin.readline().strip()) array0=[int(x) for x in stdin.readline().strip().split()] array0.sort(reverse=True) table=[] for item in array0: if len(table)==0 or item!=table[-1][-1]: table.append([item]) else: table[-1].append(item) count=0 for r...
Title: Olympiad Time Limit: None seconds Memory Limit: None megabytes Problem Description: The recent All-Berland Olympiad in Informatics featured *n* participants with each scoring a certain amount of points. As the head of the programming committee, you are to determine the set of participants to be awarded with ...
```python import math from sys import stdin n= int(stdin.readline().strip()) array0=[int(x) for x in stdin.readline().strip().split()] array0.sort(reverse=True) table=[] for item in array0: if len(table)==0 or item!=table[-1][-1]: table.append([item]) else: table[-1].append(item) coun...
3
621
A
Wet Shark and Odd and Even
PROGRAMMING
900
[ "implementation" ]
null
null
Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, that if Wet Shark uses no integers from the *n* integers, the sum is an even integer 0.
The first line of the input contains one integer, *n* (1<=≀<=*n*<=≀<=100<=000). The next line contains *n* space separated integers given to Wet Shark. Each of these integers is in range from 1 to 109, inclusive.
Print the maximum possible even sum that can be obtained if we use some of the given integers.
[ "3\n1 2 3\n", "5\n999999999 999999999 999999999 999999999 999999999\n" ]
[ "6", "3999999996" ]
In the first sample, we can simply take all three integers for a total sum of 6. In the second sample Wet Shark should take any four out of five integers 999 999 999.
500
[ { "input": "3\n1 2 3", "output": "6" }, { "input": "5\n999999999 999999999 999999999 999999999 999999999", "output": "3999999996" }, { "input": "1\n1", "output": "0" }, { "input": "15\n39 52 88 78 46 95 84 98 55 3 68 42 6 18 98", "output": "870" }, { "input": "15\...
1,667,088,742
2,147,483,647
PyPy 3
OK
TESTS
87
202
12,185,600
n = int(input()) arr = [int(k) for k in input().split()] def h(): total = sum(arr) if total % 2 == 0: return total evens, odds = [], [] for el in arr: if el % 2 == 0: evens.append(el) else: odds.append(el) odds.sort() ret...
Title: Wet Shark and Odd and Even Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, th...
```python n = int(input()) arr = [int(k) for k in input().split()] def h(): total = sum(arr) if total % 2 == 0: return total evens, odds = [], [] for el in arr: if el % 2 == 0: evens.append(el) else: odds.append(el) odds.sort(...
3
177
A1
Good Matrix Elements
PROGRAMMING
800
[ "implementation" ]
null
null
The Smart Beaver from ABBYY got hooked on square matrices. Now he is busy studying an *n*<=Γ—<=*n* size matrix, where *n* is odd. The Smart Beaver considers the following matrix elements good: - Elements of the main diagonal. - Elements of the secondary diagonal. - Elements of the "middle" row β€” the row which ha...
The first line of input data contains a single odd integer *n*. Each of the next *n* lines contains *n* integers *a**ij* (0<=≀<=*a**ij*<=≀<=100) separated by single spaces β€” the elements of the given matrix. The input limitations for getting 30 points are: - 1<=≀<=*n*<=≀<=5 The input limitations for getting 100 po...
Print a single integer β€” the sum of good matrix elements.
[ "3\n1 2 3\n4 5 6\n7 8 9\n", "5\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n" ]
[ "45\n", "17\n" ]
In the first sample all matrix elements will be good. Good elements in the second sample are shown on the figure.
30
[ { "input": "3\n1 2 3\n4 5 6\n7 8 9", "output": "45" }, { "input": "5\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1", "output": "17" }, { "input": "1\n3", "output": "3" }, { "input": "5\n27 7 3 11 72\n19 49 68 19 59\n41 25 37 64 65\n8 39 96 62 90\n13 37 43 26 33", ...
1,597,637,581
361
PyPy 3
OK
TESTS1
17
280
0
n = int(input()) lis=[] for i in range(n): li = list(map(int,input().split())) lis.append(li) ans=0 for i in range(n): ans+=lis[i][i] lis[i][i]=0 for i in range(n): ans+=lis[i][n-i-1] lis[i][n-i-1]=0 for i in range(n): ans+=lis[n//2][i] lis[n//2][i]=0 ans+=lis[i][n//2]...
Title: Good Matrix Elements Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Smart Beaver from ABBYY got hooked on square matrices. Now he is busy studying an *n*<=Γ—<=*n* size matrix, where *n* is odd. The Smart Beaver considers the following matrix elements good: - Elements of the ...
```python n = int(input()) lis=[] for i in range(n): li = list(map(int,input().split())) lis.append(li) ans=0 for i in range(n): ans+=lis[i][i] lis[i][i]=0 for i in range(n): ans+=lis[i][n-i-1] lis[i][n-i-1]=0 for i in range(n): ans+=lis[n//2][i] lis[n//2][i]=0 ans+=li...
3
66
B
Petya and Countryside
PROGRAMMING
1,100
[ "brute force", "implementation" ]
B. Petya and Countryside
2
256
Little Petya often travels to his grandmother in the countryside. The grandmother has a large garden, which can be represented as a rectangle 1<=Γ—<=*n* in size, when viewed from above. This rectangle is divided into *n* equal square sections. The garden is very unusual as each of the square sections possesses its own f...
The first line contains a positive integer *n* (1<=≀<=*n*<=≀<=1000). The second line contains *n* positive integers which are the height of the sections. All the numbers are no less than 1 and not more than 1000.
Print a single number, the maximal number of watered sections if we create artificial rain above exactly one section.
[ "1\n2\n", "5\n1 2 1 2 1\n", "8\n1 2 1 1 1 3 3 4\n" ]
[ "1\n", "3\n", "6\n" ]
none
1,000
[ { "input": "1\n2", "output": "1" }, { "input": "5\n1 2 1 2 1", "output": "3" }, { "input": "8\n1 2 1 1 1 3 3 4", "output": "6" }, { "input": "10\n1 2 3 4 5 6 7 8 9 10", "output": "10" }, { "input": "10\n10 9 8 7 6 5 4 3 2 1", "output": "10" }, { "input...
1,632,455,629
2,147,483,647
Python 3
OK
TESTS
80
124
6,963,200
#66B h = int(input()) height = list(map(int, input().split())) pre = [0]*h suf = [0]*h for i in range(1,h): if height[i] >= height[i-1]: pre[i] = pre[i-1]+1 if height[-i-1] >= height[-i]: suf[-i-1] = suf[-i]+1 # print(pre,suf) res = 1 for i in range(h): res = max(res,(pre[i]+suf[...
Title: Petya and Countryside Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Petya often travels to his grandmother in the countryside. The grandmother has a large garden, which can be represented as a rectangle 1<=Γ—<=*n* in size, when viewed from above. This rectangle is divided into *...
```python #66B h = int(input()) height = list(map(int, input().split())) pre = [0]*h suf = [0]*h for i in range(1,h): if height[i] >= height[i-1]: pre[i] = pre[i-1]+1 if height[-i-1] >= height[-i]: suf[-i-1] = suf[-i]+1 # print(pre,suf) res = 1 for i in range(h): res = max(res,(p...
3.95603
981
A
Antipalindrome
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" are not. A substring $s[l \ldots r]$ ($1<=\leq<=l<=\leq<=r<=\leq<=|s|$) of a string $s<==<=s_{1}s_{2}...
The first line contains a non-empty string $s$ with length at most $50$ characters, containing lowercase English letters only.
If there is such a substring in $s$ that is not a palindrome, print the maximum length of such a substring. Otherwise print $0$. Note that there can be multiple longest substrings that are not palindromes, but their length is unique.
[ "mew\n", "wuffuw\n", "qqqqqqqq\n" ]
[ "3\n", "5\n", "0\n" ]
"mew" is not a palindrome, so the longest substring of it that is not a palindrome, is the string "mew" itself. Thus, the answer for the first example is $3$. The string "uffuw" is one of the longest non-palindrome substrings (of length $5$) of the string "wuffuw", so the answer for the second example is $5$. All sub...
500
[ { "input": "mew", "output": "3" }, { "input": "wuffuw", "output": "5" }, { "input": "qqqqqqqq", "output": "0" }, { "input": "ijvji", "output": "4" }, { "input": "iiiiiii", "output": "0" }, { "input": "wobervhvvkihcuyjtmqhaaigvvgiaahqmtjyuchikvvhvrebow"...
1,668,869,143
2,147,483,647
Python 3
OK
TESTS
133
46
0
palin = str(input()) len_palin = len(palin) asc = ord(palin[0]) sum = 0 ver = True for i in range(len_palin): if(ord(palin[i]) == asc): sum += asc if(palin[i] != palin[len_palin-1-i]): ver = False print(len_palin) break if(ver == True): if(sum/len_palin == asc): pr...
Title: Antipalindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" ar...
```python palin = str(input()) len_palin = len(palin) asc = ord(palin[0]) sum = 0 ver = True for i in range(len_palin): if(ord(palin[i]) == asc): sum += asc if(palin[i] != palin[len_palin-1-i]): ver = False print(len_palin) break if(ver == True): if(sum/len_palin == asc): ...
3
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=Γ—<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=Γ—<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* β€” board sizes in squares (1<=≀<=*M*<=≀<=*N*<=≀<=16).
Output one number β€” the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,696,143,246
2,147,483,647
PyPy 3-64
OK
TESTS
35
124
0
number_str = input().split(" ") first = int(number_str[0]) second = int(number_str[1]) ans = first * second // 2 print(ans)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=Γ—<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=Γ—<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python number_str = input().split(" ") first = int(number_str[0]) second = int(number_str[1]) ans = first * second // 2 print(ans) ```
3.969
136
A
Presents
PROGRAMMING
800
[ "implementation" ]
null
null
Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on this occasion he organized a New Year party at his place and invited *n* his friends there. If...
The first line contains one integer *n* (1<=≀<=*n*<=≀<=100) β€” the quantity of friends Petya invited to the party. The second line contains *n* space-separated integers: the *i*-th number is *p**i* β€” the number of a friend who gave a gift to friend number *i*. It is guaranteed that each friend received exactly one gift....
Print *n* space-separated integers: the *i*-th number should equal the number of the friend who gave a gift to friend number *i*.
[ "4\n2 3 4 1\n", "3\n1 3 2\n", "2\n1 2\n" ]
[ "4 1 2 3\n", "1 3 2\n", "1 2\n" ]
none
500
[ { "input": "4\n2 3 4 1", "output": "4 1 2 3" }, { "input": "3\n1 3 2", "output": "1 3 2" }, { "input": "2\n1 2", "output": "1 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 3 2 6 4 5 7 9 8 10", "output": "1 3 2 5 6 4 7 9 8 10" }, { "input"...
1,687,555,659
2,147,483,647
PyPy 3-64
OK
TESTS
101
124
0
n = int(input()) a = list(map(int, input().split())) d = [0 for i in range(n)] for i in range(n): d[a[i]-1] = i+1 print(*d)
Title: Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on t...
```python n = int(input()) a = list(map(int, input().split())) d = [0 for i in range(n)] for i in range(n): d[a[i]-1] = i+1 print(*d) ```
3