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
327
A
Flipping Game
PROGRAMMING
1,200
[ "brute force", "dp", "implementation" ]
null
null
Iahub got bored, so he invented a game to be played on paper. He writes *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Each of those integers can be either 0 or 1. He's allowed to do exactly one move: he chooses two indices *i* and *j* (1<=≀<=*i*<=≀<=*j*<=≀<=*n*) and flips all values *a**k* for which their positions are in...
The first line of the input contains an integer *n* (1<=≀<=*n*<=≀<=100). In the second line of the input there are *n* integers: *a*1,<=*a*2,<=...,<=*a**n*. It is guaranteed that each of those *n* values is either 0 or 1.
Print an integer β€” the maximal number of 1s that can be obtained after exactly one move.
[ "5\n1 0 0 1 0\n", "4\n1 0 0 1\n" ]
[ "4\n", "4\n" ]
In the first case, flip the segment from 2 to 5 (*i* = 2, *j* = 5). That flip changes the sequence, it becomes: [1 1 1 0 1]. So, it contains four ones. There is no way to make the whole sequence equal to [1 1 1 1 1]. In the second case, flipping only the second and the third element (*i* = 2, *j* = 3) will turn all nu...
500
[ { "input": "5\n1 0 0 1 0", "output": "4" }, { "input": "4\n1 0 0 1", "output": "4" }, { "input": "1\n1", "output": "0" }, { "input": "1\n0", "output": "1" }, { "input": "8\n1 0 0 0 1 0 0 0", "output": "7" }, { "input": "18\n0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
1,655,079,523
2,147,483,647
PyPy 3-64
OK
TESTS
21
248
3,072,000
n=eval(input()) a=[int(i) for i in input().split()] ans=0 def f(i,j): for k in range(i,j): a[k]=1-a[k] for i in range(n): for j in range(i+1,n+1): f(i,j) res=sum(a) if res>ans: ans=res f(i,j) print(ans)
Title: Flipping Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub got bored, so he invented a game to be played on paper. He writes *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Each of those integers can be either 0 or 1. He's allowed to do exactly one move: he chooses two indices *...
```python n=eval(input()) a=[int(i) for i in input().split()] ans=0 def f(i,j): for k in range(i,j): a[k]=1-a[k] for i in range(n): for j in range(i+1,n+1): f(i,j) res=sum(a) if res>ans: ans=res f(i,j) print(ans) ```
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,691,415,507
2,147,483,647
Python 3
OK
TESTS
101
122
0
# N,M = map(int,input().split()) # N = int(input()) # A = list(map(int,input().split())) N = int(input()) A = list(map(int,input().split())) d = [0] * 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,M = map(int,input().split()) # N = int(input()) # A = list(map(int,input().split())) N = int(input()) A = list(map(int,input().split())) d = [0] * N for i in range(N): d[A[i]-1] = i+1 print(*d) ```
3
665
B
Shopping
PROGRAMMING
1,400
[ "brute force" ]
null
null
Ayush is a cashier at the shopping center. Recently his department has started a ''click and collect" service which allows users to shop online. The store contains *k* items. *n* customers have already used the above service. Each user paid for *m* items. Let *a**ij* denote the *j*-th item in the *i*-th person's orde...
The first line contains three integers *n*, *m* and *k* (1<=≀<=*n*,<=*k*<=≀<=100,<=1<=≀<=*m*<=≀<=*k*) β€” the number of users, the number of items each user wants to buy and the total number of items at the market. The next line contains *k* distinct integers *p**l* (1<=≀<=*p**l*<=≀<=*k*) denoting the initial positions ...
Print the only integer *t* β€” the total time needed for Ayush to process all the orders.
[ "2 2 5\n3 4 1 2 5\n1 5\n3 1\n" ]
[ "14\n" ]
Customer 1 wants the items 1 and 5. *pos*(1) = 3, so the new positions are: [1, 3, 4, 2, 5]. *pos*(5) = 5, so the new positions are: [5, 1, 3, 4, 2]. Time taken for the first customer is 3 + 5 = 8. Customer 2 wants the items 3 and 1. *pos*(3) = 3, so the new positions are: [3, 5, 1, 4, 2]. *pos*(1) = 3, so the ne...
0
[ { "input": "2 2 5\n3 4 1 2 5\n1 5\n3 1", "output": "14" }, { "input": "4 4 4\n1 2 3 4\n3 4 2 1\n4 3 2 1\n4 1 2 3\n4 1 2 3", "output": "59" }, { "input": "1 1 1\n1\n1", "output": "1" }, { "input": "10 1 100\n1 55 67 75 40 86 24 84 82 26 81 23 70 79 51 54 21 78 31 98 68 93 66 8...
1,462,767,266
2,147,483,647
Python 3
OK
TESTS
10
78
4,608,000
number = int(input().split()[0]) #orders = int(input()) array = input().split() sum = 0 for i in range(0,number): items = input().split() for j in items: buffer = [] sum = sum + int(array.index(j)) +1 buffer.append(j) array.remove(j) array = buffer + array...
Title: Shopping Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ayush is a cashier at the shopping center. Recently his department has started a ''click and collect" service which allows users to shop online. The store contains *k* items. *n* customers have already used the above service...
```python number = int(input().split()[0]) #orders = int(input()) array = input().split() sum = 0 for i in range(0,number): items = input().split() for j in items: buffer = [] sum = sum + int(array.index(j)) +1 buffer.append(j) array.remove(j) array = buff...
3
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,624,549,807
2,147,483,647
Python 3
OK
TESTS
44
77
0
s = input() counter = 0 counter += min(abs(ord('a') - ord(s[0])), 26 - abs(ord('a') - ord(s[0]))) for i in range(1,len(s)): counter += min(abs(ord(s[i-1]) - ord(s[i])), 26 - abs(ord(s[i-1]) - ord(s[i]))) print(counter)
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 = input() counter = 0 counter += min(abs(ord('a') - ord(s[0])), 26 - abs(ord('a') - ord(s[0]))) for i in range(1,len(s)): counter += min(abs(ord(s[i-1]) - ord(s[i])), 26 - abs(ord(s[i-1]) - ord(s[i]))) print(counter) ```
3
88
B
Keyboard
PROGRAMMING
1,500
[ "implementation" ]
B. Keyboard
1
256
Vasya learns to type. He has an unusual keyboard at his disposal: it is rectangular and it has *n* rows of keys containing *m* keys in each row. Besides, the keys are of two types. Some of the keys have lowercase Latin letters on them and some of the keys work like the "Shift" key on standard keyboards, that is, they m...
The first line contains three integers *n*, *m*, *x* (1<=≀<=*n*,<=*m*<=≀<=30,<=1<=≀<=*x*<=≀<=50). Next *n* lines contain descriptions of all the keyboard keys. Each line contains the descriptions of exactly *m* keys, without spaces. The letter keys are marked with the corresponding lowercase letters. The "Shift" keys ...
If Vasya can type the text, then print the minimum number of times he will have to use his other hand. Otherwise, print "-1" (without the quotes).
[ "2 2 1\nab\ncd\n1\nA\n", "2 2 1\nab\ncd\n1\ne\n", "2 2 1\nab\ncS\n5\nabcBA\n", "3 9 4\nqwertyuio\nasdfghjkl\nSzxcvbnmS\n35\nTheQuIcKbRoWnFOXjummsovertHeLazYDOG\n" ]
[ "-1\n", "-1\n", "1\n", "2\n" ]
In the first sample the symbol "A" is impossible to print as there's no "Shift" key on the keyboard. In the second sample the symbol "e" is impossible to print as there's no such key on the keyboard. In the fourth sample the symbols "T", "G" are impossible to print with one hand. The other letters that are on the key...
1,000
[ { "input": "2 2 1\nab\ncd\n1\nA", "output": "-1" }, { "input": "2 2 1\nab\ncd\n1\ne", "output": "-1" }, { "input": "2 2 1\nab\ncS\n5\nabcBA", "output": "1" }, { "input": "3 9 4\nqwertyuio\nasdfghjkl\nSzxcvbnmS\n35\nTheQuIcKbRoWnFOXjummsovertHeLazYDOG", "output": "2" }, ...
1,603,365,039
1,239
PyPy 3
OK
TESTS
65
311
4,096,000
import sys from array import array # noqa: F401 from math import hypot from collections import defaultdict def input(): return sys.stdin.buffer.readline().decode('utf-8') n, m, x = map(int, input().split()) keyboard = [input().rstrip() for _ in range(n)] keys = set() inf, eps = 10**9, 1e-9 dist =...
Title: Keyboard Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya learns to type. He has an unusual keyboard at his disposal: it is rectangular and it has *n* rows of keys containing *m* keys in each row. Besides, the keys are of two types. Some of the keys have lowercase Latin letters on ...
```python import sys from array import array # noqa: F401 from math import hypot from collections import defaultdict def input(): return sys.stdin.buffer.readline().decode('utf-8') n, m, x = map(int, input().split()) keyboard = [input().rstrip() for _ in range(n)] keys = set() inf, eps = 10**9, 1e...
3.836871
204
A
Little Elephant and Interval
PROGRAMMING
1,500
[ "binary search", "combinatorics", "dp" ]
null
null
The Little Elephant very much loves sums on intervals. This time he has a pair of integers *l* and *r* (*l*<=≀<=*r*). The Little Elephant has to find the number of such integers *x* (*l*<=≀<=*x*<=≀<=*r*), that the first digit of integer *x* equals the last one (in decimal notation). For example, such numbers as 101, 4...
The single line contains a pair of integers *l* and *r* (1<=≀<=*l*<=≀<=*r*<=≀<=1018) β€” the boundaries of the interval. Please, do not use the %lld specifier to read or write 64-bit integers in Π‘++. It is preferred to use cin, cout streams or the %I64d specifier.
On a single line print a single integer β€” the answer to the problem.
[ "2 47\n", "47 1024\n" ]
[ "12\n", "98\n" ]
In the first sample the answer includes integers 2, 3, 4, 5, 6, 7, 8, 9, 11, 22, 33, 44.
500
[ { "input": "2 47", "output": "12" }, { "input": "47 1024", "output": "98" }, { "input": "1 1000", "output": "108" }, { "input": "1 10000", "output": "1008" }, { "input": "47 8545", "output": "849" }, { "input": "1000 1000", "output": "0" }, { ...
1,593,063,954
2,147,483,647
PyPy 3
OK
TESTS
62
312
20,172,800
def f(x): if x < 10: return x if str(x)[0] > str(x)[-1]: return x // 10 + 8 else: return x // 10 + 9 l, r = map(int, input().split()) print(f(r) - f(l - 1))
Title: Little Elephant and Interval Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant very much loves sums on intervals. This time he has a pair of integers *l* and *r* (*l*<=≀<=*r*). The Little Elephant has to find the number of such integers *x* (*l*<=≀<=*x*<=≀<=*r*), ...
```python def f(x): if x < 10: return x if str(x)[0] > str(x)[-1]: return x // 10 + 8 else: return x // 10 + 9 l, r = map(int, input().split()) print(f(r) - f(l - 1)) ```
3
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,623,705,195
2,147,483,647
Python 3
OK
TESTS
47
77
0
n, k = map(int,input().split()) print(('abcdefghijklmnopqrstuvwxyz' [:k]*n )[:n])
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()) print(('abcdefghijklmnopqrstuvwxyz' [:k]*n )[:n]) ```
3
935
A
Fafa and his Company
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Fafa owns a company that works on huge projects. There are *n* employees in Fafa's company. Whenever the company has a new project to start working on, Fafa has to divide the tasks of this project among all the employees. Fafa finds doing this every time is very tiring for him. So, he decided to choose the best *l* em...
The input consists of a single line containing a positive integer *n* (2<=≀<=*n*<=≀<=105) β€” the number of employees in Fafa's company.
Print a single integer representing the answer to the problem.
[ "2\n", "10\n" ]
[ "1\n", "3\n" ]
In the second sample Fafa has 3 ways: - choose only 1 employee as a team leader with 9 employees under his responsibility. - choose 2 employees as team leaders with 4 employees under the responsibility of each of them. - choose 5 employees as team leaders with 1 employee under the responsibility of each of them.
500
[ { "input": "2", "output": "1" }, { "input": "10", "output": "3" }, { "input": "3", "output": "1" }, { "input": "4", "output": "2" }, { "input": "6", "output": "3" }, { "input": "13", "output": "1" }, { "input": "100000", "output": "35" ...
1,700,503,551
2,147,483,647
Python 3
OK
TESTS
33
46
0
# A. Fafa and his Company n = int(input()) i = 1 cont = 0 while i <= n/2: e = n - i if e % i == 0: cont += 1 i += 1 print(cont)
Title: Fafa and his Company Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fafa owns a company that works on huge projects. There are *n* employees in Fafa's company. Whenever the company has a new project to start working on, Fafa has to divide the tasks of this project among all the emp...
```python # A. Fafa and his Company n = int(input()) i = 1 cont = 0 while i <= n/2: e = n - i if e % i == 0: cont += 1 i += 1 print(cont) ```
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,627,568,519
2,147,483,647
Python 3
OK
TESTS
36
93
8,089,600
from collections import defaultdict from typing import Counter n = int(input()) a = [int(x) for x in input().split()] d = defaultdict(list) for i in range(n): d[a[i]].append(i) l = sorted(d.items(), key=lambda x: -x[0]) p = 1 ans = [0 for _ in range(n)] for t in l: for idx in t[1]: ...
Title: GukiZ and Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Professor GukiZ likes programming contests. He especially likes to rate his students on the contests he prepares. Now, he has decided to prepare a new contest. In total, *n* students will attend, and before the star...
```python from collections import defaultdict from typing import Counter n = int(input()) a = [int(x) for x in input().split()] d = defaultdict(list) for i in range(n): d[a[i]].append(i) l = sorted(d.items(), key=lambda x: -x[0]) p = 1 ans = [0 for _ in range(n)] for t in l: for idx in ...
3
371
C
Hamburgers
PROGRAMMING
1,600
[ "binary search", "brute force" ]
null
null
Polycarpus loves hamburgers very much. He especially adores the hamburgers he makes with his own hands. Polycarpus thinks that there are only three decent ingredients to make hamburgers from: a bread, sausage and cheese. He writes down the recipe of his favorite "Le Hamburger de Polycarpus" as a string of letters 'B' (...
The first line of the input contains a non-empty string that describes the recipe of "Le Hamburger de Polycarpus". The length of the string doesn't exceed 100, the string contains only letters 'B' (uppercase English B), 'S' (uppercase English S) and 'C' (uppercase English C). The second line contains three integers *n...
Print the maximum number of hamburgers Polycarpus can make. If he can't make any hamburger, print 0.
[ "BBBSSC\n6 4 1\n1 2 3\n4\n", "BBC\n1 10 1\n1 10 1\n21\n", "BSC\n1 1 1\n1 1 3\n1000000000000\n" ]
[ "2\n", "7\n", "200000000001\n" ]
none
1,500
[ { "input": "BBBSSC\n6 4 1\n1 2 3\n4", "output": "2" }, { "input": "BBC\n1 10 1\n1 10 1\n21", "output": "7" }, { "input": "BSC\n1 1 1\n1 1 3\n1000000000000", "output": "200000000001" }, { "input": "B\n1 1 1\n1 1 1\n381", "output": "382" }, { "input": "BSC\n3 5 6\n7...
1,674,225,531
2,147,483,647
PyPy 3-64
OK
TESTS
31
62
0
s=input() dic={"B":0,"S":0,"C":0} nb,ns,nc=[int(i) for i in input().split()] pb,ps,pc=[int(i) for i in input().split()] amount=int(input()) low=0 high=10**17 for i in s: dic[i]+=1 while low <= high: mid=(high+low)//2 burger=mid*dic["B"] - nb sausage=mid*dic["S"]-ns cheese=mid*dic["C"]-n...
Title: Hamburgers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus loves hamburgers very much. He especially adores the hamburgers he makes with his own hands. Polycarpus thinks that there are only three decent ingredients to make hamburgers from: a bread, sausage and cheese. He ...
```python s=input() dic={"B":0,"S":0,"C":0} nb,ns,nc=[int(i) for i in input().split()] pb,ps,pc=[int(i) for i in input().split()] amount=int(input()) low=0 high=10**17 for i in s: dic[i]+=1 while low <= high: mid=(high+low)//2 burger=mid*dic["B"] - nb sausage=mid*dic["S"]-ns cheese=mid*...
3
369
A
Valera and Plates
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
Valera is a lazy student. He has *m* clean bowls and *k* clean plates. Valera has made an eating plan for the next *n* days. As Valera is lazy, he will eat exactly one dish per day. At that, in order to eat a dish, he needs exactly one clean plate or bowl. We know that Valera can cook only two types of dishes. He can...
The first line of the input contains three integers *n*, *m*, *k* (1<=≀<=*n*,<=*m*,<=*k*<=≀<=1000)Β β€” the number of the planned days, the number of clean bowls and the number of clean plates. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≀<=*a**i*<=≀<=2). If *a**i* equals one, then on day *i* Val...
Print a single integer β€” the minimum number of times Valera will need to wash a plate/bowl.
[ "3 1 1\n1 2 1\n", "4 3 1\n1 1 1 1\n", "3 1 2\n2 2 2\n", "8 2 2\n1 2 1 2 1 2 1 2\n" ]
[ "1\n", "1\n", "0\n", "4\n" ]
In the first sample Valera will wash a bowl only on the third day, so the answer is one. In the second sample, Valera will have the first type of the dish during all four days, and since there are only three bowls, he will wash a bowl exactly once. In the third sample, Valera will have the second type of dish for all...
500
[ { "input": "3 1 1\n1 2 1", "output": "1" }, { "input": "4 3 1\n1 1 1 1", "output": "1" }, { "input": "3 1 2\n2 2 2", "output": "0" }, { "input": "8 2 2\n1 2 1 2 1 2 1 2", "output": "4" }, { "input": "2 100 100\n2 2", "output": "0" }, { "input": "1 1 1\...
1,605,978,913
2,147,483,647
Python 3
OK
TESTS
63
202
0
# cook your dish here n, b, p = map(int,input().split()) ls = list(map(int, input().split())) ans = n - min(ls.count(2), p) - b if ans<=0: print(0) else: print(ans)
Title: Valera and Plates Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera is a lazy student. He has *m* clean bowls and *k* clean plates. Valera has made an eating plan for the next *n* days. As Valera is lazy, he will eat exactly one dish per day. At that, in order to eat a dish, ...
```python # cook your dish here n, b, p = map(int,input().split()) ls = list(map(int, input().split())) ans = n - min(ls.count(2), p) - b if ans<=0: print(0) else: print(ans) ```
3
606
A
Magic Spheres
PROGRAMMING
1,200
[ "implementation" ]
null
null
Carl is a beginner magician. He has *a* blue, *b* violet and *c* orange magic spheres. In one move he can transform two spheres of the same color into one sphere of any other color. To make a spell that has never been seen before, he needs at least *x* blue, *y* violet and *z* orange spheres. Can he get them (possible,...
The first line of the input contains three integers *a*, *b* and *c* (0<=≀<=*a*,<=*b*,<=*c*<=≀<=1<=000<=000)Β β€” the number of blue, violet and orange spheres that are in the magician's disposal. The second line of the input contains three integers, *x*, *y* and *z* (0<=≀<=*x*,<=*y*,<=*z*<=≀<=1<=000<=000)Β β€” the number o...
If the wizard is able to obtain the required numbers of spheres, print "Yes". Otherwise, print "No".
[ "4 4 0\n2 1 2\n", "5 6 1\n2 7 2\n", "3 3 3\n2 2 2\n" ]
[ "Yes\n", "No\n", "Yes\n" ]
In the first sample the wizard has 4 blue and 4 violet spheres. In his first action he can turn two blue spheres into one violet one. After that he will have 2 blue and 5 violet spheres. Then he turns 4 violet spheres into 2 orange spheres and he ends up with 2 blue, 1 violet and 2 orange spheres, which is exactly what...
500
[ { "input": "4 4 0\n2 1 2", "output": "Yes" }, { "input": "5 6 1\n2 7 2", "output": "No" }, { "input": "3 3 3\n2 2 2", "output": "Yes" }, { "input": "0 0 0\n0 0 0", "output": "Yes" }, { "input": "0 0 0\n0 0 1", "output": "No" }, { "input": "0 1 0\n0 0 0...
1,693,817,708
2,147,483,647
Python 3
OK
TESTS
79
46
0
a,b,c = map(int, input().split()) x,y,z = map(int, input().split()) extra = max(0, a-x)//2 + max(0, b-y)//2 + max(0, c-z)//2 need = max(0, x-a) + max(0, y-b) + max(0, z-c) print("Yes" if need<=extra else "No")
Title: Magic Spheres Time Limit: None seconds Memory Limit: None megabytes Problem Description: Carl is a beginner magician. He has *a* blue, *b* violet and *c* orange magic spheres. In one move he can transform two spheres of the same color into one sphere of any other color. To make a spell that has never been see...
```python a,b,c = map(int, input().split()) x,y,z = map(int, input().split()) extra = max(0, a-x)//2 + max(0, b-y)//2 + max(0, c-z)//2 need = max(0, x-a) + max(0, y-b) + max(0, z-c) print("Yes" if need<=extra else "No") ```
3
38
A
Army
PROGRAMMING
800
[ "implementation" ]
A. Army
2
256
The Berland Armed Forces System consists of *n* ranks that are numbered using natural numbers from 1 to *n*, where 1 is the lowest rank and *n* is the highest rank. One needs exactly *d**i* years to rise from rank *i* to rank *i*<=+<=1. Reaching a certain rank *i* having not reached all the previous *i*<=-<=1 ranks is...
The first input line contains an integer *n* (2<=≀<=*n*<=≀<=100). The second line contains *n*<=-<=1 integers *d**i* (1<=≀<=*d**i*<=≀<=100). The third input line contains two integers *a* and *b* (1<=≀<=*a*<=&lt;<=*b*<=≀<=*n*). The numbers on the lines are space-separated.
Print the single number which is the number of years that Vasya needs to rise from rank *a* to rank *b*.
[ "3\n5 6\n1 2\n", "3\n5 6\n1 3\n" ]
[ "5\n", "11\n" ]
none
0
[ { "input": "3\n5 6\n1 2", "output": "5" }, { "input": "3\n5 6\n1 3", "output": "11" }, { "input": "2\n55\n1 2", "output": "55" }, { "input": "3\n85 78\n1 3", "output": "163" }, { "input": "4\n63 4 49\n2 3", "output": "4" }, { "input": "5\n93 83 42 56\n...
1,574,642,509
2,147,483,647
Python 3
OK
TESTS
50
218
0
def sr(ch): ch1=ch+' ' l=[] p='' for i in ch1: if i!=' ': p=p+i else: l.append(int(p)) p='' return l n=int(input()) y=str(input()) z=str(input()) l=sr(y) p=sr(z) a=p[0]-1 b=p[1]-1 k=0 for i in range(a,b): k=k+l[i] print(k)
Title: Army Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The Berland Armed Forces System consists of *n* ranks that are numbered using natural numbers from 1 to *n*, where 1 is the lowest rank and *n* is the highest rank. One needs exactly *d**i* years to rise from rank *i* to rank *i*<=+<...
```python def sr(ch): ch1=ch+' ' l=[] p='' for i in ch1: if i!=' ': p=p+i else: l.append(int(p)) p='' return l n=int(input()) y=str(input()) z=str(input()) l=sr(y) p=sr(z) a=p[0]-1 b=p[1]-1 k=0 for i in range(a,b): k=k+l[i] ...
3.9455
873
B
Balanced Substring
PROGRAMMING
1,500
[ "dp", "implementation" ]
null
null
You are given a string *s* consisting only of characters 0 and 1. A substring [*l*,<=*r*] of *s* is a string *s**l**s**l*<=+<=1*s**l*<=+<=2... *s**r*, and its length equals to *r*<=-<=*l*<=+<=1. A substring is called balanced if the number of zeroes (0) equals to the number of ones in this substring. You have to deter...
The first line contains *n* (1<=≀<=*n*<=≀<=100000) β€” the number of characters in *s*. The second line contains a string *s* consisting of exactly *n* characters. Only characters 0 and 1 can appear in *s*.
If there is no non-empty balanced substring in *s*, print 0. Otherwise, print the length of the longest balanced substring.
[ "8\n11010111\n", "3\n111\n" ]
[ "4\n", "0\n" ]
In the first example you can choose the substring [3, 6]. It is balanced, and its length is 4. Choosing the substring [2, 5] is also possible. In the second example it's impossible to find a non-empty balanced substring.
0
[ { "input": "8\n11010111", "output": "4" }, { "input": "3\n111", "output": "0" }, { "input": "11\n00001000100", "output": "2" }, { "input": "10\n0100000000", "output": "2" }, { "input": "13\n0001000011010", "output": "6" }, { "input": "14\n0000010010101...
1,518,618,222
2,147,483,647
Python 3
OK
TESTS
53
124
14,233,600
n=int(input()) T=input() d={0:-1} s=0 mix=0 for i in range(n): s+=1-(T[i]=='0')*2 if s not in d: d[s]=i else: if(i-d[s])> mix: mix=i-d[s] print(mix)
Title: Balanced Substring Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a string *s* consisting only of characters 0 and 1. A substring [*l*,<=*r*] of *s* is a string *s**l**s**l*<=+<=1*s**l*<=+<=2... *s**r*, and its length equals to *r*<=-<=*l*<=+<=1. A substring is called...
```python n=int(input()) T=input() d={0:-1} s=0 mix=0 for i in range(n): s+=1-(T[i]=='0')*2 if s not in d: d[s]=i else: if(i-d[s])> mix: mix=i-d[s] print(mix) ```
3
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W β€” the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format Β«A/BΒ», where A β€” the numerator, and B β€” the denominator. If the required probability equals to zero, output Β«0/1Β». If the required probability equals to 1, output Β«1/1Β».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,678,526,109
2,147,483,647
Python 3
OK
TESTS
36
122
409,600
from fractions import Fraction y,w=map(int,input().split()) m=max(y,w) c=0 for i in range(m,7): c=c+1 if c==0: print("0/1") elif c==1: print("1/6") elif c==2: print("1/3") elif c==3: print("1/2") elif c==4: print("2/3") elif c==5: print("5/6") elif c==6: print("1/1")
Title: Die Roll Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about T...
```python from fractions import Fraction y,w=map(int,input().split()) m=max(y,w) c=0 for i in range(m,7): c=c+1 if c==0: print("0/1") elif c==1: print("1/6") elif c==2: print("1/3") elif c==3: print("1/2") elif c==4: print("2/3") elif c==5: print("5/6") elif c==6: prin...
3.935948
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,681,909,563
2,147,483,647
Python 3
OK
TESTS
44
92
0
s=input() start='a' count=0 for i in s: diff=abs(ord(i)-ord(start)) count+=min(diff,26-diff) start=i print(count)
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=input() start='a' count=0 for i in s: diff=abs(ord(i)-ord(start)) count+=min(diff,26-diff) start=i print(count) ```
3
266
B
Queue at the School
PROGRAMMING
800
[ "constructive algorithms", "graph matchings", "implementation", "shortest paths" ]
null
null
During the break the schoolchildren, boys and girls, formed a queue of *n* people in the canteen. Initially the children stood in the order they entered the canteen. However, after a while the boys started feeling awkward for standing in front of the girls in the queue and they started letting the girls move forward ea...
The first line contains two integers *n* and *t* (1<=≀<=*n*,<=*t*<=≀<=50), which represent the number of children in the queue and the time after which the queue will transform into the arrangement you need to find. The next line contains string *s*, which represents the schoolchildren's initial arrangement. If the *...
Print string *a*, which describes the arrangement after *t* seconds. If the *i*-th position has a boy after the needed time, then the *i*-th character *a* must equal "B", otherwise it must equal "G".
[ "5 1\nBGGBG\n", "5 2\nBGGBG\n", "4 1\nGGGB\n" ]
[ "GBGGB\n", "GGBGB\n", "GGGB\n" ]
none
500
[ { "input": "5 1\nBGGBG", "output": "GBGGB" }, { "input": "5 2\nBGGBG", "output": "GGBGB" }, { "input": "4 1\nGGGB", "output": "GGGB" }, { "input": "2 1\nBB", "output": "BB" }, { "input": "2 1\nBG", "output": "GB" }, { "input": "6 2\nBBGBBG", "outpu...
1,694,619,009
2,147,483,647
Python 3
OK
TESTS
44
92
0
import sys n, t = map(int, input().split()) s = input().strip() for _ in range(t): i = 1 while i < n: if s[i] == 'G' and s[i - 1] == 'B': s = s[:i - 1] + 'G' + 'B' + s[i + 1:] i += 1 i += 1 print(s)
Title: Queue at the School Time Limit: None seconds Memory Limit: None megabytes Problem Description: During the break the schoolchildren, boys and girls, formed a queue of *n* people in the canteen. Initially the children stood in the order they entered the canteen. However, after a while the boys started feeling a...
```python import sys n, t = map(int, input().split()) s = input().strip() for _ in range(t): i = 1 while i < n: if s[i] == 'G' and s[i - 1] == 'B': s = s[:i - 1] + 'G' + 'B' + s[i + 1:] i += 1 i += 1 print(s) ```
3
538
B
Quasi Binary
PROGRAMMING
1,400
[ "constructive algorithms", "dp", "greedy", "implementation" ]
null
null
A number is called quasibinary if its decimal representation contains only digits 0 or 1. For example, numbers 0, 1, 101, 110011Β β€” are quasibinary and numbers 2, 12, 900 are not. You are given a positive integer *n*. Represent it as a sum of minimum number of quasibinary numbers.
The first line contains a single integer *n* (1<=≀<=*n*<=≀<=106).
In the first line print a single integer *k*Β β€” the minimum number of numbers in the representation of number *n* as a sum of quasibinary numbers. In the second line print *k* numbers β€” the elements of the sum. All these numbers should be quasibinary according to the definition above, their sum should equal *n*. Do not...
[ "9\n", "32\n" ]
[ "9\n1 1 1 1 1 1 1 1 1 \n", "3\n10 11 11 \n" ]
none
1,000
[ { "input": "9", "output": "9\n1 1 1 1 1 1 1 1 1 " }, { "input": "32", "output": "3\n10 11 11 " }, { "input": "1", "output": "1\n1 " }, { "input": "415", "output": "5\n1 101 101 101 111 " }, { "input": "10011", "output": "1\n10011 " }, { "input": "10201...
1,584,181,096
2,147,483,647
Python 3
OK
TESTS
25
109
307,200
#### B. Quasi Binary n=int(input()) result=[] while n: r=''.join(min(i,'1') for i in str(n)) n=n-int(r) result.append(r) print(len(result)) print(*result)
Title: Quasi Binary Time Limit: None seconds Memory Limit: None megabytes Problem Description: A number is called quasibinary if its decimal representation contains only digits 0 or 1. For example, numbers 0, 1, 101, 110011Β β€” are quasibinary and numbers 2, 12, 900 are not. You are given a positive integer *n*. Repr...
```python #### B. Quasi Binary n=int(input()) result=[] while n: r=''.join(min(i,'1') for i in str(n)) n=n-int(r) result.append(r) print(len(result)) print(*result) ```
3
1,006
E
Military Problem
PROGRAMMING
1,600
[ "dfs and similar", "graphs", "trees" ]
null
null
In this problem you will have to help Berland army with organizing their command delivery system. There are $n$ officers in Berland army. The first officer is the commander of the army, and he does not have any superiors. Every other officer has exactly one direct superior. If officer $a$ is the direct superior of off...
The first line of the input contains two integers $n$ and $q$ ($2 \le n \le 2 \cdot 10^5, 1 \le q \le 2 \cdot 10^5$) β€” the number of officers in Berland army and the number of queries. The second line of the input contains $n - 1$ integers $p_2, p_3, \dots, p_n$ ($1 \le p_i &lt; i$), where $p_i$ is the index of the di...
Print $q$ numbers, where the $i$-th number is the officer at the position $k_i$ in the list which describes the order in which officers will receive the command if it starts spreading from officer $u_i$. Print "-1" if the number of officers which receive the command is less than $k_i$. You should process queries indep...
[ "9 6\n1 1 1 3 5 3 5 7\n3 1\n1 5\n3 4\n7 3\n1 8\n1 9\n" ]
[ "3\n6\n8\n-1\n9\n4\n" ]
none
0
[ { "input": "9 6\n1 1 1 3 5 3 5 7\n3 1\n1 5\n3 4\n7 3\n1 8\n1 9", "output": "3\n6\n8\n-1\n9\n4" }, { "input": "2 1\n1\n1 1", "output": "1" }, { "input": "13 12\n1 1 1 1 1 1 1 1 1 1 1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1", "output": "1\n1\n1\n1\n1\n1\n1\n1\n1\n...
1,675,886,891
2,147,483,647
PyPy 3-64
OK
TESTS
31
1,964
20,480,000
n,q= map(int, input().split()) parent=[-1]+[int(x) -1 for x in input().split()] start=[0]*n end=[1]*n size=[1]*n path=[0]*n for i in range(n-1, 0, -1): size[parent[i]]+=size[i] for v in range(1, n): start[v]=end[parent[v]] end[v]=start[v]+1 end[parent[v]]+=size[v] path[start[v]]=v for j...
Title: Military Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: In this problem you will have to help Berland army with organizing their command delivery system. There are $n$ officers in Berland army. The first officer is the commander of the army, and he does not have any superi...
```python n,q= map(int, input().split()) parent=[-1]+[int(x) -1 for x in input().split()] start=[0]*n end=[1]*n size=[1]*n path=[0]*n for i in range(n-1, 0, -1): size[parent[i]]+=size[i] for v in range(1, n): start[v]=end[parent[v]] end[v]=start[v]+1 end[parent[v]]+=size[v] path[start[v]...
3
950
A
Left-handers, Right-handers and Ambidexters
PROGRAMMING
800
[ "implementation", "math" ]
null
null
You are at a water bowling training. There are *l* people who play with their left hand, *r* people, who play with their right hand, and *a* ambidexters, who can play with left or right hand. The coach decided to form a team of even number of players, exactly half of the players should play with their right hand, and ...
The only line contains three integers *l*, *r* and *a* (0<=≀<=*l*,<=*r*,<=*a*<=≀<=100) β€” the number of left-handers, the number of right-handers and the number of ambidexters at the training.
Print a single even integerΒ β€” the maximum number of players in the team. It is possible that the team can only have zero number of players.
[ "1 4 2\n", "5 5 5\n", "0 2 0\n" ]
[ "6\n", "14\n", "0\n" ]
In the first example you can form a team of 6 players. You should take the only left-hander and two ambidexters to play with left hand, and three right-handers to play with right hand. The only person left can't be taken into the team. In the second example you can form a team of 14 people. You have to take all five l...
500
[ { "input": "1 4 2", "output": "6" }, { "input": "5 5 5", "output": "14" }, { "input": "0 2 0", "output": "0" }, { "input": "30 70 34", "output": "128" }, { "input": "89 32 24", "output": "112" }, { "input": "89 44 77", "output": "210" }, { ...
1,682,859,780
2,147,483,647
Python 3
OK
TESTS
79
46
0
def li(): return list(map(int,input().split())) def gi(n): return [list(map(int,input().split())) for _ in range(n)] # File input # import sys # sys.stdin = open('user.txt','r') l,r,a = li() if max(l,r) - min(l,r) > a: print((min(l,r)+a) * 2) else: print((max(l,r) + (a - (max(l,r) - m...
Title: Left-handers, Right-handers and Ambidexters Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are at a water bowling training. There are *l* people who play with their left hand, *r* people, who play with their right hand, and *a* ambidexters, who can play with left or right hand....
```python def li(): return list(map(int,input().split())) def gi(n): return [list(map(int,input().split())) for _ in range(n)] # File input # import sys # sys.stdin = open('user.txt','r') l,r,a = li() if max(l,r) - min(l,r) > a: print((min(l,r)+a) * 2) else: print((max(l,r) + (a - (ma...
3
727
A
Transformation: from A to B
PROGRAMMING
1,000
[ "brute force", "dfs and similar", "math" ]
null
null
Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2Β·*x*); - append the digit 1 to the right of current number (that is, replace the number *x* by 10Β·*x*<=+<=1). You need to he...
The first line contains two positive integers *a* and *b* (1<=≀<=*a*<=&lt;<=*b*<=≀<=109)Β β€” the number which Vasily has and the number he wants to have.
If there is no way to get *b* from *a*, print "NO" (without quotes). Otherwise print three lines. On the first line print "YES" (without quotes). The second line should contain single integer *k*Β β€” the length of the transformation sequence. On the third line print the sequence of transformations *x*1,<=*x*2,<=...,<=*x...
[ "2 162\n", "4 42\n", "100 40021\n" ]
[ "YES\n5\n2 4 8 81 162 \n", "NO\n", "YES\n5\n100 200 2001 4002 40021 \n" ]
none
1,000
[ { "input": "2 162", "output": "YES\n5\n2 4 8 81 162 " }, { "input": "4 42", "output": "NO" }, { "input": "100 40021", "output": "YES\n5\n100 200 2001 4002 40021 " }, { "input": "1 111111111", "output": "YES\n9\n1 11 111 1111 11111 111111 1111111 11111111 111111111 " }, ...
1,594,193,638
2,147,483,647
PyPy 3
OK
TESTS
33
171
24,985,600
a, b = map(int, input().split()) seq = [] def d(s): if s > b: return False if s == b: return True for i in range(2): if i==0: hit = d(2*s) if hit: seq.append(2*s) return True if i...
Title: Transformation: from A to B Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2Β·*x*); - app...
```python a, b = map(int, input().split()) seq = [] def d(s): if s > b: return False if s == b: return True for i in range(2): if i==0: hit = d(2*s) if hit: seq.append(2*s) return True ...
3
409
F
000001
PROGRAMMING
1,900
[ "*special" ]
null
null
The input contains a single integer *a* (1<=≀<=*a*<=≀<=64). Output a single integer.
The input contains a single integer *a* (1<=≀<=*a*<=≀<=64).
Output a single integer.
[ "2\n", "4\n", "27\n", "42\n" ]
[ "1\n", "2\n", "5\n", "6\n" ]
none
0
[ { "input": "2", "output": "1" }, { "input": "4", "output": "2" }, { "input": "27", "output": "5" }, { "input": "42", "output": "6" }, { "input": "1", "output": "1" }, { "input": "3", "output": "1" }, { "input": "64", "output": "267" }...
1,692,211,470
2,147,483,647
PyPy 3-64
OK
TESTS
64
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: 000001 Time Limit: None seconds Memory Limit: None megabytes Problem Description: The input contains a single integer *a* (1<=≀<=*a*<=≀<=64). Output a single integer. Input Specification: The input contains a single integer *a* (1<=≀<=*a*<=≀<=64). Output Specification: Output a single integer. Demo Input:...
```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
465
A
inc ARG
PROGRAMMING
900
[ "implementation" ]
null
null
Sergey is testing a next-generation processor. Instead of bytes the processor works with memory cells consisting of *n* bits. These bits are numbered from 1 to *n*. An integer is stored in the cell in the following way: the least significant bit is stored in the first bit of the cell, the next significant bit is stored...
The first line contains a single integer *n* (1<=≀<=*n*<=≀<=100) β€” the number of bits in the cell. The second line contains a string consisting of *n* characters β€” the initial state of the cell. The first character denotes the state of the first bit of the cell. The second character denotes the second least significan...
Print a single integer β€” the number of bits in the cell which change their state after we add 1 to the cell.
[ "4\n1100\n", "4\n1111\n" ]
[ "3\n", "4\n" ]
In the first sample the cell ends up with value 0010, in the second sample β€” with 0000.
500
[ { "input": "4\n1100", "output": "3" }, { "input": "4\n1111", "output": "4" }, { "input": "1\n0", "output": "1" }, { "input": "1\n1", "output": "1" }, { "input": "2\n00", "output": "1" }, { "input": "2\n01", "output": "1" }, { "input": "2\n1...
1,696,219,782
2,147,483,647
PyPy 3-64
OK
TESTS
29
78
0
n = int(input()) cells = input() if cells.find('0') == -1: print(n) else: before = int(cells[::-1], 2) after = before + 1 print(str(bin(before ^ after)).count('1'))
Title: inc ARG Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sergey is testing a next-generation processor. Instead of bytes the processor works with memory cells consisting of *n* bits. These bits are numbered from 1 to *n*. An integer is stored in the cell in the following way: the lea...
```python n = int(input()) cells = input() if cells.find('0') == -1: print(n) else: before = int(cells[::-1], 2) after = before + 1 print(str(bin(before ^ after)).count('1')) ```
3
4
A
Watermelon
PROGRAMMING
800
[ "brute force", "math" ]
A. Watermelon
1
64
One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dying of thirst, and decided to divide the berry, however they faced a hard problem. Pete and ...
The first (and the only) input line contains integer number *w* (1<=≀<=*w*<=≀<=100) β€” the weight of the watermelon bought by the boys.
Print YES, if the boys can divide the watermelon into two parts, each of them weighing even number of kilos; and NO in the opposite case.
[ "8\n" ]
[ "YES\n" ]
For example, the boys can divide the watermelon into two parts of 2 and 6 kilos respectively (another variant β€” two parts of 4 and 4 kilos).
0
[ { "input": "8", "output": "YES" }, { "input": "5", "output": "NO" }, { "input": "4", "output": "YES" }, { "input": "3", "output": "NO" }, { "input": "2", "output": "NO" }, { "input": "1", "output": "NO" }, { "input": "7", "output": "NO"...
1,693,388,366
2,147,483,647
Python 3
OK
TESTS
20
92
0
w = int(input()) if w%2 == 0 and 100>= w >= 3: print('YES') else: print('NO')
Title: Watermelon Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dyin...
```python w = int(input()) if w%2 == 0 and 100>= w >= 3: print('YES') else: print('NO') ```
3.954
61
A
Ultra-Fast Mathematician
PROGRAMMING
800
[ "implementation" ]
A. Ultra-Fast Mathematician
2
256
Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 1018 numbers in a single second. One day in 230 AD Shapur was trying to find out if any one can possibly do...
There are two lines in each input. Each of them contains a single number. It is guaranteed that the numbers are made from 0 and 1 only and that their length is same. The numbers may start with 0. The length of each number doesn't exceed 100.
Write one line β€” the corresponding answer. Do not omit the leading 0s.
[ "1010100\n0100101\n", "000\n111\n", "1110\n1010\n", "01110\n01100\n" ]
[ "1110001\n", "111\n", "0100\n", "00010\n" ]
none
500
[ { "input": "1010100\n0100101", "output": "1110001" }, { "input": "000\n111", "output": "111" }, { "input": "1110\n1010", "output": "0100" }, { "input": "01110\n01100", "output": "00010" }, { "input": "011101\n000001", "output": "011100" }, { "input": "...
1,592,933,269
2,147,483,647
PyPy 3
OK
TESTS
102
140
20,172,800
#!/usr/bin/python3 # n, t = input().split(" ") # a = input() # n = int(n) # t = int(t) # s = list(a) # while(t != 0): # for i in range(n-1): # if s[i] == 'B' and s[i+1] == 'G': # s[i] = 'G' # s[i + 1] = 'B' # t -= 1 # break # print("".join(s)) # t = int(in...
Title: Ultra-Fast Mathematician Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 10...
```python #!/usr/bin/python3 # n, t = input().split(" ") # a = input() # n = int(n) # t = int(t) # s = list(a) # while(t != 0): # for i in range(n-1): # if s[i] == 'B' and s[i+1] == 'G': # s[i] = 'G' # s[i + 1] = 'B' # t -= 1 # break # print("".join(s)) # ...
3.927425
281
A
Word Capitalization
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word. Note, that during capitalization all the letters except the first one remains unchanged.
A single line contains a non-empty word. This word consists of lowercase and uppercase English letters. The length of the word will not exceed 103.
Output the given word after capitalization.
[ "ApPLe\n", "konjac\n" ]
[ "ApPLe\n", "Konjac\n" ]
none
500
[ { "input": "ApPLe", "output": "ApPLe" }, { "input": "konjac", "output": "Konjac" }, { "input": "a", "output": "A" }, { "input": "A", "output": "A" }, { "input": "z", "output": "Z" }, { "input": "ABACABA", "output": "ABACABA" }, { "input": "...
1,697,703,650
2,147,483,647
PyPy 3
OK
TESTS
25
184
0
s = input() ans = s[0].capitalize() + s[1::] print(ans)
Title: Word Capitalization Time Limit: None seconds Memory Limit: None megabytes Problem Description: Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word. Note, that during capitalization all the letters except the first one remains unchanged. Input...
```python s = input() ans = s[0].capitalize() + s[1::] print(ans) ```
3
1,009
A
Game Shopping
PROGRAMMING
800
[ "implementation" ]
null
null
Maxim wants to buy some games at the local game shop. There are $n$ games in the shop, the $i$-th game costs $c_i$. Maxim has a wallet which can be represented as an array of integers. His wallet contains $m$ bills, the $j$-th bill has value $a_j$. Games in the shop are ordered from left to right, Maxim tries to buy ...
The first line of the input contains two integers $n$ and $m$ ($1 \le n, m \le 1000$) β€” the number of games and the number of bills in Maxim's wallet. The second line of the input contains $n$ integers $c_1, c_2, \dots, c_n$ ($1 \le c_i \le 1000$), where $c_i$ is the cost of the $i$-th game. The third line of the inp...
Print a single integer β€” the number of games Maxim will buy.
[ "5 4\n2 4 5 2 4\n5 3 4 6\n", "5 2\n20 40 50 20 40\n19 20\n", "6 4\n4 8 15 16 23 42\n1000 1000 1000 1000\n" ]
[ "3\n", "0\n", "4\n" ]
The first example is described in the problem statement. In the second example Maxim cannot buy any game because the value of the first bill in his wallet is smaller than the cost of any game in the shop. In the third example the values of the bills in Maxim's wallet are large enough to buy any game he encounter unti...
0
[ { "input": "5 4\n2 4 5 2 4\n5 3 4 6", "output": "3" }, { "input": "5 2\n20 40 50 20 40\n19 20", "output": "0" }, { "input": "6 4\n4 8 15 16 23 42\n1000 1000 1000 1000", "output": "4" }, { "input": "5 1\n1 1 1 1 1\n5", "output": "1" }, { "input": "5 1\n10 1 1 1 1\n...
1,592,372,457
2,147,483,647
Python 3
OK
TESTS
19
124
307,200
n,m=map(int,input().split()) l=list(map(int,input().split())) k=list(map(int,input().split())) i,j = 0,0 count=0 while i<len(l) and j<len(k): if l[i]<=k[j]: count+=1 j+=1 i+=1 else: i+=1 print(count)
Title: Game Shopping Time Limit: None seconds Memory Limit: None megabytes Problem Description: Maxim wants to buy some games at the local game shop. There are $n$ games in the shop, the $i$-th game costs $c_i$. Maxim has a wallet which can be represented as an array of integers. His wallet contains $m$ bills, the ...
```python n,m=map(int,input().split()) l=list(map(int,input().split())) k=list(map(int,input().split())) i,j = 0,0 count=0 while i<len(l) and j<len(k): if l[i]<=k[j]: count+=1 j+=1 i+=1 else: i+=1 print(count) ```
3
981
A
Antipalindrome
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" are not. A substring $s[l \ldots r]$ ($1<=\leq<=l<=\leq<=r<=\leq<=|s|$) of a string $s<==<=s_{1}s_{2}...
The first line contains a non-empty string $s$ with length at most $50$ characters, containing lowercase English letters only.
If there is such a substring in $s$ that is not a palindrome, print the maximum length of such a substring. Otherwise print $0$. Note that there can be multiple longest substrings that are not palindromes, but their length is unique.
[ "mew\n", "wuffuw\n", "qqqqqqqq\n" ]
[ "3\n", "5\n", "0\n" ]
"mew" is not a palindrome, so the longest substring of it that is not a palindrome, is the string "mew" itself. Thus, the answer for the first example is $3$. The string "uffuw" is one of the longest non-palindrome substrings (of length $5$) of the string "wuffuw", so the answer for the second example is $5$. All sub...
500
[ { "input": "mew", "output": "3" }, { "input": "wuffuw", "output": "5" }, { "input": "qqqqqqqq", "output": "0" }, { "input": "ijvji", "output": "4" }, { "input": "iiiiiii", "output": "0" }, { "input": "wobervhvvkihcuyjtmqhaaigvvgiaahqmtjyuchikvvhvrebow"...
1,638,459,564
2,147,483,647
Python 3
OK
TESTS
133
46
0
s = input() f = False d = len(s) while s != '': for i in range(len(s) // 2): if s[i] != s[len(s) - 1 -i]: f = True break if f: break else: s = s[1:] d -= 1 print(d)
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 s = input() f = False d = len(s) while s != '': for i in range(len(s) // 2): if s[i] != s[len(s) - 1 -i]: f = True break if f: break else: s = s[1:] d -= 1 print(d) ```
3
32
B
Borze
PROGRAMMING
800
[ "expression parsing", "implementation" ]
B. Borze
2
256
Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as Β«.Β», 1 as Β«-.Β» and 2 as Β«--Β». You are to decode the Borze code, i.e. to find out the ternary number given its representation in Borze alphabet.
The first line contains a number in Borze code. The length of the string is between 1 and 200 characters. It's guaranteed that the given string is a valid Borze code of some ternary number (this number can have leading zeroes).
Output the decoded ternary number. It can have leading zeroes.
[ ".-.--\n", "--.\n", "-..-.--\n" ]
[ "012", "20", "1012" ]
none
1,000
[ { "input": ".-.--", "output": "012" }, { "input": "--.", "output": "20" }, { "input": "-..-.--", "output": "1012" }, { "input": "---..", "output": "210" }, { "input": "..--.---..", "output": "0020210" }, { "input": "-.....----.", "output": "1000022...
1,628,750,587
2,147,483,647
Python 3
OK
TESTS
30
156
6,758,400
x=input() x=x.replace('--','2',x.count('--')) x=x.replace('-.','1',x.count('-.')) x=x.replace('.','0',x.count('.')) print(x)
Title: Borze Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as Β«.Β», 1 as Β«-.Β» and 2 as Β«--Β». You are to decode the Borze code, i.e. to find out the ternary ...
```python x=input() x=x.replace('--','2',x.count('--')) x=x.replace('-.','1',x.count('-.')) x=x.replace('.','0',x.count('.')) print(x) ```
3.948411
760
B
Frodo and pillows
PROGRAMMING
1,500
[ "binary search", "greedy" ]
null
null
*n* hobbits are planning to spend the night at Frodo's house. Frodo has *n* beds standing in a row and *m* pillows (*n*<=≀<=*m*). Each hobbit needs a bed and at least one pillow to sleep, however, everyone wants as many pillows as possible. Of course, it's not always possible to share pillows equally, but any hobbit ge...
The only line contain three integers *n*, *m* and *k* (1<=≀<=*n*<=≀<=*m*<=≀<=109, 1<=≀<=*k*<=≀<=*n*)Β β€” the number of hobbits, the number of pillows and the number of Frodo's bed.
Print single integerΒ β€” the maximum number of pillows Frodo can have so that no one is hurt.
[ "4 6 2\n", "3 10 3\n", "3 6 1\n" ]
[ "2\n", "4\n", "3\n" ]
In the first example Frodo can have at most two pillows. In this case, he can give two pillows to the hobbit on the first bed, and one pillow to each of the hobbits on the third and the fourth beds. In the second example Frodo can take at most four pillows, giving three pillows to each of the others. In the third exa...
1,000
[ { "input": "4 6 2", "output": "2" }, { "input": "3 10 3", "output": "4" }, { "input": "3 6 1", "output": "3" }, { "input": "3 3 3", "output": "1" }, { "input": "1 1 1", "output": "1" }, { "input": "1 1000000000 1", "output": "1000000000" }, { ...
1,624,372,490
2,147,483,647
PyPy 3
OK
TESTS
69
888
1,638,400
n,m,k = list(map(int, input().split(' '))) extra = m - n maxi = 1 if n == 1: print(m) elif n == 2: if m%2 == 0: print(m//2) else: print(m//2 +1) else: for i in range(extra): stepPillows = 1 + min(k-1,i) + min(n-k,i) if extra >= stepPillows: extra -= stepPill...
Title: Frodo and pillows Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* hobbits are planning to spend the night at Frodo's house. Frodo has *n* beds standing in a row and *m* pillows (*n*<=≀<=*m*). Each hobbit needs a bed and at least one pillow to sleep, however, everyone wants as ma...
```python n,m,k = list(map(int, input().split(' '))) extra = m - n maxi = 1 if n == 1: print(m) elif n == 2: if m%2 == 0: print(m//2) else: print(m//2 +1) else: for i in range(extra): stepPillows = 1 + min(k-1,i) + min(n-k,i) if extra >= stepPillows: extra -...
3
745
A
Hongcow Learns the Cyclic Shift
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has decided to try to make new words from this one. He starts by taking the word he just learned how to spell, and moves the last character ...
The first line of input will be a single string *s* (1<=≀<=|*s*|<=≀<=50), the word Hongcow initially learns how to spell. The string *s* consists only of lowercase English letters ('a'–'z').
Output a single integer equal to the number of distinct strings that Hongcow can obtain by applying the cyclic shift arbitrarily many times to the given string.
[ "abcd\n", "bbb\n", "yzyz\n" ]
[ "4\n", "1\n", "2\n" ]
For the first sample, the strings Hongcow can generate are "abcd", "dabc", "cdab", and "bcda". For the second sample, no matter how many times Hongcow does the cyclic shift, Hongcow can only generate "bbb". For the third sample, the two strings Hongcow can generate are "yzyz" and "zyzy".
500
[ { "input": "abcd", "output": "4" }, { "input": "bbb", "output": "1" }, { "input": "yzyz", "output": "2" }, { "input": "abcdefghijklmnopqrstuvwxyabcdefghijklmnopqrstuvwxy", "output": "25" }, { "input": "zclkjadoprqronzclkjadoprqronzclkjadoprqron", "output": "14...
1,532,685,004
2,147,483,647
Python 3
OK
TESTS
28
124
0
s = input() ans = set() for l in range(len(s)): t = s[l:] + s[:l] ans.add(t) print(len(ans))
Title: Hongcow Learns the Cyclic Shift Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has decided to try to m...
```python s = input() ans = set() for l in range(len(s)): t = s[l:] + s[:l] ans.add(t) print(len(ans)) ```
3
791
A
Bear and Big Brother
PROGRAMMING
800
[ "implementation" ]
null
null
Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or equal to his brother's weight. Limak eats a lot and his weight is tripled after every year, while Bob's we...
The only line of the input contains two integers *a* and *b* (1<=≀<=*a*<=≀<=*b*<=≀<=10)Β β€” the weight of Limak and the weight of Bob respectively.
Print one integer, denoting the integer number of years after which Limak will become strictly larger than Bob.
[ "4 7\n", "4 9\n", "1 1\n" ]
[ "2\n", "3\n", "1\n" ]
In the first sample, Limak weighs 4 and Bob weighs 7 initially. After one year their weights are 4Β·3 = 12 and 7Β·2 = 14 respectively (one weight is tripled while the other one is doubled). Limak isn't larger than Bob yet. After the second year weights are 36 and 28, so the first weight is greater than the second one. Li...
500
[ { "input": "4 7", "output": "2" }, { "input": "4 9", "output": "3" }, { "input": "1 1", "output": "1" }, { "input": "4 6", "output": "2" }, { "input": "1 10", "output": "6" }, { "input": "1 1", "output": "1" }, { "input": "1 2", "output...
1,695,110,166
2,147,483,647
Python 3
OK
TESTS
62
46
0
# -*- coding: utf-8 -*- """ Created on Tue Sep 19 15:47:18 2023 @author: lenovo """ a,b=map(int,input().split()) s=0 while a<=b: a*=3 b*=2 s=s+1 print(s)
Title: Bear and Big Brother Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or e...
```python # -*- coding: utf-8 -*- """ Created on Tue Sep 19 15:47:18 2023 @author: lenovo """ a,b=map(int,input().split()) s=0 while a<=b: a*=3 b*=2 s=s+1 print(s) ```
3
412
B
Network Configuration
PROGRAMMING
900
[ "greedy", "sortings" ]
null
null
The R1 company wants to hold a web search championship. There were *n* computers given for the competition, each of them is connected to the Internet. The organizers believe that the data transfer speed directly affects the result. The higher the speed of the Internet is, the faster the participant will find the necess...
The first line contains two space-separated integers *n* and *k* (1<=≀<=*k*<=≀<=*n*<=≀<=100) β€” the number of computers and the number of participants, respectively. In the second line you have a space-separated sequence consisting of *n* integers: *a*1,<=*a*2,<=...,<=*a**n* (16<=≀<=*a**i*<=≀<=32768); number *a**i* deno...
Print a single integer β€” the maximum Internet speed value. It is guaranteed that the answer to the problem is always an integer.
[ "3 2\n40 20 30\n", "6 4\n100 20 40 20 50 50\n" ]
[ "30\n", "40\n" ]
In the first test case the organizers can cut the first computer's speed to 30 kilobits. Then two computers (the first and the third one) will have the same speed of 30 kilobits. They should be used as the participants' computers. This answer is optimal.
1,000
[ { "input": "3 2\n40 20 30", "output": "30" }, { "input": "6 4\n100 20 40 20 50 50", "output": "40" }, { "input": "1 1\n16", "output": "16" }, { "input": "2 1\n10000 17", "output": "10000" }, { "input": "2 2\n200 300", "output": "200" }, { "input": "3 1...
1,698,418,610
2,147,483,647
PyPy 3-64
OK
TESTS
34
62
0
n,k=map(int,input().split()) a=[int(i) for i in input().split()] a.sort(reverse=True) print(min(a[:k]))
Title: Network Configuration Time Limit: None seconds Memory Limit: None megabytes Problem Description: The R1 company wants to hold a web search championship. There were *n* computers given for the competition, each of them is connected to the Internet. The organizers believe that the data transfer speed directly a...
```python n,k=map(int,input().split()) a=[int(i) for i in input().split()] a.sort(reverse=True) print(min(a[:k])) ```
3
251
A
Points on Line
PROGRAMMING
1,300
[ "binary search", "combinatorics", "two pointers" ]
null
null
Little Petya likes points a lot. Recently his mom has presented him *n* points lying on the line *OX*. Now Petya is wondering in how many ways he can choose three distinct points so that the distance between the two farthest of them doesn't exceed *d*. Note that the order of the points inside the group of three chosen...
The first line contains two integers: *n* and *d* (1<=≀<=*n*<=≀<=105;Β 1<=≀<=*d*<=≀<=109). The next line contains *n* integers *x*1,<=*x*2,<=...,<=*x**n*, their absolute value doesn't exceed 109 β€” the *x*-coordinates of the points that Petya has got. It is guaranteed that the coordinates of the points in the input stri...
Print a single integer β€” the number of groups of three points, where the distance between two farthest points doesn't exceed *d*. Please do not use the %lld specifier to read or write 64-bit integers in Π‘++. It is preferred to use the cin, cout streams or the %I64d specifier.
[ "4 3\n1 2 3 4\n", "4 2\n-3 -2 -1 0\n", "5 19\n1 10 20 30 50\n" ]
[ "4\n", "2\n", "1\n" ]
In the first sample any group of three points meets our conditions. In the seconds sample only 2 groups of three points meet our conditions: {-3, -2, -1} and {-2, -1, 0}. In the third sample only one group does: {1, 10, 20}.
500
[ { "input": "4 3\n1 2 3 4", "output": "4" }, { "input": "4 2\n-3 -2 -1 0", "output": "2" }, { "input": "5 19\n1 10 20 30 50", "output": "1" }, { "input": "10 5\n31 36 43 47 48 50 56 69 71 86", "output": "2" }, { "input": "10 50\n1 4 20 27 65 79 82 83 99 100", "...
1,378,949,057
2,147,483,647
Python 3
OK
TESTS
39
1,652
9,420,800
def Search(L,aa,x): a=aa b=len(L) while(b-a>1): i=(b+a)//2 if(L[i]>x): b=i elif(L[i]<x): a=i else: return (i+1)-aa-1 return b-aa-1 import math n,d=map(int,input().split()) P=list(map(int,input().split())) ans=0 for i in range(n): ...
Title: Points on Line Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya likes points a lot. Recently his mom has presented him *n* points lying on the line *OX*. Now Petya is wondering in how many ways he can choose three distinct points so that the distance between the two fart...
```python def Search(L,aa,x): a=aa b=len(L) while(b-a>1): i=(b+a)//2 if(L[i]>x): b=i elif(L[i]<x): a=i else: return (i+1)-aa-1 return b-aa-1 import math n,d=map(int,input().split()) P=list(map(int,input().split())) ans=0 for i in ran...
3
32
A
Reconnaissance
PROGRAMMING
800
[ "brute force" ]
A. Reconnaissance
2
256
According to the regulations of Berland's army, a reconnaissance unit should consist of exactly two soldiers. Since these two soldiers shouldn't differ much, their heights can differ by at most *d* centimeters. Captain Bob has *n* soldiers in his detachment. Their heights are *a*1,<=*a*2,<=...,<=*a**n* centimeters. Som...
The first line contains two integers *n* and *d* (1<=≀<=*n*<=≀<=1000,<=1<=≀<=*d*<=≀<=109) β€” amount of soldiers in Bob's detachment and the maximum allowed height difference respectively. The second line contains *n* space-separated integers β€” heights of all the soldiers in Bob's detachment. These numbers don't exceed 1...
Output one number β€” amount of ways to form a reconnaissance unit of two soldiers, whose height difference doesn't exceed *d*.
[ "5 10\n10 20 50 60 65\n", "5 1\n55 30 29 31 55\n" ]
[ "6\n", "6\n" ]
none
500
[ { "input": "5 10\n10 20 50 60 65", "output": "6" }, { "input": "5 1\n55 30 29 31 55", "output": "6" }, { "input": "6 10\n4 6 4 1 9 3", "output": "30" }, { "input": "7 100\n19 1694 261 162 1 234 513", "output": "8" }, { "input": "8 42\n37 53 74 187 568 22 5 65", ...
1,545,296,703
2,147,483,647
Python 3
OK
TESTS
32
1,964
0
string = input().split(' ') n = int(string[0]) d = int(string[1]) heights = input().split(' ') total = 0 for i in range(n): for j in range(n): if i != j: if abs(int(heights[i])-int(heights[j])) <= d: total += 1 print(total)
Title: Reconnaissance Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: According to the regulations of Berland's army, a reconnaissance unit should consist of exactly two soldiers. Since these two soldiers shouldn't differ much, their heights can differ by at most *d* centimeters. Captain Bob h...
```python string = input().split(' ') n = int(string[0]) d = int(string[1]) heights = input().split(' ') total = 0 for i in range(n): for j in range(n): if i != j: if abs(int(heights[i])-int(heights[j])) <= d: total += 1 print(total) ```
3.509
387
B
George and Round
PROGRAMMING
1,200
[ "brute force", "greedy", "two pointers" ]
null
null
George decided to prepare a Codesecrof round, so he has prepared *m* problems for the round. Let's number the problems with integers 1 through *m*. George estimates the *i*-th problem's complexity by integer *b**i*. To make the round good, he needs to put at least *n* problems there. Besides, he needs to have at least...
The first line contains two integers *n* and *m* (1<=≀<=*n*,<=*m*<=≀<=3000) β€” the minimal number of problems in a good round and the number of problems George's prepared. The second line contains space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≀<=*a*1<=&lt;<=*a*2<=&lt;<=...<=&lt;<=*a**n*<=≀<=106) β€” the requirem...
Print a single integer β€” the answer to the problem.
[ "3 5\n1 2 3\n1 2 2 3 3\n", "3 5\n1 2 3\n1 1 1 1 1\n", "3 1\n2 3 4\n1\n" ]
[ "0\n", "2\n", "3\n" ]
In the first sample the set of the prepared problems meets the requirements for a good round. In the second sample, it is enough to come up with and prepare two problems with complexities 2 and 3 to get a good round. In the third sample it is very easy to get a good round if come up with and prepare extra problems wi...
1,000
[ { "input": "3 5\n1 2 3\n1 2 2 3 3", "output": "0" }, { "input": "3 5\n1 2 3\n1 1 1 1 1", "output": "2" }, { "input": "3 1\n2 3 4\n1", "output": "3" }, { "input": "29 100\n20 32 41 67 72 155 331 382 399 412 465 470 484 511 515 529 616 637 679 715 733 763 826 843 862 903 925 97...
1,618,923,181
2,147,483,647
Python 3
OK
TESTS
41
78
307,200
n, k = map(int, input().split()) rounds = list(map(int, input().split())) problems = list(map(int, input().split())) i = 0 j = 0 count = n while i < n and j < k: if rounds[i] <= problems[j]: count-=1 i+=1 j+=1 else: j+=1 print(count)
Title: George and Round Time Limit: None seconds Memory Limit: None megabytes Problem Description: George decided to prepare a Codesecrof round, so he has prepared *m* problems for the round. Let's number the problems with integers 1 through *m*. George estimates the *i*-th problem's complexity by integer *b**i*. T...
```python n, k = map(int, input().split()) rounds = list(map(int, input().split())) problems = list(map(int, input().split())) i = 0 j = 0 count = n while i < n and j < k: if rounds[i] <= problems[j]: count-=1 i+=1 j+=1 else: j+=1 print(count) ```
3
998
A
Balloons
PROGRAMMING
1,000
[ "constructive algorithms", "implementation" ]
null
null
There are quite a lot of ways to have fun with inflatable balloons. For example, you can fill them with water and see what happens. Grigory and Andrew have the same opinion. So, once upon a time, they went to the shop and bought $n$ packets with inflatable balloons, where $i$-th of them has exactly $a_i$ balloons insi...
The first line of input contains a single integer $n$ ($1 \le n \le 10$)Β β€” the number of packets with balloons. The second line contains $n$ integers: $a_1$, $a_2$, $\ldots$, $a_n$ ($1 \le a_i \le 1000$)Β β€” the number of balloons inside the corresponding packet.
If it's impossible to divide the balloons satisfying the conditions above, print $-1$. Otherwise, print an integer $k$Β β€” the number of packets to give to Grigory followed by $k$ distinct integers from $1$ to $n$Β β€” the indices of those. The order of packets doesn't matter. If there are multiple ways to divide balloons...
[ "3\n1 2 1\n", "2\n5 5\n", "1\n10\n" ]
[ "2\n1 2\n", "-1\n", "-1\n" ]
In the first test Grigory gets $3$ balloons in total while Andrey gets $1$. In the second test there's only one way to divide the packets which leads to equal numbers of balloons. In the third test one of the boys won't get a packet at all.
500
[ { "input": "3\n1 2 1", "output": "1\n1" }, { "input": "2\n5 5", "output": "-1" }, { "input": "1\n10", "output": "-1" }, { "input": "1\n1", "output": "-1" }, { "input": "10\n1 1 1 1 1 1 1 1 1 1", "output": "1\n1" }, { "input": "10\n1 1 1 1 1 1 1 1 1 9",...
1,530,805,600
400
Python 3
OK
TESTS
49
124
0
n = int(input()) arr = list(map(int, input().split())) if n == 1: print(-1) exit(0) z = 0 for i in range(n): if arr[i] < arr[z]: z = i if arr[z] != sum(arr) - arr[z]: print(1) print(z + 1) else: print(-1)
Title: Balloons Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are quite a lot of ways to have fun with inflatable balloons. For example, you can fill them with water and see what happens. Grigory and Andrew have the same opinion. So, once upon a time, they went to the shop and bou...
```python n = int(input()) arr = list(map(int, input().split())) if n == 1: print(-1) exit(0) z = 0 for i in range(n): if arr[i] < arr[z]: z = i if arr[z] != sum(arr) - arr[z]: print(1) print(z + 1) else: print(-1) ```
3
41
B
Martian Dollar
PROGRAMMING
1,400
[ "brute force" ]
B. Martian Dollar
2
256
One day Vasya got hold of information on the Martian dollar course in bourles for the next *n* days. The buying prices and the selling prices for one dollar on day *i* are the same and are equal to *a**i*. Vasya has *b* bourles. He can buy a certain number of dollars and then sell it no more than once in *n* days. Acco...
The first line contains two integers *n* and *b* (1<=≀<=*n*,<=*b*<=≀<=2000) β€” the number of days and the initial number of money in bourles. The next line contains *n* integers *a**i* (1<=≀<=*a**i*<=≀<=2000) β€” the prices of Martian dollars.
Print the single number β€” which maximal sum of money in bourles can Vasya get by the end of day *n*.
[ "2 4\n3 7\n", "4 10\n4 3 2 1\n", "4 10\n4 2 3 1\n" ]
[ "8\n", "10\n", "15\n" ]
none
1,000
[ { "input": "2 4\n3 7", "output": "8" }, { "input": "4 10\n4 3 2 1", "output": "10" }, { "input": "4 10\n4 2 3 1", "output": "15" }, { "input": "2 755\n51 160", "output": "2281" }, { "input": "3 385\n978 1604 1888", "output": "385" }, { "input": "4 1663...
1,605,309,489
2,147,483,647
PyPy 3
OK
TESTS
80
560
1,945,600
n, b = map(int, input().split()) a = list(map(int, input().split())) ans = 0 for i in range(n): for j in range(i, n): ans = max(ans, (b//a[i])*a[j] + b%a[i]) print(ans)
Title: Martian Dollar Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya got hold of information on the Martian dollar course in bourles for the next *n* days. The buying prices and the selling prices for one dollar on day *i* are the same and are equal to *a**i*. Vasya has *b* bour...
```python n, b = map(int, input().split()) a = list(map(int, input().split())) ans = 0 for i in range(n): for j in range(i, n): ans = max(ans, (b//a[i])*a[j] + b%a[i]) print(ans) ```
3.856376
479
A
Expression
PROGRAMMING
1,000
[ "brute force", "math" ]
null
null
Petya studies in a school and he adores Maths. His class has been studying arithmetic expressions. On the last class the teacher wrote three positive integers *a*, *b*, *c* on the blackboard. The task was to insert signs of operations '+' and '*', and probably brackets between the numbers so that the value of the resul...
The input contains three integers *a*, *b* and *c*, each on a single line (1<=≀<=*a*,<=*b*,<=*c*<=≀<=10).
Print the maximum value of the expression that you can obtain.
[ "1\n2\n3\n", "2\n10\n3\n" ]
[ "9\n", "60\n" ]
none
500
[ { "input": "1\n2\n3", "output": "9" }, { "input": "2\n10\n3", "output": "60" }, { "input": "1\n1\n1", "output": "3" }, { "input": "1\n2\n1", "output": "4" }, { "input": "10\n10\n10", "output": "1000" }, { "input": "5\n1\n3", "output": "20" }, {...
1,693,923,784
2,147,483,647
PyPy 3-64
OK
TESTS
29
62
0
x = int(input()) y = int(input()) z = int(input()) list_1 = [] list_1.append((x+y)*z) list_1.append(x*(y+z)) list_1.append(x+y+z) list_1.append(x*y*z) print(max(list_1))
Title: Expression Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya studies in a school and he adores Maths. His class has been studying arithmetic expressions. On the last class the teacher wrote three positive integers *a*, *b*, *c* on the blackboard. The task was to insert signs of ...
```python x = int(input()) y = int(input()) z = int(input()) list_1 = [] list_1.append((x+y)*z) list_1.append(x*(y+z)) list_1.append(x+y+z) list_1.append(x*y*z) print(max(list_1)) ```
3
34
A
Reconnaissance 2
PROGRAMMING
800
[ "implementation" ]
A. Reconnaissance 2
2
256
*n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So each of them will be less noticeable with the other. Output any pair of soldiers that can form a ...
The first line contains integer *n* (2<=≀<=*n*<=≀<=100) β€” amount of soldiers. Then follow the heights of the soldiers in their order in the circle β€” *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≀<=*a**i*<=≀<=1000). The soldier heights are given in clockwise or counterclockwise direction.
Output two integers β€” indexes of neighbouring soldiers, who should form a reconnaissance unit. If there are many optimum solutions, output any of them. Remember, that the soldiers stand in a circle.
[ "5\n10 12 13 15 10\n", "4\n10 20 30 40\n" ]
[ "5 1\n", "1 2\n" ]
none
500
[ { "input": "5\n10 12 13 15 10", "output": "5 1" }, { "input": "4\n10 20 30 40", "output": "1 2" }, { "input": "6\n744 359 230 586 944 442", "output": "2 3" }, { "input": "5\n826 747 849 687 437", "output": "1 2" }, { "input": "5\n999 999 993 969 999", "output"...
1,617,960,596
2,147,483,647
PyPy 3
OK
TESTS
20
186
0
n=int(input()) l=list(map(int,input().split())) mi=100000000000 ans=-1 for i in range(n): if(abs(l[i]-l[i-1])<mi): ans=((i-1+n))%n mi=abs(l[i]-l[i-1]) print(ans+1,(ans+1)%n+1)
Title: Reconnaissance 2 Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: *n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So...
```python n=int(input()) l=list(map(int,input().split())) mi=100000000000 ans=-1 for i in range(n): if(abs(l[i]-l[i-1])<mi): ans=((i-1+n))%n mi=abs(l[i]-l[i-1]) print(ans+1,(ans+1)%n+1) ```
3.9535
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,632,804,534
2,147,483,647
Python 3
OK
TESTS
81
124
6,963,200
n=int(input()) matrix=[] l1=[] for i in range(n): l1=[int(x) for x in input().split()] matrix.append(l1) for i in range(3): sum=0 for j in range(n): sum=sum+matrix[j][i] if sum==0: res=1 continue else: res=0 break if res==1: print("YE...
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python n=int(input()) matrix=[] l1=[] for i in range(n): l1=[int(x) for x in input().split()] matrix.append(l1) for i in range(3): sum=0 for j in range(n): sum=sum+matrix[j][i] if sum==0: res=1 continue else: res=0 break if res==1: ...
3.95603
977
A
Wrong Subtraction
PROGRAMMING
800
[ "implementation" ]
null
null
Little girl Tanya is learning how to decrease a number by one, but she does it wrong with a number consisting of two or more digits. Tanya subtracts one from a number by the following algorithm: - if the last digit of the number is non-zero, she decreases the number by one; - if the last digit of the number is zero,...
The first line of the input contains two integer numbers $n$ and $k$ ($2 \le n \le 10^9$, $1 \le k \le 50$) β€” the number from which Tanya will subtract and the number of subtractions correspondingly.
Print one integer number β€” the result of the decreasing $n$ by one $k$ times. It is guaranteed that the result will be positive integer number.
[ "512 4\n", "1000000000 9\n" ]
[ "50\n", "1\n" ]
The first example corresponds to the following sequence: $512 \rightarrow 511 \rightarrow 510 \rightarrow 51 \rightarrow 50$.
0
[ { "input": "512 4", "output": "50" }, { "input": "1000000000 9", "output": "1" }, { "input": "131203 11", "output": "12" }, { "input": "999999999 50", "output": "9999" }, { "input": "999999999 49", "output": "99990" }, { "input": "131203 9", "outpu...
1,695,537,933
2,147,483,647
Python 3
OK
TESTS
11
46
0
num, r = map(int, input().split()) for _ in range(r): if num%10 == 0: num = num//10 else: num -= 1 print(num)
Title: Wrong Subtraction Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little girl Tanya is learning how to decrease a number by one, but she does it wrong with a number consisting of two or more digits. Tanya subtracts one from a number by the following algorithm: - if the last digit ...
```python num, r = map(int, input().split()) for _ in range(r): if num%10 == 0: num = num//10 else: num -= 1 print(num) ```
3
155
A
I_love_\%username\%
PROGRAMMING
800
[ "brute force" ]
null
null
Vasya adores sport programming. He can't write programs but he loves to watch the contests' progress. Vasya even has a favorite coder and Vasya pays special attention to him. One day Vasya decided to collect the results of all contests where his favorite coder participated and track the progress of his coolness. For e...
The first line contains the single integer *n* (1<=≀<=*n*<=≀<=1000) β€” the number of contests where the coder participated. The next line contains *n* space-separated non-negative integer numbers β€” they are the points which the coder has earned. The points are given in the chronological order. All points do not exceed ...
Print the single number β€” the number of amazing performances the coder has had during his whole history of participating in the contests.
[ "5\n100 50 200 150 200\n", "10\n4664 6496 5814 7010 5762 5736 6944 4850 3698 7242\n" ]
[ "2\n", "4\n" ]
In the first sample the performances number 2 and 3 are amazing. In the second sample the performances number 2, 4, 9 and 10 are amazing.
500
[ { "input": "5\n100 50 200 150 200", "output": "2" }, { "input": "10\n4664 6496 5814 7010 5762 5736 6944 4850 3698 7242", "output": "4" }, { "input": "1\n6", "output": "0" }, { "input": "2\n2 1", "output": "1" }, { "input": "5\n100 36 53 7 81", "output": "2" ...
1,672,747,193
2,147,483,647
Python 3
OK
TESTS
37
92
0
n = int(input()) points = list(map(int, input().split())) amazing = 0 minimum = points[0] maximum = points[0] for i in range(1, n): if points[i] > minimum and points[i] > maximum: amazing += 1 maximum = points[i] elif points[i] < minimum: amazing += ...
Title: I_love_\%username\% Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya adores sport programming. He can't write programs but he loves to watch the contests' progress. Vasya even has a favorite coder and Vasya pays special attention to him. One day Vasya decided to collect the re...
```python n = int(input()) points = list(map(int, input().split())) amazing = 0 minimum = points[0] maximum = points[0] for i in range(1, n): if points[i] > minimum and points[i] > maximum: amazing += 1 maximum = points[i] elif points[i] < minimum: a...
3
81
A
Plug-in
PROGRAMMING
1,400
[ "implementation" ]
A. Plug-in
1
256
Polycarp thinks about the meaning of life very often. He does this constantly, even when typing in the editor. Every time he starts brooding he can no longer fully concentrate and repeatedly presses the keys that need to be pressed only once. For example, instead of the phrase "how are you" he can type "hhoow aaaare yy...
The input data consists of a single line to be processed. The length of the line is from 1 to 2Β·105 characters inclusive. The string contains only lowercase Latin letters.
Print the given string after it is processed. It is guaranteed that the result will contain at least one character.
[ "hhoowaaaareyyoouu\n", "reallazy\n", "abacabaabacabaa\n" ]
[ "wre", "rezy", "a" ]
none
500
[ { "input": "hhoowaaaareyyoouu", "output": "wre" }, { "input": "reallazy", "output": "rezy" }, { "input": "abacabaabacabaa", "output": "a" }, { "input": "xraccabccbry", "output": "xy" }, { "input": "a", "output": "a" }, { "input": "b", "output": "b"...
1,697,963,188
2,147,483,647
Python 3
OK
TESTS
32
374
6,656,000
# LUOGU_RID: 131046759 import sys input = lambda:sys.stdin.readline().strip() arc = [] for i in input(): if arc and i == arc[-1]: arc.pop() else: arc.append(i) print(*arc,sep="")
Title: Plug-in Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Polycarp thinks about the meaning of life very often. He does this constantly, even when typing in the editor. Every time he starts brooding he can no longer fully concentrate and repeatedly presses the keys that need to be pressed...
```python # LUOGU_RID: 131046759 import sys input = lambda:sys.stdin.readline().strip() arc = [] for i in input(): if arc and i == arc[-1]: arc.pop() else: arc.append(i) print(*arc,sep="") ```
3.800602
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,600,878,283
2,147,483,647
Python 3
OK
TESTS
35
248
0
n = input().lower() x = [97, 101, 105, 111, 117, 121] i = len(n) - 1 while i+1: on = ord(n[i]) if on in range(97, 123): if on in x: print('YES') else: print('NO') break i -= 1
Title: Sleuth Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya plays the sleuth with his friends. The rules of the game are as follows: those who play for the first time, that is Vasya is the sleuth, he should investigate a "crime" and find out what is happening. He can ask any questions ...
```python n = input().lower() x = [97, 101, 105, 111, 117, 121] i = len(n) - 1 while i+1: on = ord(n[i]) if on in range(97, 123): if on in x: print('YES') else: print('NO') break i -= 1 ```
3.938
814
A
An abandoned sentiment from past
PROGRAMMING
900
[ "constructive algorithms", "greedy", "implementation", "sortings" ]
null
null
A few years ago, Hitagi encountered a giant crab, who stole the whole of her body weight. Ever since, she tried to avoid contact with others, for fear that this secret might be noticed. To get rid of the oddity and recover her weight, a special integer sequence is needed. Hitagi's sequence has been broken for a long t...
The first line of input contains two space-separated positive integers *n* (2<=≀<=*n*<=≀<=100) and *k* (1<=≀<=*k*<=≀<=*n*) β€” the lengths of sequence *a* and *b* respectively. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≀<=*a**i*<=≀<=200) β€” Hitagi's broken sequence with exactly ...
Output "Yes" if it's possible to replace zeros in *a* with elements in *b* and make the resulting sequence not increasing, and "No" otherwise.
[ "4 2\n11 0 0 14\n5 4\n", "6 1\n2 3 0 8 9 10\n5\n", "4 1\n8 94 0 4\n89\n", "7 7\n0 0 0 0 0 0 0\n1 2 3 4 5 6 7\n" ]
[ "Yes\n", "No\n", "Yes\n", "Yes\n" ]
In the first sample: - Sequence *a* is 11, 0, 0, 14. - Two of the elements are lost, and the candidates in *b* are 5 and 4. - There are two possible resulting sequences: 11, 5, 4, 14 and 11, 4, 5, 14, both of which fulfill the requirements. Thus the answer is "Yes". In the second sample, the only possible resulti...
500
[ { "input": "4 2\n11 0 0 14\n5 4", "output": "Yes" }, { "input": "6 1\n2 3 0 8 9 10\n5", "output": "No" }, { "input": "4 1\n8 94 0 4\n89", "output": "Yes" }, { "input": "7 7\n0 0 0 0 0 0 0\n1 2 3 4 5 6 7", "output": "Yes" }, { "input": "40 1\n23 26 27 28 31 35 38 4...
1,538,463,094
2,147,483,647
Python 3
OK
TESTS
96
124
1,024,000
n,k=list(map(int,input().split())) p=list(map(int,input().split())) l=list(map(int,input().split())) la=p.count(0) for x in range(la): if l!=list(): sa=max(l) ka=p.index(0) p[ka]=sa l.remove(sa) else: break tam=sorted(p) if p.count(0)==0 and tam!=p: print("Y...
Title: An abandoned sentiment from past Time Limit: None seconds Memory Limit: None megabytes Problem Description: A few years ago, Hitagi encountered a giant crab, who stole the whole of her body weight. Ever since, she tried to avoid contact with others, for fear that this secret might be noticed. To get rid of t...
```python n,k=list(map(int,input().split())) p=list(map(int,input().split())) l=list(map(int,input().split())) la=p.count(0) for x in range(la): if l!=list(): sa=max(l) ka=p.index(0) p[ka]=sa l.remove(sa) else: break tam=sorted(p) if p.count(0)==0 and tam!=p: ...
3
841
A
Generous Kefa
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
One day Kefa found *n* baloons. For convenience, we denote color of *i*-th baloon as *s**i* β€” lowercase letter of the Latin alphabet. Also Kefa has *k* friends. Friend will be upset, If he get two baloons of the same color. Kefa want to give out all baloons to his friends. Help Kefa to find out, can he give out all his...
The first line contains two integers *n* and *k* (1<=≀<=*n*,<=*k*<=≀<=100) β€” the number of baloons and friends. Next line contains string *s* β€” colors of baloons.
Answer to the task β€” Β«YESΒ» or Β«NOΒ» in a single line. You can choose the case (lower or upper) for each letter arbitrary.
[ "4 2\naabb\n", "6 3\naacaab\n" ]
[ "YES\n", "NO\n" ]
In the first sample Kefa can give 1-st and 3-rd baloon to the first friend, and 2-nd and 4-th to the second. In the second sample Kefa needs to give to all his friends baloons of color a, but one baloon will stay, thats why answer is Β«NOΒ».
500
[ { "input": "4 2\naabb", "output": "YES" }, { "input": "6 3\naacaab", "output": "NO" }, { "input": "2 2\nlu", "output": "YES" }, { "input": "5 3\novvoo", "output": "YES" }, { "input": "36 13\nbzbzcffczzcbcbzzfzbbfzfzzbfbbcbfccbf", "output": "YES" }, { "...
1,633,250,371
2,147,483,647
PyPy 3
OK
TESTS
114
108
20,172,800
n,k=map(int,input().split()) s=input() d=dict() for i in s: d[i]=d.get(i,0)+1 m=0 for _,i in d.items(): m=max(m,i) if(m>k): print('NO') else: print('YES')
Title: Generous Kefa Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Kefa found *n* baloons. For convenience, we denote color of *i*-th baloon as *s**i* β€” lowercase letter of the Latin alphabet. Also Kefa has *k* friends. Friend will be upset, If he get two baloons of the same colo...
```python n,k=map(int,input().split()) s=input() d=dict() for i in s: d[i]=d.get(i,0)+1 m=0 for _,i in d.items(): m=max(m,i) if(m>k): print('NO') else: print('YES') ```
3
740
A
Alyona and copybooks
PROGRAMMING
1,300
[ "brute force", "implementation" ]
null
null
Little girl Alyona is in a shop to buy some copybooks for school. She study four subjects so she wants to have equal number of copybooks for each of the subjects. There are three types of copybook's packs in the shop: it is possible to buy one copybook for *a* rubles, a pack of two copybooks for *b* rubles, and a pack ...
The only line contains 4 integers *n*, *a*, *b*, *c* (1<=≀<=*n*,<=*a*,<=*b*,<=*c*<=≀<=109).
Print the minimum amount of rubles she should pay to buy such number of copybooks *k* that *n*<=+<=*k* is divisible by 4.
[ "1 1 3 4\n", "6 2 1 1\n", "4 4 4 4\n", "999999999 1000000000 1000000000 1000000000\n" ]
[ "3\n", "1\n", "0\n", "1000000000\n" ]
In the first example Alyona can buy 3 packs of 1 copybook for 3*a* = 3 rubles in total. After that she will have 4 copybooks which she can split between the subjects equally. In the second example Alyuna can buy a pack of 2 copybooks for *b* = 1 ruble. She will have 8 copybooks in total. In the third example Alyona ...
500
[ { "input": "1 1 3 4", "output": "3" }, { "input": "6 2 1 1", "output": "1" }, { "input": "4 4 4 4", "output": "0" }, { "input": "999999999 1000000000 1000000000 1000000000", "output": "1000000000" }, { "input": "1016 3 2 1", "output": "0" }, { "input":...
1,479,919,702
802
Python 3
OK
TESTS
89
109
1,228,800
""" ATSTNG's ejudge Python3 solution template (actual solution is below) """ import sys, queue try: import dev_act_ffc429465ab634 # empty file in directory DEV = True except: DEV = False def log(*s): if DEV: print('LOG', *s) class EJudge: def __init__(self, problem="default", rec...
Title: Alyona and copybooks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little girl Alyona is in a shop to buy some copybooks for school. She study four subjects so she wants to have equal number of copybooks for each of the subjects. There are three types of copybook's packs in the sh...
```python """ ATSTNG's ejudge Python3 solution template (actual solution is below) """ import sys, queue try: import dev_act_ffc429465ab634 # empty file in directory DEV = True except: DEV = False def log(*s): if DEV: print('LOG', *s) class EJudge: def __init__(self, problem="def...
3
519
A
A and B and Chess
PROGRAMMING
900
[ "implementation" ]
null
null
A and B are preparing themselves for programming contests. To train their logical thinking and solve problems better, A and B decided to play chess. During the game A wondered whose position is now stronger. For each chess piece we know its weight: - the queen's weight is 9, - the rook's weight is 5, - the bisho...
The input contains eight lines, eight characters each β€” the board's description. The white pieces on the board are marked with uppercase letters, the black pieces are marked with lowercase letters. The white pieces are denoted as follows: the queen is represented is 'Q', the rook β€” as 'R', the bishop β€” as'B', the kni...
Print "White" (without quotes) if the weight of the position of the white pieces is more than the weight of the position of the black pieces, print "Black" if the weight of the black pieces is more than the weight of the white pieces and print "Draw" if the weights of the white and black pieces are equal.
[ "...QK...\n........\n........\n........\n........\n........\n........\n...rk...\n", "rnbqkbnr\npppppppp\n........\n........\n........\n........\nPPPPPPPP\nRNBQKBNR\n", "rppppppr\n...k....\n........\n........\n........\n........\nK...Q...\n........\n" ]
[ "White\n", "Draw\n", "Black\n" ]
In the first test sample the weight of the position of the white pieces equals to 9, the weight of the position of the black pieces equals 5. In the second test sample the weights of the positions of the black and the white pieces are equal to 39. In the third test sample the weight of the position of the white piece...
500
[ { "input": "rnbqkbnr\npppppppp\n........\n........\n........\n........\nPPPPPPPP\nRNBQKBNR", "output": "Draw" }, { "input": "....bQ.K\n.B......\n.....P..\n........\n........\n........\n...N.P..\n.....R..", "output": "White" }, { "input": "b....p..\nR.......\n.pP...b.\npp......\nq.PPNpPR\...
1,676,484,070
2,147,483,647
Python 3
OK
TESTS
65
46
0
#519A valW = 0 valB = 0 for _ in range(8): a = input() for i in range(8) : if a[i] == 'Q': valW = valW + 9 elif a[i] == 'R' : valW = valW + 5 elif a[i] == 'B' : valW = valW + 3 elif a[i] == 'N' : valW = valW + 3 ...
Title: A and B and Chess Time Limit: None seconds Memory Limit: None megabytes Problem Description: A and B are preparing themselves for programming contests. To train their logical thinking and solve problems better, A and B decided to play chess. During the game A wondered whose position is now stronger. For eac...
```python #519A valW = 0 valB = 0 for _ in range(8): a = input() for i in range(8) : if a[i] == 'Q': valW = valW + 9 elif a[i] == 'R' : valW = valW + 5 elif a[i] == 'B' : valW = valW + 3 elif a[i] == 'N' : valW = valW +...
3
385
B
Bear and Strings
PROGRAMMING
1,200
[ "brute force", "greedy", "implementation", "math", "strings" ]
null
null
The bear has a string *s*<==<=*s*1*s*2... *s*|*s*| (record |*s*| is the string's length), consisting of lowercase English letters. The bear wants to count the number of such pairs of indices *i*,<=*j* (1<=≀<=*i*<=≀<=*j*<=≀<=|*s*|), that string *x*(*i*,<=*j*)<==<=*s**i**s**i*<=+<=1... *s**j* contains at least one string...
The first line contains a non-empty string *s* (1<=≀<=|*s*|<=≀<=5000). It is guaranteed that the string only consists of lowercase English letters.
Print a single number β€” the answer to the problem.
[ "bearbtear\n", "bearaabearc\n" ]
[ "6\n", "20\n" ]
In the first sample, the following pairs (*i*, *j*) match: (1, 4), (1, 5), (1, 6), (1, 7), (1, 8), (1, 9). In the second sample, the following pairs (*i*, *j*) match: (1,  4), (1,  5), (1,  6), (1,  7), (1,  8), (1,  9), (1,  10), (1,  11), (2,  10), (2,  11), (3,  10), (3,  11), (4,  10), (4,  11), (5,  10), (5,  11)...
1,000
[ { "input": "bearbtear", "output": "6" }, { "input": "bearaabearc", "output": "20" }, { "input": "pbearbearhbearzqbearjkterasjhy", "output": "291" }, { "input": "pbearjbearbebearnbabcffbearbearwubearjezpiorrbearbearjbdlbearbearqbearjbearwipmsbearoaftrsebearzsnqb", "output"...
1,683,255,319
2,147,483,647
PyPy 3-64
OK
TESTS
43
62
1,843,200
import sys import math def main(): read = sys.stdin.readline word: str = read().strip() prev = None total = 0 for i, c in enumerate(word): if i + 3 >= len(word): break if word[i] == 'b' and word[i + 1] == 'e' and word[i + 2] == 'a' and word[i + 3] == 'r': ...
Title: Bear and Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: The bear has a string *s*<==<=*s*1*s*2... *s*|*s*| (record |*s*| is the string's length), consisting of lowercase English letters. The bear wants to count the number of such pairs of indices *i*,<=*j* (1<=≀<=*i*<=≀<=*j...
```python import sys import math def main(): read = sys.stdin.readline word: str = read().strip() prev = None total = 0 for i, c in enumerate(word): if i + 3 >= len(word): break if word[i] == 'b' and word[i + 1] == 'e' and word[i + 2] == 'a' and word[i + 3] ...
3
705
A
Hulk
PROGRAMMING
800
[ "implementation" ]
null
null
Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. Hulk likes the Inception so much, and like that his feelings are complicated. They have *n* layers. The first layer is hate, se...
The only line of the input contains a single integer *n* (1<=≀<=*n*<=≀<=100)Β β€” the number of layers of love and hate.
Print Dr.Banner's feeling in one line.
[ "1\n", "2\n", "3\n" ]
[ "I hate it\n", "I hate that I love it\n", "I hate that I love that I hate it\n" ]
none
500
[ { "input": "1", "output": "I hate it" }, { "input": "2", "output": "I hate that I love it" }, { "input": "3", "output": "I hate that I love that I hate it" }, { "input": "4", "output": "I hate that I love that I hate that I love it" }, { "input": "5", "output"...
1,699,810,576
2,147,483,647
Python 3
OK
TESTS
21
46
0
import sys def inp(): return int(input()) def inlt(): return list(map(int, input().split())) def insr(): return input().strip() def out(x): sys.stdout.write(str(x) + "\n") def main(): count = inp() ans = "" feelings = [" I love", " I hate"] for i in range(1, count ...
Title: Hulk Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. Hulk likes the Inception so much, and...
```python import sys def inp(): return int(input()) def inlt(): return list(map(int, input().split())) def insr(): return input().strip() def out(x): sys.stdout.write(str(x) + "\n") def main(): count = inp() ans = "" feelings = [" I love", " I hate"] for i in range...
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,651,074,931
2,147,483,647
Python 3
OK
TESTS
3
62
0
def fence(): a = int(input()) n = 360 / (180 - a) if n == int(n): return "YES" return "NO" t = int(input()) for _ in range(t): print(fence())
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 def fence(): a = int(input()) n = 360 / (180 - a) if n == int(n): return "YES" return "NO" t = int(input()) for _ in range(t): print(fence()) ```
3
361
B
Levko and Permutation
PROGRAMMING
1,200
[ "constructive algorithms", "math", "number theory" ]
null
null
Levko loves permutations very much. A permutation of length *n* is a sequence of distinct positive integers, each is at most *n*. Let’s assume that value *gcd*(*a*,<=*b*) shows the greatest common divisor of numbers *a* and *b*. Levko assumes that element *p**i* of permutation *p*1,<=*p*2,<=... ,<=*p**n* is good if *g...
The single line contains two integers *n* and *k* (1<=≀<=*n*<=≀<=105, 0<=≀<=*k*<=≀<=*n*).
In a single line print either any beautiful permutation or -1, if such permutation doesn’t exist. If there are multiple suitable permutations, you are allowed to print any of them.
[ "4 2\n", "1 1\n" ]
[ "2 4 3 1", "-1\n" ]
In the first sample elements 4 and 3 are good because *gcd*(2, 4) = 2 &gt; 1 and *gcd*(3, 3) = 3 &gt; 1. Elements 2 and 1 are not good because *gcd*(1, 2) = 1 and *gcd*(4, 1) = 1. As there are exactly 2 good elements, the permutation is beautiful. The second sample has no beautiful permutations.
1,000
[ { "input": "4 2", "output": "2 1 3 4 " }, { "input": "1 1", "output": "-1" }, { "input": "7 4", "output": "3 1 2 4 5 6 7 " }, { "input": "10 9", "output": "1 2 3 4 5 6 7 8 9 10 " }, { "input": "10000 5000", "output": "5000 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1...
1,597,943,844
2,147,483,647
PyPy 3
OK
TESTS
47
202
8,089,600
import sys n,k=map(int,input().split()) a=[] if(n==k): print("-1") sys.exit() for i in range(n): a.append(i+1) for j in range(n-k-1): a[j],a[j+1]=a[j+1],a[j] print(*a)
Title: Levko and Permutation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Levko loves permutations very much. A permutation of length *n* is a sequence of distinct positive integers, each is at most *n*. Let’s assume that value *gcd*(*a*,<=*b*) shows the greatest common divisor of numb...
```python import sys n,k=map(int,input().split()) a=[] if(n==k): print("-1") sys.exit() for i in range(n): a.append(i+1) for j in range(n-k-1): a[j],a[j+1]=a[j+1],a[j] print(*a) ```
3
746
A
Compote
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Nikolay has *a* lemons, *b* apples and *c* pears. He decided to cook a compote. According to the recipe the fruits should be in the ratio 1:<=2:<=4. It means that for each lemon in the compote should be exactly 2 apples and exactly 4 pears. You can't crumble up, break up or cut these fruits into pieces. These fruitsΒ β€” ...
The first line contains the positive integer *a* (1<=≀<=*a*<=≀<=1000)Β β€” the number of lemons Nikolay has. The second line contains the positive integer *b* (1<=≀<=*b*<=≀<=1000)Β β€” the number of apples Nikolay has. The third line contains the positive integer *c* (1<=≀<=*c*<=≀<=1000)Β β€” the number of pears Nikolay has...
Print the maximum total number of lemons, apples and pears from which Nikolay can cook the compote.
[ "2\n5\n7\n", "4\n7\n13\n", "2\n3\n2\n" ]
[ "7\n", "21\n", "0\n" ]
In the first example Nikolay can use 1 lemon, 2 apples and 4 pears, so the answer is 1 + 2 + 4 = 7. In the second example Nikolay can use 3 lemons, 6 apples and 12 pears, so the answer is 3 + 6 + 12 = 21. In the third example Nikolay don't have enough pears to cook any compote, so the answer is 0.
500
[ { "input": "2\n5\n7", "output": "7" }, { "input": "4\n7\n13", "output": "21" }, { "input": "2\n3\n2", "output": "0" }, { "input": "1\n1\n1", "output": "0" }, { "input": "1\n2\n4", "output": "7" }, { "input": "1000\n1000\n1000", "output": "1750" }...
1,680,179,905
2,147,483,647
Python 3
OK
TESTS
84
46
0
l = int(input()) a = int(input()) p = int(input()) a, p = a//2, p//4 m = min(a,l,p) print(m*1 + m*2 + m*4)
Title: Compote Time Limit: None seconds Memory Limit: None megabytes Problem Description: Nikolay has *a* lemons, *b* apples and *c* pears. He decided to cook a compote. According to the recipe the fruits should be in the ratio 1:<=2:<=4. It means that for each lemon in the compote should be exactly 2 apples and exa...
```python l = int(input()) a = int(input()) p = int(input()) a, p = a//2, p//4 m = min(a,l,p) print(m*1 + m*2 + m*4) ```
3
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,589,806,022
2,147,483,647
Python 3
OK
TESTS
30
248
6,656,000
n = input() up_letters = 0 lower_letters = 0 for i in n: if i.lower() == i: lower_letters += 1 else: up_letters +=1 if up_letters>lower_letters: n = n.upper() else: n = n.lower() print(n)
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 n = input() up_letters = 0 lower_letters = 0 for i in n: if i.lower() == i: lower_letters += 1 else: up_letters +=1 if up_letters>lower_letters: n = n.upper() else: n = n.lower() print(n) ```
3.925602
478
B
Random Teams
PROGRAMMING
1,300
[ "combinatorics", "constructive algorithms", "greedy", "math" ]
null
null
*n* participants of the competition were split into *m* teams in some manner so that each team has at least one participant. After the competition each pair of participants from the same team became friends. Your task is to write a program that will find the minimum and the maximum number of pairs of friends that coul...
The only line of input contains two integers *n* and *m*, separated by a single space (1<=≀<=*m*<=≀<=*n*<=≀<=109) β€” the number of participants and the number of teams respectively.
The only line of the output should contain two integers *k**min* and *k**max* β€” the minimum possible number of pairs of friends and the maximum possible number of pairs of friends respectively.
[ "5 1\n", "3 2\n", "6 3\n" ]
[ "10 10\n", "1 1\n", "3 6\n" ]
In the first sample all the participants get into one team, so there will be exactly ten pairs of friends. In the second sample at any possible arrangement one team will always have two participants and the other team will always have one participant. Thus, the number of pairs of friends will always be equal to one. ...
1,000
[ { "input": "5 1", "output": "10 10" }, { "input": "3 2", "output": "1 1" }, { "input": "6 3", "output": "3 6" }, { "input": "5 3", "output": "2 3" }, { "input": "10 2", "output": "20 36" }, { "input": "10 6", "output": "4 10" }, { "input": ...
1,660,522,167
2,147,483,647
PyPy 3-64
OK
TESTS
26
62
0
n,m=map(int,input().split()) r=n//m print(m*r*(r-1)//2+n%m*r,(n-m+1)*(n-m)//2)
Title: Random Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* participants of the competition were split into *m* teams in some manner so that each team has at least one participant. After the competition each pair of participants from the same team became friends. Your task is ...
```python n,m=map(int,input().split()) r=n//m print(m*r*(r-1)//2+n%m*r,(n-m+1)*(n-m)//2) ```
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,609,711,825
2,147,483,647
Python 3
OK
TESTS
43
108
307,200
def main(): n = int(input()) o = [int(c) for c in input()] a = [int(c) for c in input()] moves = 0 for i in range(n): x, y = (o[i], a[i]) if o[i] > a[i] else (a[i], o[i]) moves += min(x - y, y + 10 - x) print(moves) if __name__ == "__main__": main()
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 def main(): n = int(input()) o = [int(c) for c in input()] a = [int(c) for c in input()] moves = 0 for i in range(n): x, y = (o[i], a[i]) if o[i] > a[i] else (a[i], o[i]) moves += min(x - y, y + 10 - x) print(moves) if __name__ == "__main__": main() ```
3
68
A
Irrational problem
PROGRAMMING
1,100
[ "implementation", "number theory" ]
A. Irrational problem
2
256
Little Petya was given this problem for homework: You are given function (here represents the operation of taking the remainder). His task is to count the number of integers *x* in range [*a*;*b*] with property *f*(*x*)<==<=*x*. It is a pity that Petya forgot the order in which the remainders should be taken and wr...
First line of the input will contain 6 integers, separated by spaces: *p*1,<=*p*2,<=*p*3,<=*p*4,<=*a*,<=*b* (1<=≀<=*p*1,<=*p*2,<=*p*3,<=*p*4<=≀<=1000,<=0<=≀<=*a*<=≀<=*b*<=≀<=31415). It is guaranteed that numbers *p*1,<=*p*2,<=*p*3,<=*p*4 will be pairwise distinct.
Output the number of integers in the given range that have the given property.
[ "2 7 1 8 2 8\n", "20 30 40 50 0 100\n", "31 41 59 26 17 43\n" ]
[ "0\n", "20\n", "9\n" ]
none
500
[ { "input": "2 7 1 8 2 8", "output": "0" }, { "input": "20 30 40 50 0 100", "output": "20" }, { "input": "31 41 59 26 17 43", "output": "9" }, { "input": "1 2 3 4 0 0", "output": "1" }, { "input": "1 2 3 4 1 1", "output": "0" }, { "input": "1 2 999 1000...
1,559,723,779
2,147,483,647
PyPy 3
OK
TESTS
41
434
1,024,000
import sys,math,string,bisect input=sys.stdin.readline from collections import deque L=lambda : list(map(int,input().split())) Ls=lambda : list(input().split()) M=lambda : map(int,input().split()) I=lambda :int(input()) p1,p2,p3,p4,b,a=M() k=min(p1,p2,p3,p4) c=0 for i in range(b,min(k,a+1)): c+=1 print(c)
Title: Irrational problem Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Petya was given this problem for homework: You are given function (here represents the operation of taking the remainder). His task is to count the number of integers *x* in range [*a*;*b*] with property *f*(*x...
```python import sys,math,string,bisect input=sys.stdin.readline from collections import deque L=lambda : list(map(int,input().split())) Ls=lambda : list(input().split()) M=lambda : map(int,input().split()) I=lambda :int(input()) p1,p2,p3,p4,b,a=M() k=min(p1,p2,p3,p4) c=0 for i in range(b,min(k,a+1)): c+=1 print(c)...
3.889593
151
A
Soft Drinking
PROGRAMMING
800
[ "implementation", "math" ]
null
null
This winter is so cold in Nvodsk! A group of *n* friends decided to buy *k* bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has *l* milliliters of the drink. Also they bought *c* limes and cut each of them into *d* slices. After that they found *p* grams of salt. To make a toast, each frie...
The first and only line contains positive integers *n*, *k*, *l*, *c*, *d*, *p*, *nl*, *np*, not exceeding 1000 and no less than 1. The numbers are separated by exactly one space.
Print a single integer β€” the number of toasts each friend can make.
[ "3 4 5 10 8 100 3 1\n", "5 100 10 1 19 90 4 3\n", "10 1000 1000 25 23 1 50 1\n" ]
[ "2\n", "3\n", "0\n" ]
A comment to the first sample: Overall the friends have 4 * 5 = 20 milliliters of the drink, it is enough to make 20 / 3 = 6 toasts. The limes are enough for 10 * 8 = 80 toasts and the salt is enough for 100 / 1 = 100 toasts. However, there are 3 friends in the group, so the answer is *min*(6, 80, 100) / 3 = 2.
500
[ { "input": "3 4 5 10 8 100 3 1", "output": "2" }, { "input": "5 100 10 1 19 90 4 3", "output": "3" }, { "input": "10 1000 1000 25 23 1 50 1", "output": "0" }, { "input": "1 7 4 5 5 8 3 2", "output": "4" }, { "input": "2 3 3 5 5 10 1 3", "output": "1" }, { ...
1,687,369,473
2,147,483,647
Python 3
OK
TESTS
27
62
0
n, k, l, c, d, p, nl, np = map(int, input().split()) res = min(((k*l)//nl), (c*d), (p//np))//n print(int(res))
Title: Soft Drinking Time Limit: None seconds Memory Limit: None megabytes Problem Description: This winter is so cold in Nvodsk! A group of *n* friends decided to buy *k* bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has *l* milliliters of the drink. Also they bought *c* limes and cut...
```python n, k, l, c, d, p, nl, np = map(int, input().split()) res = min(((k*l)//nl), (c*d), (p//np))//n print(int(res)) ```
3
166
A
Rank List
PROGRAMMING
1,100
[ "binary search", "implementation", "sortings" ]
null
null
Another programming contest is over. You got hold of the contest's final results table. The table has the following data. For each team we are shown two numbers: the number of problems and the total penalty time. However, for no team we are shown its final place. You know the rules of comparing the results of two give...
The first line contains two integers *n* and *k* (1<=≀<=*k*<=≀<=*n*<=≀<=50). Then *n* lines contain the description of the teams: the *i*-th line contains two integers *p**i* and *t**i* (1<=≀<=*p**i*,<=*t**i*<=≀<=50) β€” the number of solved problems and the total penalty time of the *i*-th team, correspondingly. All num...
In the only line print the sought number of teams that got the *k*-th place in the final results' table.
[ "7 2\n4 10\n4 10\n4 10\n3 20\n2 1\n2 1\n1 10\n", "5 4\n3 1\n3 1\n5 3\n3 1\n3 1\n" ]
[ "3\n", "4\n" ]
The final results' table for the first sample is: - 1-3 places β€” 4 solved problems, the penalty time equals 10 - 4 place β€” 3 solved problems, the penalty time equals 20 - 5-6 places β€” 2 solved problems, the penalty time equals 1 - 7 place β€” 1 solved problem, the penalty time equals 10 The table shows that the se...
500
[ { "input": "7 2\n4 10\n4 10\n4 10\n3 20\n2 1\n2 1\n1 10", "output": "3" }, { "input": "5 4\n3 1\n3 1\n5 3\n3 1\n3 1", "output": "4" }, { "input": "5 1\n2 2\n1 1\n1 1\n1 1\n2 2", "output": "2" }, { "input": "6 3\n2 2\n3 1\n2 2\n4 5\n2 2\n4 5", "output": "1" }, { "i...
1,599,149,666
2,147,483,647
Python 3
OK
TESTS
46
218
307,200
a=input().split() n=int(a[0]) k=int(a[1]) m=[] for i in range(n): c=input().split() m.append([int(c[0]), 50-int(c[1])]) m.sort() m.reverse() src=m[k-1] count=0 for i in range(n): if m[i]==src: count+=1 print(count)
Title: Rank List Time Limit: None seconds Memory Limit: None megabytes Problem Description: Another programming contest is over. You got hold of the contest's final results table. The table has the following data. For each team we are shown two numbers: the number of problems and the total penalty time. However, for...
```python a=input().split() n=int(a[0]) k=int(a[1]) m=[] for i in range(n): c=input().split() m.append([int(c[0]), 50-int(c[1])]) m.sort() m.reverse() src=m[k-1] count=0 for i in range(n): if m[i]==src: count+=1 print(count) ```
3
939
A
Love Triangle
PROGRAMMING
800
[ "graphs" ]
null
null
As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are *n* planes on Earth, numbered from 1 to *n*, and the plane with number *i* likes the plane with number *f**i*, where 1<=≀<=*f**i*<=≀<=*n* and *f**i*<=β‰ <=*i*. We call a love triangle a situation ...
The first line contains a single integer *n* (2<=≀<=*n*<=≀<=5000)Β β€” the number of planes. The second line contains *n* integers *f*1,<=*f*2,<=...,<=*f**n* (1<=≀<=*f**i*<=≀<=*n*, *f**i*<=β‰ <=*i*), meaning that the *i*-th plane likes the *f**i*-th.
Output Β«YESΒ» if there is a love triangle consisting of planes on Earth. Otherwise, output Β«NOΒ». You can output any letter in lower case or in upper case.
[ "5\n2 4 5 1 3\n", "5\n5 5 5 5 1\n" ]
[ "YES\n", "NO\n" ]
In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
500
[ { "input": "5\n2 4 5 1 3", "output": "YES" }, { "input": "5\n5 5 5 5 1", "output": "NO" }, { "input": "3\n3 1 2", "output": "YES" }, { "input": "10\n4 10 9 5 3 1 5 10 6 4", "output": "NO" }, { "input": "10\n5 5 4 9 10 9 9 5 3 1", "output": "YES" }, { "...
1,668,615,573
2,147,483,647
Python 3
OK
TESTS
16
46
307,200
from sys import stdin def decide(dct): for i in dct.keys(): if dct[dct[dct[i]]] == i: return 'YES' return 'NO' def main(): planes = int(stdin.readline().strip()) edges = stdin.readline().strip().split() dct = {} for i in range(1, planes+1): dct[i] = i...
Title: Love Triangle Time Limit: None seconds Memory Limit: None megabytes Problem Description: As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are *n* planes on Earth, numbered from 1 to *n*, and the plane with number *i* likes the plane with ...
```python from sys import stdin def decide(dct): for i in dct.keys(): if dct[dct[dct[i]]] == i: return 'YES' return 'NO' def main(): planes = int(stdin.readline().strip()) edges = stdin.readline().strip().split() dct = {} for i in range(1, planes+1): ...
3
611
B
New Year and Old Property
PROGRAMMING
1,300
[ "bitmasks", "brute force", "implementation" ]
null
null
The year 2015 is almost over. Limak is a little polar bear. He has recently learnt about the binary system. He noticed that the passing year has exactly one zero in its representation in the binary systemΒ β€” 201510<==<=111110111112. Note that he doesn't care about the number of zeros in the decimal representation. Lim...
The only line of the input contains two integers *a* and *b* (1<=≀<=*a*<=≀<=*b*<=≀<=1018)Β β€” the first year and the last year in Limak's interval respectively.
Print one integer – the number of years Limak will count in his chosen interval.
[ "5 10\n", "2015 2015\n", "100 105\n", "72057594000000000 72057595000000000\n" ]
[ "2\n", "1\n", "0\n", "26\n" ]
In the first sample Limak's interval contains numbers 5<sub class="lower-index">10</sub> = 101<sub class="lower-index">2</sub>, 6<sub class="lower-index">10</sub> = 110<sub class="lower-index">2</sub>, 7<sub class="lower-index">10</sub> = 111<sub class="lower-index">2</sub>, 8<sub class="lower-index">10</sub> = 1000<su...
750
[ { "input": "5 10", "output": "2" }, { "input": "2015 2015", "output": "1" }, { "input": "100 105", "output": "0" }, { "input": "72057594000000000 72057595000000000", "output": "26" }, { "input": "1 100", "output": "16" }, { "input": "100000000000000000...
1,659,061,213
2,147,483,647
PyPy 3-64
OK
TESTS
103
62
1,536,000
l, r = map(int, input().split()) b = ['1'] ans = 0 c = 1 while(c <= 60): for i in range(len(b) - 1, 0, -1): b[i] = '0' a = int(''.join(b), 2) if(a >= l and a <= r): ans += 1 b[i] = '1' b.append('1') c += 1 print(ans)
Title: New Year and Old Property Time Limit: None seconds Memory Limit: None megabytes Problem Description: The year 2015 is almost over. Limak is a little polar bear. He has recently learnt about the binary system. He noticed that the passing year has exactly one zero in its representation in the binary systemΒ β€” 2...
```python l, r = map(int, input().split()) b = ['1'] ans = 0 c = 1 while(c <= 60): for i in range(len(b) - 1, 0, -1): b[i] = '0' a = int(''.join(b), 2) if(a >= l and a <= r): ans += 1 b[i] = '1' b.append('1') c += 1 print(ans) ```
3
493
B
Vasya and Wrestling
PROGRAMMING
1,400
[ "implementation" ]
null
null
Vasya has become interested in wrestling. In wrestling wrestlers use techniques for which they are awarded points by judges. The wrestler who gets the most points wins. When the numbers of points of both wrestlers are equal, the wrestler whose sequence of points is lexicographically greater, wins. If the sequences of...
The first line contains number *n* β€” the number of techniques that the wrestlers have used (1<=≀<=*n*<=≀<=2Β·105). The following *n* lines contain integer numbers *a**i* (|*a**i*|<=≀<=109, *a**i*<=β‰ <=0). If *a**i* is positive, that means that the first wrestler performed the technique that was awarded with *a**i* poin...
If the first wrestler wins, print string "first", otherwise print "second"
[ "5\n1\n2\n-3\n-4\n3\n", "3\n-1\n-2\n3\n", "2\n4\n-4\n" ]
[ "second\n", "first\n", "second\n" ]
Sequence *x*  =  *x*<sub class="lower-index">1</sub>*x*<sub class="lower-index">2</sub>... *x*<sub class="lower-index">|*x*|</sub> is lexicographically larger than sequence *y*  =  *y*<sub class="lower-index">1</sub>*y*<sub class="lower-index">2</sub>... *y*<sub class="lower-index">|*y*|</sub>, if either |*x*|  &gt;  |...
1,000
[ { "input": "5\n1\n2\n-3\n-4\n3", "output": "second" }, { "input": "3\n-1\n-2\n3", "output": "first" }, { "input": "2\n4\n-4", "output": "second" }, { "input": "7\n1\n2\n-3\n4\n5\n-6\n7", "output": "first" }, { "input": "14\n1\n2\n3\n4\n5\n6\n7\n-8\n-9\n-10\n-11\n-...
1,605,788,909
2,147,483,647
Python 3
OK
TESTS
57
405
6,553,600
n = int(input()) pos_arr = [] neg_arr = [] pos_sum = 0 neg_sum = 0 for i in range(n): x = int(input()) if x>0: pos_sum += x pos_arr.append(x) else: neg_sum += -x neg_arr.append(-x) if i==n-1: last = x if pos_sum>neg_sum: print('first') elif po...
Title: Vasya and Wrestling Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has become interested in wrestling. In wrestling wrestlers use techniques for which they are awarded points by judges. The wrestler who gets the most points wins. When the numbers of points of both wrestlers ...
```python n = int(input()) pos_arr = [] neg_arr = [] pos_sum = 0 neg_sum = 0 for i in range(n): x = int(input()) if x>0: pos_sum += x pos_arr.append(x) else: neg_sum += -x neg_arr.append(-x) if i==n-1: last = x if pos_sum>neg_sum: print('first'...
3
267
A
Subtractions
PROGRAMMING
900
[ "math", "number theory" ]
null
null
You've got two numbers. As long as they are both larger than zero, they go through the same operation: subtract the lesser number from the larger one. If they equal substract one number from the another. For example, one operation transforms pair (4,17) to pair (4,13), it transforms (5,5) to (0,5). You've got some num...
The first line contains the number of pairs *n* (1<=<=≀<=<=*n*<=<=≀<=<=1000). Then follow *n* lines, each line contains a pair of positive integers *a**i*,<=*b**i* (1<=<=≀<=<=*a**i*,<=<=*b**i*<=<=≀<=<=109).
Print the sought number of operations for each pair on a single line.
[ "2\n4 17\n7 987654321\n" ]
[ "8\n141093479\n" ]
none
500
[ { "input": "2\n4 17\n7 987654321", "output": "8\n141093479" }, { "input": "10\n7 987654321\n7 987654321\n7 987654321\n7 987654321\n7 987654321\n7 987654321\n7 987654321\n7 987654321\n7 987654321\n7 987654321", "output": "141093479\n141093479\n141093479\n141093479\n141093479\n141093479\n141093479...
1,614,305,270
2,147,483,647
PyPy 3
OK
TESTS
35
171
3,891,200
for _ in range(int(input())): a,b=map(int,input().split()) ans=int(0) while a and b: a,b=min(a,b),max(a,b) ans,b=ans+b//a,b%a print(ans)
Title: Subtractions Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got two numbers. As long as they are both larger than zero, they go through the same operation: subtract the lesser number from the larger one. If they equal substract one number from the another. For example, one o...
```python for _ in range(int(input())): a,b=map(int,input().split()) ans=int(0) while a and b: a,b=min(a,b),max(a,b) ans,b=ans+b//a,b%a print(ans) ```
3
734
A
Anton and Danik
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Anton likes to play chess, and so does his friend Danik. Once they have played *n* games in a row. For each game it's known who was the winnerΒ β€” Anton or Danik. None of the games ended with a tie. Now Anton wonders, who won more games, he or Danik? Help him determine this.
The first line of the input contains a single integer *n* (1<=≀<=*n*<=≀<=100<=000)Β β€” the number of games played. The second line contains a string *s*, consisting of *n* uppercase English letters 'A' and 'D'Β β€” the outcome of each of the games. The *i*-th character of the string is equal to 'A' if the Anton won the *i*...
If Anton won more games than Danik, print "Anton" (without quotes) in the only line of the output. If Danik won more games than Anton, print "Danik" (without quotes) in the only line of the output. If Anton and Danik won the same number of games, print "Friendship" (without quotes).
[ "6\nADAAAA\n", "7\nDDDAADA\n", "6\nDADADA\n" ]
[ "Anton\n", "Danik\n", "Friendship\n" ]
In the first sample, Anton won 6 games, while DanikΒ β€” only 1. Hence, the answer is "Anton". In the second sample, Anton won 3 games and Danik won 4 games, so the answer is "Danik". In the third sample, both Anton and Danik won 3 games and the answer is "Friendship".
500
[ { "input": "6\nADAAAA", "output": "Anton" }, { "input": "7\nDDDAADA", "output": "Danik" }, { "input": "6\nDADADA", "output": "Friendship" }, { "input": "10\nDDDDADDADD", "output": "Danik" }, { "input": "40\nAAAAAAAAADDAAAAAAAAAAADADDAAAAAAAAAAADAA", "output": ...
1,694,654,300
2,147,483,647
Python 3
OK
TESTS
25
31
102,400
n=input() s=input() na,nd=s.count("A"),s.count("D") if na>nd: print("Anton") elif na==nd: print("Friendship") else: print("Danik")
Title: Anton and Danik Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anton likes to play chess, and so does his friend Danik. Once they have played *n* games in a row. For each game it's known who was the winnerΒ β€” Anton or Danik. None of the games ended with a tie. Now Anton wonders, w...
```python n=input() s=input() na,nd=s.count("A"),s.count("D") if na>nd: print("Anton") elif na==nd: print("Friendship") else: print("Danik") ```
3
387
A
George and Sleep
PROGRAMMING
900
[ "implementation" ]
null
null
George woke up and saw the current time *s* on the digital clock. Besides, George knows that he has slept for time *t*. Help George! Write a program that will, given time *s* and *t*, determine the time *p* when George went to bed. Note that George could have gone to bed yesterday relatively to the current time (see ...
The first line contains current time *s* as a string in the format "hh:mm". The second line contains time *t* in the format "hh:mm" β€” the duration of George's sleep. It is guaranteed that the input contains the correct time in the 24-hour format, that is, 00<=≀<=*hh*<=≀<=23, 00<=≀<=*mm*<=≀<=59.
In the single line print time *p* β€” the time George went to bed in the format similar to the format of the time in the input.
[ "05:50\n05:44\n", "00:00\n01:00\n", "00:01\n00:00\n" ]
[ "00:06\n", "23:00\n", "00:01\n" ]
In the first sample George went to bed at "00:06". Note that you should print the time only in the format "00:06". That's why answers "0:06", "00:6" and others will be considered incorrect. In the second sample, George went to bed yesterday. In the third sample, George didn't do to bed at all.
500
[ { "input": "05:50\n05:44", "output": "00:06" }, { "input": "00:00\n01:00", "output": "23:00" }, { "input": "00:01\n00:00", "output": "00:01" }, { "input": "23:59\n23:59", "output": "00:00" }, { "input": "23:44\n23:55", "output": "23:49" }, { "input": "...
1,683,787,826
2,147,483,647
Python 3
OK
TESTS
47
46
0
# Description of the problem can be found at http://codeforces.com/problemset/problem/387/A l_s = list(map(int, input().split(":"))) l_t = list(map(int, input().split(":"))) if l_t[1] > l_s[1]: l_s[0] -= 1 print("%02d:%02d" % ((l_s[0] - l_t[0]) % 24, (l_s[1] - l_t[1]) % 60))
Title: George and Sleep Time Limit: None seconds Memory Limit: None megabytes Problem Description: George woke up and saw the current time *s* on the digital clock. Besides, George knows that he has slept for time *t*. Help George! Write a program that will, given time *s* and *t*, determine the time *p* when Geor...
```python # Description of the problem can be found at http://codeforces.com/problemset/problem/387/A l_s = list(map(int, input().split(":"))) l_t = list(map(int, input().split(":"))) if l_t[1] > l_s[1]: l_s[0] -= 1 print("%02d:%02d" % ((l_s[0] - l_t[0]) % 24, (l_s[1] - l_t[1]) % 60)) ```
3
841
B
Godsend
PROGRAMMING
1,100
[ "games", "math" ]
null
null
Leha somehow found an array consisting of *n* integers. Looking at it, he came up with a task. Two players play the game on the array. Players move one by one. The first player can choose for his move a subsegment of non-zero length with an odd sum of numbers and remove it from the array, after that the remaining parts...
First line of input data contains single integer *n* (1<=≀<=*n*<=≀<=106) β€” length of the array. Next line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≀<=*a**i*<=≀<=109).
Output answer in single line. "First", if first player wins, and "Second" otherwise (without quotes).
[ "4\n1 3 2 3\n", "2\n2 2\n" ]
[ "First\n", "Second\n" ]
In first sample first player remove whole array in one move and win. In second sample first player can't make a move and lose.
1,000
[ { "input": "4\n1 3 2 3", "output": "First" }, { "input": "2\n2 2", "output": "Second" }, { "input": "4\n2 4 6 8", "output": "Second" }, { "input": "5\n1 1 1 1 1", "output": "First" }, { "input": "4\n720074544 345031254 849487632 80870826", "output": "Second" ...
1,586,206,614
2,147,483,647
PyPy 3
OK
TESTS
88
1,122
81,203,200
n = int(input()) a = list(map(int,input().split())) k = sum(a) if k%2 == 1: print('First') else: found = False for x in a: if x % 2 == 1: found = True break if found: print('First') else: print('Second')
Title: Godsend Time Limit: None seconds Memory Limit: None megabytes Problem Description: Leha somehow found an array consisting of *n* integers. Looking at it, he came up with a task. Two players play the game on the array. Players move one by one. The first player can choose for his move a subsegment of non-zero l...
```python n = int(input()) a = list(map(int,input().split())) k = sum(a) if k%2 == 1: print('First') else: found = False for x in a: if x % 2 == 1: found = True break if found: print('First') else: print('Second') ```
3
691
A
Fashion in Berland
PROGRAMMING
1,000
[ "implementation" ]
null
null
According to rules of the Berland fashion, a jacket should be fastened by all the buttons except only one, but not necessarily it should be the last one. Also if the jacket has only one button, it should be fastened, so the jacket will not swinging open. You are given a jacket with *n* buttons. Determine if it is fast...
The first line contains integer *n* (1<=≀<=*n*<=≀<=1000) β€” the number of buttons on the jacket. The second line contains *n* integers *a**i* (0<=≀<=*a**i*<=≀<=1). The number *a**i*<==<=0 if the *i*-th button is not fastened. Otherwise *a**i*<==<=1.
In the only line print the word "YES" if the jacket is fastened in a right way. Otherwise print the word "NO".
[ "3\n1 0 1\n", "3\n1 0 0\n" ]
[ "YES\n", "NO\n" ]
none
0
[ { "input": "3\n1 0 1", "output": "YES" }, { "input": "3\n1 0 0", "output": "NO" }, { "input": "3\n1 1 0", "output": "YES" }, { "input": "3\n1 1 1", "output": "NO" }, { "input": "3\n0 0 1", "output": "NO" }, { "input": "3\n0 0 0", "output": "NO" }...
1,678,621,774
2,147,483,647
Python 3
OK
TESTS
83
46
0
n = int(input()) lst = list(map(int, input().split())) if n == 1: if lst[0] == 1: print("YES") else: print("NO") else: zeros = lst.count(0) if zeros == 1: print("YES") else: print("NO")
Title: Fashion in Berland Time Limit: None seconds Memory Limit: None megabytes Problem Description: According to rules of the Berland fashion, a jacket should be fastened by all the buttons except only one, but not necessarily it should be the last one. Also if the jacket has only one button, it should be fastened,...
```python n = int(input()) lst = list(map(int, input().split())) if n == 1: if lst[0] == 1: print("YES") else: print("NO") else: zeros = lst.count(0) if zeros == 1: print("YES") else: print("NO") ```
3
898
A
Rounding
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5 Vasya can round it to 0 or to 10. Both ways are correct. For given *n* find out to which int...
The first line contains single integer *n* (0<=≀<=*n*<=≀<=109)Β β€” number that Vasya has.
Print result of rounding *n*. Pay attention that in some cases answer isn't unique. In that case print any correct answer.
[ "5\n", "113\n", "1000000000\n", "5432359\n" ]
[ "0\n", "110\n", "1000000000\n", "5432360\n" ]
In the first example *n* = 5. Nearest integers, that ends up with zero are 0 and 10. Any of these answers is correct, so you can print 0 or 10.
500
[ { "input": "5", "output": "0" }, { "input": "113", "output": "110" }, { "input": "1000000000", "output": "1000000000" }, { "input": "5432359", "output": "5432360" }, { "input": "999999994", "output": "999999990" }, { "input": "10", "output": "10" ...
1,591,480,207
2,147,483,647
Python 3
OK
TESTS
64
109
0
n=int(input()) z=int(str(n)[-1]) if z>=5: print(n+10-z) else: print(n-z)
Title: Rounding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5...
```python n=int(input()) z=int(str(n)[-1]) if z>=5: print(n+10-z) else: print(n-z) ```
3
745
A
Hongcow Learns the Cyclic Shift
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has decided to try to make new words from this one. He starts by taking the word he just learned how to spell, and moves the last character ...
The first line of input will be a single string *s* (1<=≀<=|*s*|<=≀<=50), the word Hongcow initially learns how to spell. The string *s* consists only of lowercase English letters ('a'–'z').
Output a single integer equal to the number of distinct strings that Hongcow can obtain by applying the cyclic shift arbitrarily many times to the given string.
[ "abcd\n", "bbb\n", "yzyz\n" ]
[ "4\n", "1\n", "2\n" ]
For the first sample, the strings Hongcow can generate are "abcd", "dabc", "cdab", and "bcda". For the second sample, no matter how many times Hongcow does the cyclic shift, Hongcow can only generate "bbb". For the third sample, the two strings Hongcow can generate are "yzyz" and "zyzy".
500
[ { "input": "abcd", "output": "4" }, { "input": "bbb", "output": "1" }, { "input": "yzyz", "output": "2" }, { "input": "abcdefghijklmnopqrstuvwxyabcdefghijklmnopqrstuvwxy", "output": "25" }, { "input": "zclkjadoprqronzclkjadoprqronzclkjadoprqron", "output": "14...
1,481,992,744
244
Python 3
OK
TESTS
28
78
4,608,000
#CF YL1 s=input() c={s} def cyc(s2):return s2[-1]+s2[:-1] for i in range(len(s)): s=cyc(s) c.add(s) print(len(c))
Title: Hongcow Learns the Cyclic Shift Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has decided to try to m...
```python #CF YL1 s=input() c={s} def cyc(s2):return s2[-1]+s2[:-1] for i in range(len(s)): s=cyc(s) c.add(s) print(len(c)) ```
3
300
A
Array
PROGRAMMING
1,100
[ "brute force", "constructive algorithms", "implementation" ]
null
null
Vitaly has an array of *n* distinct integers. Vitaly wants to divide this array into three non-empty sets so as the following conditions hold: 1. The product of all numbers in the first set is less than zero (<=&lt;<=0). 1. The product of all numbers in the second set is greater than zero (<=&gt;<=0). 1. The produ...
The first line of the input contains integer *n* (3<=≀<=*n*<=≀<=100). The second line contains *n* space-separated distinct integers *a*1,<=*a*2,<=...,<=*a**n* (|*a**i*|<=≀<=103) β€” the array elements.
In the first line print integer *n*1 (*n*1<=&gt;<=0) β€” the number of elements in the first set. Then print *n*1 numbers β€” the elements that got to the first set. In the next line print integer *n*2 (*n*2<=&gt;<=0) β€” the number of elements in the second set. Then print *n*2 numbers β€” the elements that got to the second...
[ "3\n-1 2 0\n", "4\n-1 -2 -3 0\n" ]
[ "1 -1\n1 2\n1 0\n", "1 -1\n2 -3 -2\n1 0\n" ]
none
500
[ { "input": "3\n-1 2 0", "output": "1 -1\n1 2\n1 0" }, { "input": "4\n-1 -2 -3 0", "output": "1 -1\n2 -3 -2\n1 0" }, { "input": "5\n-1 -2 1 2 0", "output": "1 -1\n2 1 2\n2 0 -2" }, { "input": "100\n-64 -51 -75 -98 74 -26 -1 -8 -99 -76 -53 -80 -43 -22 -100 -62 -34 -5 -65 -81 -1...
1,593,527,217
2,147,483,647
Python 3
OK
TESTS
20
218
307,200
p = int(input()) q = list(int(x) for x in input().split()) a = [] b = [] c = [] for i in q: if i<0: a.append(i) elif i>0: b.append(i) else: c.append(i) if len(b)==0 and len(a)>2: for i in range(2): b.append(a[i]) a.remove(a[0]) a.remove(a[0]) ...
Title: Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vitaly has an array of *n* distinct integers. Vitaly wants to divide this array into three non-empty sets so as the following conditions hold: 1. The product of all numbers in the first set is less than zero (<=&lt;<=0). 1. T...
```python p = int(input()) q = list(int(x) for x in input().split()) a = [] b = [] c = [] for i in q: if i<0: a.append(i) elif i>0: b.append(i) else: c.append(i) if len(b)==0 and len(a)>2: for i in range(2): b.append(a[i]) a.remove(a[0]) a.remove...
3
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob β€” to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≀<=*n*<=≀<=100) β€” amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,561,607,749
2,147,483,647
Python 3
OK
TESTS
32
218
0
input() numbers = input().split() even = [] not_even = [] for number in numbers: if int(number) % 2 == 0: even.append(number) else: not_even.append(number) if len(even) == 1: print(numbers.index(even[0]) + 1) elif len(not_even) == 1: print(numbers.index(not_even[0]) + 1) e...
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob β€” t...
```python input() numbers = input().split() even = [] not_even = [] for number in numbers: if int(number) % 2 == 0: even.append(number) else: not_even.append(number) if len(even) == 1: print(numbers.index(even[0]) + 1) elif len(not_even) == 1: print(numbers.index(not_even[0...
3.9455
432
D
Prefixes and Suffixes
PROGRAMMING
2,000
[ "dp", "string suffix structures", "strings", "two pointers" ]
null
null
You have a string *s*<==<=*s*1*s*2...*s*|*s*|, where |*s*| is the length of string *s*, and *s**i* its *i*-th character. Let's introduce several definitions: - A substring *s*[*i*..*j*] (1<=≀<=*i*<=≀<=*j*<=≀<=|*s*|) of string *s* is string *s**i**s**i*<=+<=1...*s**j*. - The prefix of string *s* of length *l* (1<=≀...
The single line contains a sequence of characters *s*1*s*2...*s*|*s*| (1<=≀<=|*s*|<=≀<=105) β€” string *s*. The string only consists of uppercase English letters.
In the first line, print integer *k* (0<=≀<=*k*<=≀<=|*s*|) β€” the number of prefixes that match a suffix of string *s*. Next print *k* lines, in each line print two integers *l**i* *c**i*. Numbers *l**i* *c**i* mean that the prefix of the length *l**i* matches the suffix of length *l**i* and occurs in string *s* as a su...
[ "ABACABA\n", "AAA\n" ]
[ "3\n1 4\n3 2\n7 1\n", "3\n1 3\n2 2\n3 1\n" ]
none
2,000
[ { "input": "ABACABA", "output": "3\n1 4\n3 2\n7 1" }, { "input": "AAA", "output": "3\n1 3\n2 2\n3 1" }, { "input": "A", "output": "1\n1 1" }, { "input": "AAAAAAAAAAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAA", "output": "17\n1 39\n2 37\n3 35\n4 33\n5 31\n6 29\n7 27\n8 25\n9 23\n10 21\...
1,656,759,132
2,147,483,647
Python 3
OK
TESTS
30
498
10,649,600
import sys input = sys.stdin.readline from collections import deque S=input().strip() LEN=len(S) i=1 j=0 A=[0]*LEN A[0]=LEN while i<LEN: while i+j<LEN and S[j]==S[i+j]: j+=1 A[i]=j if j==0: i+=1 continue k=1 while i+k<LEN and k+A[k]<j: ...
Title: Prefixes and Suffixes Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have a string *s*<==<=*s*1*s*2...*s*|*s*|, where |*s*| is the length of string *s*, and *s**i* its *i*-th character. Let's introduce several definitions: - A substring *s*[*i*..*j*] (1<=≀<=*i*<=≀<=*j*<=≀<=...
```python import sys input = sys.stdin.readline from collections import deque S=input().strip() LEN=len(S) i=1 j=0 A=[0]*LEN A[0]=LEN while i<LEN: while i+j<LEN and S[j]==S[i+j]: j+=1 A[i]=j if j==0: i+=1 continue k=1 while i+k<LEN and k+A...
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,660,718,949
2,147,483,647
Python 3
OK
TESTS
35
92
0
m,n=map(int,input().split()) a=m/2 b=n/1 c=a*b print(int(c))
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()) a=m/2 b=n/1 c=a*b print(int(c)) ```
3.977
706
B
Interesting drink
PROGRAMMING
1,100
[ "binary search", "dp", "implementation" ]
null
null
Vasiliy likes to rest after a hard work, so you may often meet him in some bar nearby. As all programmers do, he loves the famous drink "Beecola", which can be bought in *n* different shops in the city. It's known that the price of one bottle in the shop *i* is equal to *x**i* coins. Vasiliy plans to buy his favorite ...
The first line of the input contains a single integer *n* (1<=≀<=*n*<=≀<=100<=000)Β β€” the number of shops in the city that sell Vasiliy's favourite drink. The second line contains *n* integers *x**i* (1<=≀<=*x**i*<=≀<=100<=000)Β β€” prices of the bottles of the drink in the *i*-th shop. The third line contains a single i...
Print *q* integers. The *i*-th of them should be equal to the number of shops where Vasiliy will be able to buy a bottle of the drink on the *i*-th day.
[ "5\n3 10 8 6 11\n4\n1\n10\n3\n11\n" ]
[ "0\n4\n1\n5\n" ]
On the first day, Vasiliy won't be able to buy a drink in any of the shops. On the second day, Vasiliy can buy a drink in the shops 1, 2, 3 and 4. On the third day, Vasiliy can buy a drink only in the shop number 1. Finally, on the last day Vasiliy can buy a drink in any shop.
1,000
[ { "input": "5\n3 10 8 6 11\n4\n1\n10\n3\n11", "output": "0\n4\n1\n5" }, { "input": "5\n868 987 714 168 123\n10\n424\n192\n795\n873\n117\n914\n735\n158\n631\n471", "output": "2\n2\n3\n4\n0\n4\n3\n1\n2\n2" }, { "input": "3\n435 482 309\n7\n245\n241\n909\n745\n980\n29\n521", "output": "...
1,699,580,003
2,147,483,647
Python 3
OK
TESTS
103
733
13,619,200
import bisect N=int(input()) x=sorted(list(map(int,input().split()))) for i in range(int(input())): print(bisect.bisect(x,int(input())))
Title: Interesting drink Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasiliy likes to rest after a hard work, so you may often meet him in some bar nearby. As all programmers do, he loves the famous drink "Beecola", which can be bought in *n* different shops in the city. It's known tha...
```python import bisect N=int(input()) x=sorted(list(map(int,input().split()))) for i in range(int(input())): print(bisect.bisect(x,int(input()))) ```
3
581
A
Vasya the Hipster
PROGRAMMING
800
[ "implementation", "math" ]
null
null
One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red one on the left foot, a blue one on the right foot. Every day Vasya puts on new socks in the morning ...
The single line of the input contains two positive integers *a* and *b* (1<=≀<=*a*,<=*b*<=≀<=100) β€” the number of red and blue socks that Vasya's got.
Print two space-separated integers β€” the maximum number of days when Vasya can wear different socks and the number of days when he can wear the same socks until he either runs out of socks or cannot make a single pair from the socks he's got. Keep in mind that at the end of the day Vasya throws away the socks that he'...
[ "3 1\n", "2 3\n", "7 3\n" ]
[ "1 1\n", "2 0\n", "3 2\n" ]
In the first sample Vasya can first put on one pair of different socks, after that he has two red socks left to wear on the second day.
500
[ { "input": "3 1", "output": "1 1" }, { "input": "2 3", "output": "2 0" }, { "input": "7 3", "output": "3 2" }, { "input": "100 100", "output": "100 0" }, { "input": "4 10", "output": "4 3" }, { "input": "6 10", "output": "6 2" }, { "input":...
1,663,080,688
2,147,483,647
Python 3
OK
TESTS
30
46
0
a, b = map(int,input().split()) p = min(a,b) left = (a+b)-(2*p) left = left//2 print(f"{p} {left}")
Title: Vasya the Hipster Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red...
```python a, b = map(int,input().split()) p = min(a,b) left = (a+b)-(2*p) left = left//2 print(f"{p} {left}") ```
3
988
A
Diverse Team
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
There are $n$ students in a school class, the rating of the $i$-th student on Codehorses is $a_i$. You have to form a team consisting of $k$ students ($1 \le k \le n$) such that the ratings of all team members are distinct. If it is impossible to form a suitable team, print "NO" (without quotes). Otherwise print "YES"...
The first line contains two integers $n$ and $k$ ($1 \le k \le n \le 100$) β€” the number of students and the size of the team you have to form. The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 100$), where $a_i$ is the rating of $i$-th student.
If it is impossible to form a suitable team, print "NO" (without quotes). Otherwise print "YES", and then print $k$ distinct integers from $1$ to $n$ which should be the indices of students in the team you form. All the ratings of the students in the team should be distinct. You may print the indices in any order. If t...
[ "5 3\n15 13 15 15 12\n", "5 4\n15 13 15 15 12\n", "4 4\n20 10 40 30\n" ]
[ "YES\n1 2 5 \n", "NO\n", "YES\n1 2 3 4 \n" ]
All possible answers for the first example: - {1 2 5} - {2 3 5} - {2 4 5} Note that the order does not matter.
0
[ { "input": "5 3\n15 13 15 15 12", "output": "YES\n1 2 5 " }, { "input": "5 4\n15 13 15 15 12", "output": "NO" }, { "input": "4 4\n20 10 40 30", "output": "YES\n1 2 3 4 " }, { "input": "1 1\n1", "output": "YES\n1 " }, { "input": "100 53\n16 17 1 2 27 5 9 9 53 24 17...
1,642,442,742
2,147,483,647
PyPy 3-64
OK
TESTS
10
93
0
n,k = map(int,input().split()) a = list(map(int,input().split())) d = a.copy() a = list(set(a)) if len(a) < k: print("NO") else: print("YES") for i in a[:k]: print(d.index(i)+1, end = " ")
Title: Diverse Team Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are $n$ students in a school class, the rating of the $i$-th student on Codehorses is $a_i$. You have to form a team consisting of $k$ students ($1 \le k \le n$) such that the ratings of all team members are distinct...
```python n,k = map(int,input().split()) a = list(map(int,input().split())) d = a.copy() a = list(set(a)) if len(a) < k: print("NO") else: print("YES") for i in a[:k]: print(d.index(i)+1, end = " ") ```
3
510
A
Fox And Snake
PROGRAMMING
800
[ "implementation" ]
null
null
Fox Ciel starts to learn programming. The first task is drawing a fox! However, that turns out to be too hard for a beginner, so she decides to draw a snake instead. A snake is a pattern on a *n* by *m* table. Denote *c*-th cell of *r*-th row as (*r*,<=*c*). The tail of the snake is located at (1,<=1), then it's body ...
The only line contains two integers: *n* and *m* (3<=≀<=*n*,<=*m*<=≀<=50). *n* is an odd number.
Output *n* lines. Each line should contain a string consisting of *m* characters. Do not output spaces.
[ "3 3\n", "3 4\n", "5 3\n", "9 9\n" ]
[ "###\n..#\n###\n", "####\n...#\n####\n", "###\n..#\n###\n#..\n###\n", "#########\n........#\n#########\n#........\n#########\n........#\n#########\n#........\n#########\n" ]
none
500
[ { "input": "3 3", "output": "###\n..#\n###" }, { "input": "3 4", "output": "####\n...#\n####" }, { "input": "5 3", "output": "###\n..#\n###\n#..\n###" }, { "input": "9 9", "output": "#########\n........#\n#########\n#........\n#########\n........#\n#########\n#........\n#...
1,687,033,951
2,147,483,647
Python 3
OK
TESTS
28
46
0
def Fox_and_Snake(r,c): next_ = 3 next_2 = 1 for i in range(r): for j in range(c): if i %2 == 0: print('#', end = '') else: if i == next_2 and j == (c-1): print('#', end = '') next_2 +=4 ...
Title: Fox And Snake Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel starts to learn programming. The first task is drawing a fox! However, that turns out to be too hard for a beginner, so she decides to draw a snake instead. A snake is a pattern on a *n* by *m* table. Denote *c*...
```python def Fox_and_Snake(r,c): next_ = 3 next_2 = 1 for i in range(r): for j in range(c): if i %2 == 0: print('#', end = '') else: if i == next_2 and j == (c-1): print('#', end = '') next_2 +...
3
618
A
Slime Combining
PROGRAMMING
800
[ "implementation" ]
null
null
Your friend recently gave you some slimes for your birthday. You have *n* slimes all initially with value 1. You are going to play a game with these slimes. Initially, you put a single slime by itself in a row. Then, you will add the other *n*<=-<=1 slimes one by one. When you add a slime, you place it at the right of...
The first line of the input will contain a single integer, *n* (1<=≀<=*n*<=≀<=100<=000).
Output a single line with *k* integers, where *k* is the number of slimes in the row after you've finished the procedure described in the problem statement. The *i*-th of these numbers should be the value of the *i*-th slime from the left.
[ "1\n", "2\n", "3\n", "8\n" ]
[ "1\n", "2\n", "2 1\n", "4\n" ]
In the first sample, we only have a single slime with value 1. The final state of the board is just a single slime with value 1. In the second sample, we perform the following steps: Initially we place a single slime in a row by itself. Thus, row is initially 1. Then, we will add another slime. The row is now 1 1. S...
500
[ { "input": "1", "output": "1" }, { "input": "2", "output": "2" }, { "input": "3", "output": "2 1" }, { "input": "8", "output": "4" }, { "input": "100000", "output": "17 16 11 10 8 6" }, { "input": "12345", "output": "14 13 6 5 4 1" }, { "in...
1,456,675,000
2,147,483,647
Python 3
OK
TESTS
27
62
0
N = int(input()) ans = [] i = 0 while N >> i: if (N >> i) & 1: ans.append(i + 1) i += 1 print(*ans[::-1])
Title: Slime Combining Time Limit: None seconds Memory Limit: None megabytes Problem Description: Your friend recently gave you some slimes for your birthday. You have *n* slimes all initially with value 1. You are going to play a game with these slimes. Initially, you put a single slime by itself in a row. Then, y...
```python N = int(input()) ans = [] i = 0 while N >> i: if (N >> i) & 1: ans.append(i + 1) i += 1 print(*ans[::-1]) ```
3
336
A
Vasily the Bear and Triangle
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Vasily the bear has a favorite rectangle, it has one vertex at point (0,<=0), and the opposite vertex at point (*x*,<=*y*). Of course, the sides of Vasya's favorite rectangle are parallel to the coordinate axes. Vasya also loves triangles, if the triangles have one vertex at point *B*<==<=(0,<=0). That's why today he...
The first line contains two integers *x*,<=*y* (<=-<=109<=≀<=*x*,<=*y*<=≀<=109,<=*x*<=β‰ <=0,<=*y*<=β‰ <=0).
Print in the single line four integers *x*1,<=*y*1,<=*x*2,<=*y*2 β€” the coordinates of the required points.
[ "10 5\n", "-10 5\n" ]
[ "0 15 15 0\n", "-15 0 0 15\n" ]
<img class="tex-graphics" src="https://espresso.codeforces.com/a9ea2088c4294ce8f23801562fda36b830df2c3f.png" style="max-width: 100.0%;max-height: 100.0%;"/> Figure to the first sample
500
[ { "input": "10 5", "output": "0 15 15 0" }, { "input": "-10 5", "output": "-15 0 0 15" }, { "input": "20 -10", "output": "0 -30 30 0" }, { "input": "-10 -1000000000", "output": "-1000000010 0 0 -1000000010" }, { "input": "-1000000000 -1000000000", "output": "-...
1,592,671,189
2,147,483,647
Python 3
OK
TESTS
30
218
307,200
x,y=[int(x) for x in input().split(" ")] if(x>=0 and y>=0): s=x+y print(0,s,s,0) if(x<0 and y>=0): d=x*-1 s=d+y print(-s,0,0,s) if(x>=0 and y<0): d=y*-1 s=d+x print(0,-s,s,0) if(x<0 and y<0): d=x*-1 e=y*-1 s=d+e print(-s,0,0,-s)
Title: Vasily the Bear and Triangle Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily the bear has a favorite rectangle, it has one vertex at point (0,<=0), and the opposite vertex at point (*x*,<=*y*). Of course, the sides of Vasya's favorite rectangle are parallel to the coordinate ...
```python x,y=[int(x) for x in input().split(" ")] if(x>=0 and y>=0): s=x+y print(0,s,s,0) if(x<0 and y>=0): d=x*-1 s=d+y print(-s,0,0,s) if(x>=0 and y<0): d=y*-1 s=d+x print(0,-s,s,0) if(x<0 and y<0): d=x*-1 e=y*-1 s=d+e print(-s,0,0,-s) ```
3
322
A
Ciel and Dancing
PROGRAMMING
1,000
[ "greedy" ]
null
null
Fox Ciel and her friends are in a dancing room. There are *n* boys and *m* girls here, and they never danced before. There will be some songs, during each song, there must be exactly one boy and one girl are dancing. Besides, there is a special rule: - either the boy in the dancing pair must dance for the first time ...
The first line contains two integers *n* and *m* (1<=≀<=*n*,<=*m*<=≀<=100) β€” the number of boys and girls in the dancing room.
In the first line print *k* β€” the number of songs during which they can dance. Then in the following *k* lines, print the indexes of boys and girls dancing during songs chronologically. You can assume that the boys are indexed from 1 to *n*, and the girls are indexed from 1 to *m*.
[ "2 1\n", "2 2\n" ]
[ "2\n1 1\n2 1\n", "3\n1 1\n1 2\n2 2\n" ]
In test case 1, there are 2 boys and 1 girl. We can have 2 dances: the 1st boy and 1st girl (during the first song), the 2nd boy and 1st girl (during the second song). And in test case 2, we have 2 boys with 2 girls, the answer is 3.
500
[ { "input": "2 1", "output": "2\n1 1\n2 1" }, { "input": "2 2", "output": "3\n1 1\n1 2\n2 2" }, { "input": "1 1", "output": "1\n1 1" }, { "input": "2 3", "output": "4\n1 1\n1 2\n1 3\n2 3" }, { "input": "4 4", "output": "7\n1 1\n1 2\n1 3\n1 4\n4 4\n3 4\n2 4" }...
1,642,605,298
2,147,483,647
PyPy 3-64
OK
TESTS
28
216
512,000
m, n = map(int, input().split()) ls = [] for i in range(m): ls1 = (str(i + 1), '1') ls.append(ls1) for j in range(1, n): ls1 = ('1', str(j + 1)) ls.append(ls1) print(len(ls)) for i in ls: print(' '.join(i))
Title: Ciel and Dancing Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel and her friends are in a dancing room. There are *n* boys and *m* girls here, and they never danced before. There will be some songs, during each song, there must be exactly one boy and one girl are dancing. B...
```python m, n = map(int, input().split()) ls = [] for i in range(m): ls1 = (str(i + 1), '1') ls.append(ls1) for j in range(1, n): ls1 = ('1', str(j + 1)) ls.append(ls1) print(len(ls)) for i in ls: print(' '.join(i)) ```
3
678
A
Johny Likes Numbers
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Johny likes numbers *n* and *k* very much. Now Johny wants to find the smallest integer *x* greater than *n*, so it is divisible by the number *k*.
The only line contains two integers *n* and *k* (1<=≀<=*n*,<=*k*<=≀<=109).
Print the smallest integer *x*<=&gt;<=*n*, so it is divisible by the number *k*.
[ "5 3\n", "25 13\n", "26 13\n" ]
[ "6\n", "26\n", "39\n" ]
none
0
[ { "input": "5 3", "output": "6" }, { "input": "25 13", "output": "26" }, { "input": "26 13", "output": "39" }, { "input": "1 1", "output": "2" }, { "input": "8 8", "output": "16" }, { "input": "14 15", "output": "15" }, { "input": "197 894"...
1,590,089,042
2,147,483,647
PyPy 3
OK
TESTS
37
155
0
import sys,math def isleap(y): if y%400==0: return True elif y%4==0 and y%100!=0: return True else: return False n,k=map(int,sys.stdin.readline().split()) r=n%k if r==0: r+=k else: r=k-r print(n+r)
Title: Johny Likes Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Johny likes numbers *n* and *k* very much. Now Johny wants to find the smallest integer *x* greater than *n*, so it is divisible by the number *k*. Input Specification: The only line contains two integers *n* and *...
```python import sys,math def isleap(y): if y%400==0: return True elif y%4==0 and y%100!=0: return True else: return False n,k=map(int,sys.stdin.readline().split()) r=n%k if r==0: r+=k else: r=k-r print(n+r) ```
3
0
none
none
none
0
[ "none" ]
null
null
This is an interactive problem. Natasha is going to fly to Mars. Finally, Natasha sat in the rocket. She flies, flies... but gets bored. She wishes to arrive to Mars already! So she decides to find something to occupy herself. She couldn't think of anything better to do than to calculate the distance to the red planet...
The first line contains two integers $m$ and $n$ ($1 \le m \le 10^9$, $1 \le n \le 30$)Β β€” the maximum distance to Mars and the number of elements in the sequence $p$.
none
[ "5 2\n1\n-1\n-1\n1\n0\n" ]
[ "1\n2\n4\n5\n3\n" ]
In the example, hacking would look like this: 5 2 3 1 0 This means that the current distance to Mars is equal to $3$, Natasha knows that it does not exceed $5$, and the rocket answers in order: correctly, incorrectly, correctly, incorrectly ... Really: on the first query ($1$) the correct answer is $1$, the rocket...
0
[ { "input": "5 2 3\n1 0", "output": "3 queries, x=3" }, { "input": "1 1 1\n1", "output": "1 queries, x=1" }, { "input": "3 2 3\n1 0", "output": "4 queries, x=3" }, { "input": "6 3 5\n1 1 1", "output": "5 queries, x=5" }, { "input": "10 4 3\n0 0 1 0", "output": ...
1,599,511,052
2,147,483,647
PyPy 3
OK
TESTS
135
171
102,400
from __future__ import print_function from sys import stdin, stdout rints = lambda: [int(x) for x in stdin.readline().split()] m, n = rints() ans = [] for i in range(1, min(n, m) + 1): print(i, flush=True) ans.append(int(input())) if ans[-1] == 0: exit() be, en, ix = 1, m, 0 whi...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: This is an interactive problem. Natasha is going to fly to Mars. Finally, Natasha sat in the rocket. She flies, flies... but gets bored. She wishes to arrive to Mars already! So she decides to find something to occupy herself. Sh...
```python from __future__ import print_function from sys import stdin, stdout rints = lambda: [int(x) for x in stdin.readline().split()] m, n = rints() ans = [] for i in range(1, min(n, m) + 1): print(i, flush=True) ans.append(int(input())) if ans[-1] == 0: exit() be, en, ix = 1, m...
3
227
B
Effective Approach
PROGRAMMING
1,100
[ "implementation" ]
null
null
Once at a team training Vasya, Petya and Sasha got a problem on implementing linear search in an array. According to the boys, linear search works as follows. The array elements in a pre-selected order are in turn compared with the number that you need to find. Once you find the array element that is equal to the requ...
The first line contains integer *n* (1<=≀<=*n*<=≀<=105) β€” the number of elements in the array. The second line contains *n* distinct space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≀<=*a**i*<=≀<=*n*) β€” the elements of array. The third line contains integer *m* (1<=≀<=*m*<=≀<=105) β€” the number of queries. The ...
Print two integers, showing how many comparisons Vasya's approach needs and how many comparisons Petya's approach needs. Separate the numbers by spaces. Please, do not use the %lld specifier to read or write 64-bit integers in Π‘++. It is preferred to use cin, cout streams or the %I64d specifier.
[ "2\n1 2\n1\n1\n", "2\n2 1\n1\n1\n", "3\n3 1 2\n3\n1 2 3\n" ]
[ "1 2\n", "2 1\n", "6 6\n" ]
In the first sample Vasya's approach will make one comparison (it starts with the 1-st element and immediately finds the required number), and Petya's approach makes two comparisons (first he compares with the 2-nd array element, doesn't find the search item and compares with the 1-st element). In the second sample, o...
1,000
[ { "input": "2\n1 2\n1\n1", "output": "1 2" }, { "input": "2\n2 1\n1\n1", "output": "2 1" }, { "input": "3\n3 1 2\n3\n1 2 3", "output": "6 6" }, { "input": "9\n2 9 3 1 6 4 7 8 5\n9\n5 1 5 2 8 4 4 4 5", "output": "58 32" }, { "input": "10\n3 10 9 2 7 6 5 8 4 1\n1\n4...
1,665,463,997
2,147,483,647
Python 3
OK
TESTS
34
374
9,011,200
# direct access array n = int(input()) A = tuple(map(int,input().split())) m = int(input()) B = tuple(map(int,input().split())) D_array = [None] * 100001 for i in range(0, n): D_array[A[i]] = i + 1 V, P = 0, 0 for i in B: V += D_array[i] P += n + 1 - D_array[i] print(V, P)
Title: Effective Approach Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once at a team training Vasya, Petya and Sasha got a problem on implementing linear search in an array. According to the boys, linear search works as follows. The array elements in a pre-selected order are in turn c...
```python # direct access array n = int(input()) A = tuple(map(int,input().split())) m = int(input()) B = tuple(map(int,input().split())) D_array = [None] * 100001 for i in range(0, n): D_array[A[i]] = i + 1 V, P = 0, 0 for i in B: V += D_array[i] P += n + 1 - D_array[i] print(V, P) ```
3
285
B
Find Marble
PROGRAMMING
1,200
[ "implementation" ]
null
null
Petya and Vasya are playing a game. Petya's got *n* non-transparent glasses, standing in a row. The glasses' positions are indexed with integers from 1 to *n* from left to right. Note that the positions are indexed but the glasses are not. First Petya puts a marble under the glass in position *s*. Then he performs som...
The first line contains three integers: *n*,<=*s*,<=*t* (1<=≀<=*n*<=≀<=105;Β 1<=≀<=*s*,<=*t*<=≀<=*n*) β€” the number of glasses, the ball's initial and final position. The second line contains *n* space-separated integers: *p*1,<=*p*2,<=...,<=*p**n* (1<=≀<=*p**i*<=≀<=*n*) β€” the shuffling operation parameters. It is guaran...
If the marble can move from position *s* to position *t*, then print on a single line a non-negative integer β€” the minimum number of shuffling operations, needed to get the marble to position *t*. If it is impossible, print number -1.
[ "4 2 1\n2 3 4 1\n", "4 3 3\n4 1 3 2\n", "4 3 4\n1 2 3 4\n", "3 1 3\n2 1 3\n" ]
[ "3\n", "0\n", "-1\n", "-1\n" ]
none
1,000
[ { "input": "4 2 1\n2 3 4 1", "output": "3" }, { "input": "4 3 3\n4 1 3 2", "output": "0" }, { "input": "4 3 4\n1 2 3 4", "output": "-1" }, { "input": "3 1 3\n2 1 3", "output": "-1" }, { "input": "1 1 1\n1", "output": "0" }, { "input": "10 6 7\n10 7 8 1...
1,596,633,154
2,147,483,647
Python 3
OK
TESTS
33
434
14,028,800
enter = input().split() n = int(enter[0]) - 1 s = int(enter[1]) - 1 t = int(enter[2]) - 1 fix = s arr_b = [int(i) - 1 for i in input().split()] arr_a = [i for i in range(1,n+2)] target = arr_a[s] flag = 0 #print(arr_a) #print(arr_b) i = 0 while (arr_a[t] != target): correct_pos = arr_b[s] ar...
Title: Find Marble Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya and Vasya are playing a game. Petya's got *n* non-transparent glasses, standing in a row. The glasses' positions are indexed with integers from 1 to *n* from left to right. Note that the positions are indexed but the ...
```python enter = input().split() n = int(enter[0]) - 1 s = int(enter[1]) - 1 t = int(enter[2]) - 1 fix = s arr_b = [int(i) - 1 for i in input().split()] arr_a = [i for i in range(1,n+2)] target = arr_a[s] flag = 0 #print(arr_a) #print(arr_b) i = 0 while (arr_a[t] != target): correct_pos = arr_b...
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,688,647,650
2,147,483,647
Python 3
OK
TESTS
31
92
0
h=[] g=[] n=int(input()) for i in range(n): hi,gi=map(int,input().split()) h.append(hi) g.append(gi) d=dict.fromkeys(g,0) for i in range(n): for j in range(n): if g[i]==h[j]: d[g[i]]+=1 l=list(d.values()) print(sum(l))
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 h=[] g=[] n=int(input()) for i in range(n): hi,gi=map(int,input().split()) h.append(hi) g.append(gi) d=dict.fromkeys(g,0) for i in range(n): for j in range(n): if g[i]==h[j]: d[g[i]]+=1 l=list(d.values()) print(sum(l)) ```
3
935
A
Fafa and his Company
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Fafa owns a company that works on huge projects. There are *n* employees in Fafa's company. Whenever the company has a new project to start working on, Fafa has to divide the tasks of this project among all the employees. Fafa finds doing this every time is very tiring for him. So, he decided to choose the best *l* em...
The input consists of a single line containing a positive integer *n* (2<=≀<=*n*<=≀<=105) β€” the number of employees in Fafa's company.
Print a single integer representing the answer to the problem.
[ "2\n", "10\n" ]
[ "1\n", "3\n" ]
In the second sample Fafa has 3 ways: - choose only 1 employee as a team leader with 9 employees under his responsibility. - choose 2 employees as team leaders with 4 employees under the responsibility of each of them. - choose 5 employees as team leaders with 1 employee under the responsibility of each of them.
500
[ { "input": "2", "output": "1" }, { "input": "10", "output": "3" }, { "input": "3", "output": "1" }, { "input": "4", "output": "2" }, { "input": "6", "output": "3" }, { "input": "13", "output": "1" }, { "input": "100000", "output": "35" ...
1,639,768,640
2,147,483,647
Python 3
OK
TESTS
33
61
0
no_of_employees=int(input()) i=1 ways=0 while(i<=no_of_employees/2): if(no_of_employees%i==0): ways+=1 i+=1 print(ways)
Title: Fafa and his Company Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fafa owns a company that works on huge projects. There are *n* employees in Fafa's company. Whenever the company has a new project to start working on, Fafa has to divide the tasks of this project among all the emp...
```python no_of_employees=int(input()) i=1 ways=0 while(i<=no_of_employees/2): if(no_of_employees%i==0): ways+=1 i+=1 print(ways) ```
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,578,862,036
2,147,483,647
Python 3
OK
TESTS
87
217
8,499,200
def isOdd (x): return x%2==1 def isEven (x): return x%2==0 input() arr = [int(z) for z in input().split()] oddA = list(filter(isOdd,arr)) oddA.sort() evenSum = sum(filter(isEven,arr)) if(isOdd(len(oddA))): print(evenSum+sum(oddA[1:])) else: print(evenSum+sum(oddA))
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 def isOdd (x): return x%2==1 def isEven (x): return x%2==0 input() arr = [int(z) for z in input().split()] oddA = list(filter(isOdd,arr)) oddA.sort() evenSum = sum(filter(isEven,arr)) if(isOdd(len(oddA))): print(evenSum+sum(oddA[1:])) else: print(evenSum+sum(oddA)) ```
3
472
B
Design Tutorial: Learn from Life
PROGRAMMING
1,300
[]
null
null
One way to create a task is to learn from life. You can choose some experience in real life, formalize it and then you will get a new task. Let's think about a scene in real life: there are lots of people waiting in front of the elevator, each person wants to go to a certain floor. We can formalize it in the following...
The first line contains two integers *n* and *k* (1<=≀<=*n*,<=*k*<=≀<=2000) β€” the number of people and the maximal capacity of the elevator. The next line contains *n* integers: *f*1,<=*f*2,<=...,<=*f**n* (2<=≀<=*f**i*<=≀<=2000), where *f**i* denotes the target floor of the *i*-th person.
Output a single integer β€” the minimal time needed to achieve the goal.
[ "3 2\n2 3 4\n", "4 2\n50 100 50 100\n", "10 3\n2 2 2 2 2 2 2 2 2 2\n" ]
[ "8\n", "296\n", "8\n" ]
In first sample, an optimal solution is: 1. The elevator takes up person #1 and person #2. 1. It goes to the 2nd floor. 1. Both people go out of the elevator. 1. The elevator goes back to the 1st floor. 1. Then the elevator takes up person #3. 1. And it goes to the 2nd floor. 1. It picks up person #2. 1. Then...
1,000
[ { "input": "3 2\n2 3 4", "output": "8" }, { "input": "4 2\n50 100 50 100", "output": "296" }, { "input": "10 3\n2 2 2 2 2 2 2 2 2 2", "output": "8" }, { "input": "1 1\n2", "output": "2" }, { "input": "2 1\n2 2", "output": "4" }, { "input": "2 2\n2 2", ...
1,679,909,382
2,147,483,647
Python 3
OK
TESTS
31
46
0
people, capacity = map(int, input().split()) lst = sorted(list(map(int, input().split()))) tempTime = 0 while(len(lst) > 0): tempArr = [] for i in range(capacity): if(len(lst) > 0): tempArr.append(lst.pop()) tempArr = sorted(tempArr) if(len(tempArr) < 0): break ...
Title: Design Tutorial: Learn from Life Time Limit: None seconds Memory Limit: None megabytes Problem Description: One way to create a task is to learn from life. You can choose some experience in real life, formalize it and then you will get a new task. Let's think about a scene in real life: there are lots of peo...
```python people, capacity = map(int, input().split()) lst = sorted(list(map(int, input().split()))) tempTime = 0 while(len(lst) > 0): tempArr = [] for i in range(capacity): if(len(lst) > 0): tempArr.append(lst.pop()) tempArr = sorted(tempArr) if(len(tempArr) < 0): ...
3
748
B
Santa Claus and Keyboard Check
PROGRAMMING
1,500
[ "implementation", "strings" ]
null
null
Santa Claus decided to disassemble his keyboard to clean it. After he returned all the keys back, he suddenly realized that some pairs of keys took each other's place! That is, Santa suspects that each key is either on its place, or on the place of another key, which is located exactly where the first key should be. ...
The input consists of only two strings *s* and *t* denoting the favorite Santa's patter and the resulting string. *s* and *t* are not empty and have the same length, which is at most 1000. Both strings consist only of lowercase English letters.
If Santa is wrong, and there is no way to divide some of keys into pairs and swap keys in each pair so that the keyboard will be fixed, print Β«-1Β» (without quotes). Otherwise, the first line of output should contain the only integer *k* (*k*<=β‰₯<=0)Β β€” the number of pairs of keys that should be swapped. The following *k...
[ "helloworld\nehoolwlroz\n", "hastalavistababy\nhastalavistababy\n", "merrychristmas\nchristmasmerry\n" ]
[ "3\nh e\nl o\nd z\n", "0\n", "-1\n" ]
none
1,000
[ { "input": "helloworld\nehoolwlroz", "output": "3\nh e\nl o\nd z" }, { "input": "hastalavistababy\nhastalavistababy", "output": "0" }, { "input": "merrychristmas\nchristmasmerry", "output": "-1" }, { "input": "kusyvdgccw\nkusyvdgccw", "output": "0" }, { "input": "...
1,567,793,582
2,147,483,647
Python 3
OK
TESTS
86
124
0
s = input() t = input() w1, w2 = set(), set() for i in range(len(s)): l1, l2 = min(s[i], t[i]), max(s[i], t[i]) if (s[i] in w2 or t[i] in w2) and (l1, l2) not in w1: print(-1) exit() else: w2.add(s[i]) w2.add(t[i]) w1.add((l1, l2)) result = [elem for elem ...
Title: Santa Claus and Keyboard Check Time Limit: None seconds Memory Limit: None megabytes Problem Description: Santa Claus decided to disassemble his keyboard to clean it. After he returned all the keys back, he suddenly realized that some pairs of keys took each other's place! That is, Santa suspects that each ke...
```python s = input() t = input() w1, w2 = set(), set() for i in range(len(s)): l1, l2 = min(s[i], t[i]), max(s[i], t[i]) if (s[i] in w2 or t[i] in w2) and (l1, l2) not in w1: print(-1) exit() else: w2.add(s[i]) w2.add(t[i]) w1.add((l1, l2)) result = [elem...
3
888
B
Buggy Robot
PROGRAMMING
1,000
[ "greedy" ]
null
null
Ivan has a robot which is situated on an infinite grid. Initially the robot is standing in the starting cell (0,<=0). The robot can process commands. There are four types of commands it can perform: - U β€” move from the cell (*x*,<=*y*) to (*x*,<=*y*<=+<=1); - D β€” move from (*x*,<=*y*) to (*x*,<=*y*<=-<=1); - L β€” mo...
The first line contains one number *n* β€” the length of sequence of commands entered by Ivan (1<=≀<=*n*<=≀<=100). The second line contains the sequence itself β€” a string consisting of *n* characters. Each character can be U, D, L or R.
Print the maximum possible number of commands from the sequence the robot could perform to end up in the starting cell.
[ "4\nLDUR\n", "5\nRRRUU\n", "6\nLLRRRR\n" ]
[ "4\n", "0\n", "4\n" ]
none
0
[ { "input": "4\nLDUR", "output": "4" }, { "input": "5\nRRRUU", "output": "0" }, { "input": "6\nLLRRRR", "output": "4" }, { "input": "88\nLLUUULRDRRURDDLURRLRDRLLRULRUUDDLLLLRRDDURDURRLDURRLDRRRUULDDLRRRDDRRLUULLURDURUDDDDDLDR", "output": "76" }, { "input": "89\nLDL...
1,564,857,637
2,147,483,647
Python 3
OK
TESTS
25
124
0
input() k=input() print((min(k.count("R"),k.count("L"))+min(k.count("D"),k.count("U")))*2)
Title: Buggy Robot Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ivan has a robot which is situated on an infinite grid. Initially the robot is standing in the starting cell (0,<=0). The robot can process commands. There are four types of commands it can perform: - U β€” move from the ce...
```python input() k=input() print((min(k.count("R"),k.count("L"))+min(k.count("D"),k.count("U")))*2) ```
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,551,321,368
2,147,483,647
Python 3
OK
TESTS
40
109
0
a=str(input()) s="hello" j=0 c=0 for i in range(0,len(a)): if a[i]==s[j]: i+=1 j+=1 c+=1 if c==5: break if c==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 a=str(input()) s="hello" j=0 c=0 for i in range(0,len(a)): if a[i]==s[j]: i+=1 j+=1 c+=1 if c==5: break if c==5: print("YES") else: print("NO") ```
3.9455
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob β€” to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≀<=*n*<=≀<=100) β€” amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,632,832,107
2,147,483,647
Python 3
OK
TESTS
32
124
6,963,200
t = int(input()) n = input().split(" ") num = [int(i) for i in n] even = 0;lastev = 0;lastodd = 0 for i in range(1,t+1): if (num[i-1]%2==0): even+=1 lastev = i else: even-=1 lastodd = i if even > 0: print(lastodd) else:print(lastev)
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob β€” t...
```python t = int(input()) n = input().split(" ") num = [int(i) for i in n] even = 0;lastev = 0;lastodd = 0 for i in range(1,t+1): if (num[i-1]%2==0): even+=1 lastev = i else: even-=1 lastodd = i if even > 0: print(lastodd) else:print(lastev) ```
3.95603
764
A
Taymyr is calling you
PROGRAMMING
800
[ "brute force", "implementation", "math" ]
null
null
Comrade Dujikov is busy choosing artists for Timofey's birthday and is recieving calls from Taymyr from Ilia-alpinist. Ilia-alpinist calls every *n* minutes, i.e. in minutes *n*, 2*n*, 3*n* and so on. Artists come to the comrade every *m* minutes, i.e. in minutes *m*, 2*m*, 3*m* and so on. The day is *z* minutes long,...
The only string contains three integersΒ β€” *n*, *m* and *z* (1<=≀<=*n*,<=*m*,<=*z*<=≀<=104).
Print single integerΒ β€” the minimum number of artists that should be killed so that there are no artists in the room when Ilia calls.
[ "1 1 10\n", "1 2 5\n", "2 3 9\n" ]
[ "10\n", "2\n", "1\n" ]
Taymyr is a place in the north of Russia. In the first test the artists come each minute, as well as the calls, so we need to kill all of them. In the second test we need to kill artists which come on the second and the fourth minutes. In the third testΒ β€” only the artist which comes on the sixth minute.
500
[ { "input": "1 1 10", "output": "10" }, { "input": "1 2 5", "output": "2" }, { "input": "2 3 9", "output": "1" }, { "input": "4 8 9", "output": "1" }, { "input": "7 9 2", "output": "0" }, { "input": "10000 10000 10000", "output": "1" }, { "i...
1,612,367,690
2,147,483,647
Python 3
OK
TESTS
32
62
0
n, m, z = [int(i) for i in input().split()] copy_n = n copy_m = m x = 1 cnt = 0 while x <= z: if n == x: n += copy_n if m == x: m += copy_m cnt += 1 x += 1 continue if x == m: m += copy_m x += 1 print(cnt)
Title: Taymyr is calling you Time Limit: None seconds Memory Limit: None megabytes Problem Description: Comrade Dujikov is busy choosing artists for Timofey's birthday and is recieving calls from Taymyr from Ilia-alpinist. Ilia-alpinist calls every *n* minutes, i.e. in minutes *n*, 2*n*, 3*n* and so on. Artists com...
```python n, m, z = [int(i) for i in input().split()] copy_n = n copy_m = m x = 1 cnt = 0 while x <= z: if n == x: n += copy_n if m == x: m += copy_m cnt += 1 x += 1 continue if x == m: m += copy_m x += 1 print(cnt) ```
3
616
B
Dinner with Emma
PROGRAMMING
1,000
[ "games", "greedy" ]
null
null
Jack decides to invite Emma out for a dinner. Jack is a modest student, he doesn't want to go to an expensive restaurant. Emma is a girl with high taste, she prefers elite places. Munhattan consists of *n* streets and *m* avenues. There is exactly one restaurant on the intersection of each street and avenue. The stree...
The first line contains two integers *n*,<=*m* (1<=≀<=*n*,<=*m*<=≀<=100) β€” the number of streets and avenues in Munhattan. Each of the next *n* lines contains *m* integers *c**ij* (1<=≀<=*c**ij*<=≀<=109) β€” the cost of the dinner in the restaurant on the intersection of the *i*-th street and the *j*-th avenue.
Print the only integer *a* β€” the cost of the dinner for Jack and Emma.
[ "3 4\n4 1 3 5\n2 2 2 2\n5 4 5 1\n", "3 3\n1 2 3\n2 3 1\n3 1 2\n" ]
[ "2\n", "1\n" ]
In the first example if Emma chooses the first or the third streets Jack can choose an avenue with the cost of the dinner 1. So she chooses the second street and Jack chooses any avenue. The cost of the dinner is 2. In the second example regardless of Emma's choice Jack can choose a restaurant with the cost of the din...
0
[ { "input": "3 4\n4 1 3 5\n2 2 2 2\n5 4 5 1", "output": "2" }, { "input": "3 3\n1 2 3\n2 3 1\n3 1 2", "output": "1" }, { "input": "1 1\n1", "output": "1" }, { "input": "1 10\n74 35 82 39 1 84 29 41 70 12", "output": "1" }, { "input": "10 1\n44\n23\n65\n17\n48\n29\n...
1,605,638,007
2,147,483,647
Python 3
OK
TESTS
16
108
512,000
n, m = map(int, input().split()) ul = [] pr = [] for i in range(n): pr = [int(i) for i in input().split()] ul.append(pr) pr = [] mini = [] maxi = [] for i in range(n): min1 = ul[i][0] for j in range(m): if min1 > ul[i][j]: min1 = ul[i][j] mini.append(min1) for ...
Title: Dinner with Emma Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jack decides to invite Emma out for a dinner. Jack is a modest student, he doesn't want to go to an expensive restaurant. Emma is a girl with high taste, she prefers elite places. Munhattan consists of *n* streets and...
```python n, m = map(int, input().split()) ul = [] pr = [] for i in range(n): pr = [int(i) for i in input().split()] ul.append(pr) pr = [] mini = [] maxi = [] for i in range(n): min1 = ul[i][0] for j in range(m): if min1 > ul[i][j]: min1 = ul[i][j] mini.append(m...
3
235
A
LCM Challenge
PROGRAMMING
1,600
[ "number theory" ]
null
null
Some days ago, I learned the concept of LCM (least common multiple). I've played with it for several times and I want to make a big number with it. But I also don't want to use many numbers, so I'll choose three positive integers (they don't have to be distinct) which are not greater than *n*. Can you help me to find ...
The first line contains an integer *n* (1<=≀<=*n*<=≀<=106) β€” the *n* mentioned in the statement.
Print a single integer β€” the maximum possible LCM of three not necessarily distinct positive integers that are not greater than *n*.
[ "9\n", "7\n" ]
[ "504\n", "210\n" ]
The least common multiple of some positive integers is the least positive integer which is multiple for each of them. The result may become very large, 32-bit integer won't be enough. So using 64-bit integers is recommended. For the last example, we can chose numbers 7, 6, 5 and the LCM of them is 7Β·6Β·5 = 210. It is ...
500
[ { "input": "9", "output": "504" }, { "input": "7", "output": "210" }, { "input": "1", "output": "1" }, { "input": "5", "output": "60" }, { "input": "6", "output": "60" }, { "input": "33", "output": "32736" }, { "input": "21", "output": ...
1,555,527,880
2,147,483,647
Python 3
OK
TESTS
87
218
0
import math def main(): n = int(input()) if n <= 3: ans = 1 for i in range(1,n+1): ans *= i print(ans) return if n%2 == 0: #print(n,n-1,n-3) if n%3 == 0: print((n-3)*(n-1)*(n-2)) else: print(n*(n-1)*(...
Title: LCM Challenge Time Limit: None seconds Memory Limit: None megabytes Problem Description: Some days ago, I learned the concept of LCM (least common multiple). I've played with it for several times and I want to make a big number with it. But I also don't want to use many numbers, so I'll choose three positive...
```python import math def main(): n = int(input()) if n <= 3: ans = 1 for i in range(1,n+1): ans *= i print(ans) return if n%2 == 0: #print(n,n-1,n-3) if n%3 == 0: print((n-3)*(n-1)*(n-2)) else: print...
3
259
B
Little Elephant and Magic Square
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
Little Elephant loves magic squares very much. A magic square is a 3<=Γ—<=3 table, each cell contains some positive integer. At that the sums of integers in all rows, columns and diagonals of the table are equal. The figure below shows the magic square, the sum of integers in all its rows, columns and diagonals equals ...
The first three lines of the input contain the Little Elephant's notes. The first line contains elements of the first row of the magic square. The second line contains the elements of the second row, the third line is for the third row. The main diagonal elements that have been forgotten by the Elephant are represented...
Print three lines, in each line print three integers β€” the Little Elephant's magic square. If there are multiple magic squares, you are allowed to print any of them. Note that all numbers you print must be positive and not exceed 105. It is guaranteed that there exists at least one magic square that meets the conditio...
[ "0 1 1\n1 0 1\n1 1 0\n", "0 3 6\n5 0 5\n4 7 0\n" ]
[ "1 1 1\n1 1 1\n1 1 1\n", "6 3 6\n5 5 5\n4 7 4\n" ]
none
1,000
[ { "input": "0 1 1\n1 0 1\n1 1 0", "output": "1 1 1\n1 1 1\n1 1 1" }, { "input": "0 3 6\n5 0 5\n4 7 0", "output": "6 3 6\n5 5 5\n4 7 4" }, { "input": "0 4 4\n4 0 4\n4 4 0", "output": "4 4 4\n4 4 4\n4 4 4" }, { "input": "0 54 48\n36 0 78\n66 60 0", "output": "69 54 48\n36 5...
1,597,740,634
2,147,483,647
PyPy 3
OK
TESTS
24
278
0
M=[] for i in range(3): L=list(map(int,input().split())) M.append(L) x2=M[0][2] x3=M[1][0] x5=M[2][0] x6=M[2][1] M[0][0]=(x2+x5+x6-x3)//2 M[1][1]=(x2+x5)//2 M[2][2]=(x2+x5+x3-x6)//2 for i in range(3): for j in range(3): print(M[i][j],end=" ") print("")
Title: Little Elephant and Magic Square Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Elephant loves magic squares very much. A magic square is a 3<=Γ—<=3 table, each cell contains some positive integer. At that the sums of integers in all rows, columns and diagonals of the table ...
```python M=[] for i in range(3): L=list(map(int,input().split())) M.append(L) x2=M[0][2] x3=M[1][0] x5=M[2][0] x6=M[2][1] M[0][0]=(x2+x5+x6-x3)//2 M[1][1]=(x2+x5)//2 M[2][2]=(x2+x5+x3-x6)//2 for i in range(3): for j in range(3): print(M[i][j],end=" ") print("") ```
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,600,056,403
2,147,483,647
Python 3
OK
TESTS
40
218
0
def reverse(s): str1 = "" for i in s: str1 = i + str1 return str1 s1=str(input()) s2=str(input()) rev="" rev=reverse(s1) if s2==rev: print("YES") else: print("NO")
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 reverse(s): str1 = "" for i in s: str1 = i + str1 return str1 s1=str(input()) s2=str(input()) rev="" rev=reverse(s1) if s2==rev: print("YES") else: print("NO") ```
3.9455
899
C
Dividing the numbers
PROGRAMMING
1,300
[ "constructive algorithms", "graphs", "math" ]
null
null
Petya has *n* integers: 1,<=2,<=3,<=...,<=*n*. He wants to split these integers in two non-empty groups in such a way that the absolute difference of sums of integers in each group is as small as possible. Help Petya to split the integers. Each of *n* integers should be exactly in one group.
The first line contains a single integer *n* (2<=≀<=*n*<=≀<=60<=000) β€” the number of integers Petya has.
Print the smallest possible absolute difference in the first line. In the second line print the size of the first group, followed by the integers in that group. You can print these integers in arbitrary order. If there are multiple answers, print any of them.
[ "4\n", "2\n" ]
[ "0\n2 1 4 \n", "1\n1 1 \n" ]
In the first example you have to put integers 1 and 4 in the first group, and 2 and 3 in the second. This way the sum in each group is 5, and the absolute difference is 0. In the second example there are only two integers, and since both groups should be non-empty, you have to put one integer in the first group and on...
1,500
[ { "input": "4", "output": "0\n2 1 4 " }, { "input": "2", "output": "1\n1 1 " }, { "input": "3", "output": "0\n1\n3 " }, { "input": "5", "output": "1\n3\n1 2 5 " }, { "input": "59998", "output": "1\n29999 1 4 5 8 9 12 13 16 17 20 21 24 25 28 29 32 33 36 37 40 4...
1,663,714,344
2,147,483,647
PyPy 3-64
OK
TESTS
60
92
5,017,600
def generate_list_124(s, n): lst = [] for i in range(s, int(n/2) + 1, 2): lst.append(i) lst.append(n-i+s) return lst def generate_list_3(s, n): lst = [] for i in range(s, int(n/2) - 1, 2): lst.append(i) lst.append(n-i+s) lst.append(int(n/2)) retu...
Title: Dividing the numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya has *n* integers: 1,<=2,<=3,<=...,<=*n*. He wants to split these integers in two non-empty groups in such a way that the absolute difference of sums of integers in each group is as small as possible. Help P...
```python def generate_list_124(s, n): lst = [] for i in range(s, int(n/2) + 1, 2): lst.append(i) lst.append(n-i+s) return lst def generate_list_3(s, n): lst = [] for i in range(s, int(n/2) - 1, 2): lst.append(i) lst.append(n-i+s) lst.append(int(n/2))...
3
259
A
Little Elephant and Chess
PROGRAMMING
1,000
[ "brute force", "strings" ]
null
null
The Little Elephant loves chess very much. One day the Little Elephant and his friend decided to play chess. They've got the chess pieces but the board is a problem. They've got an 8<=Γ—<=8 checkered board, each square is painted either black or white. The Little Elephant and his friend know that a proper chessboard d...
The input consists of exactly eight lines. Each line contains exactly eight characters "W" or "B" without any spaces: the *j*-th character in the *i*-th line stands for the color of the *j*-th cell of the *i*-th row of the elephants' board. Character "W" stands for the white color, character "B" stands for the black co...
In a single line print "YES" (without the quotes), if we can make the board a proper chessboard and "NO" (without the quotes) otherwise.
[ "WBWBWBWB\nBWBWBWBW\nBWBWBWBW\nBWBWBWBW\nWBWBWBWB\nWBWBWBWB\nBWBWBWBW\nWBWBWBWB\n", "WBWBWBWB\nWBWBWBWB\nBBWBWWWB\nBWBWBWBW\nBWBWBWBW\nBWBWBWWW\nBWBWBWBW\nBWBWBWBW\n" ]
[ "YES\n", "NO\n" ]
In the first sample you should shift the following lines one position to the right: the 3-rd, the 6-th, the 7-th and the 8-th. In the second sample there is no way you can achieve the goal.
500
[ { "input": "WBWBWBWB\nBWBWBWBW\nBWBWBWBW\nBWBWBWBW\nWBWBWBWB\nWBWBWBWB\nBWBWBWBW\nWBWBWBWB", "output": "YES" }, { "input": "WBWBWBWB\nWBWBWBWB\nBBWBWWWB\nBWBWBWBW\nBWBWBWBW\nBWBWBWWW\nBWBWBWBW\nBWBWBWBW", "output": "NO" }, { "input": "BWBWBWBW\nWBWBWBWB\nBWBWBWBW\nBWBWBWBW\nWBWBWBWB\nWBW...
1,578,061,408
2,147,483,647
PyPy 3
OK
TESTS
33
310
0
ans = True for i in range(8): s = input() for i in range(7): if s[i] == s[i+1]: ans = False if ans: print("YES") else: print("NO")
Title: Little Elephant and Chess Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant loves chess very much. One day the Little Elephant and his friend decided to play chess. They've got the chess pieces but the board is a problem. They've got an 8<=Γ—<=8 checkered board, e...
```python ans = True for i in range(8): s = input() for i in range(7): if s[i] == s[i+1]: ans = False if ans: print("YES") else: print("NO") ```
3