contestId
int64
0
1.01k
index
stringclasses
57 values
name
stringlengths
2
58
type
stringclasses
2 values
rating
int64
0
3.5k
tags
listlengths
0
11
title
stringclasses
522 values
time-limit
stringclasses
8 values
memory-limit
stringclasses
8 values
problem-description
stringlengths
0
7.15k
input-specification
stringlengths
0
2.05k
output-specification
stringlengths
0
1.5k
demo-input
listlengths
0
7
demo-output
listlengths
0
7
note
stringlengths
0
5.24k
points
float64
0
425k
test_cases
listlengths
0
402
creationTimeSeconds
int64
1.37B
1.7B
relativeTimeSeconds
int64
8
2.15B
programmingLanguage
stringclasses
3 values
verdict
stringclasses
14 values
testset
stringclasses
12 values
passedTestCount
int64
0
1k
timeConsumedMillis
int64
0
15k
memoryConsumedBytes
int64
0
805M
code
stringlengths
3
65.5k
prompt
stringlengths
262
8.2k
response
stringlengths
17
65.5k
score
float64
-1
3.99
124
A
The number of positions
PROGRAMMING
1,000
[ "math" ]
null
null
Petr stands in line of *n* people, but he doesn't know exactly which position he occupies. He can say that there are no less than *a* people standing in front of him and no more than *b* people standing behind him. Find the number of different positions Petr can occupy.
The only line contains three integers *n*, *a* and *b* (0<=≤<=*a*,<=*b*<=&lt;<=*n*<=≤<=100).
Print the single number — the number of the sought positions.
[ "3 1 1\n", "5 2 3\n" ]
[ "2\n", "3\n" ]
The possible positions in the first sample are: 2 and 3 (if we number the positions starting with 1). In the second sample they are 3, 4 and 5.
500
[ { "input": "3 1 1", "output": "2" }, { "input": "5 2 3", "output": "3" }, { "input": "5 4 0", "output": "1" }, { "input": "6 5 5", "output": "1" }, { "input": "9 4 3", "output": "4" }, { "input": "11 4 6", "output": "7" }, { "input": "13 8 ...
1,649,353,102
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
60
0
n,a,b = map(int,input().split()) if a == 0: print(n-b) elif b == 0: print(n-a) else: print (n-min(a,b))
Title: The number of positions Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petr stands in line of *n* people, but he doesn't know exactly which position he occupies. He can say that there are no less than *a* people standing in front of him and no more than *b* people standing behind h...
```python n,a,b = map(int,input().split()) if a == 0: print(n-b) elif b == 0: print(n-a) else: print (n-min(a,b)) ```
0
886
C
Petya and Catacombs
PROGRAMMING
1,300
[ "dsu", "greedy", "implementation", "trees" ]
null
null
A very brave explorer Petya once decided to explore Paris catacombs. Since Petya is not really experienced, his exploration is just walking through the catacombs. Catacombs consist of several rooms and bidirectional passages between some pairs of them. Some passages can connect a room to itself and since the passages ...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=2·105) — then number of notes in Petya's logbook. The second line contains *n* non-negative integers *t*1,<=*t*2,<=...,<=*t**n* (0<=≤<=*t**i*<=&lt;<=*i*) — notes in the logbook.
In the only line print a single integer — the minimum possible number of rooms in Paris catacombs.
[ "2\n0 0\n", "5\n0 1 0 1 3\n" ]
[ "2\n", "3\n" ]
In the first sample, sequence of rooms Petya visited could be, for example 1 → 1 → 2, 1 → 2 → 1 or 1 → 2 → 3. The minimum possible number of rooms is 2. In the second sample, the sequence could be 1 → 2 → 3 → 1 → 2 → 1.
1,500
[ { "input": "2\n0 0", "output": "2" }, { "input": "5\n0 1 0 1 3", "output": "3" }, { "input": "7\n0 1 0 0 0 0 0", "output": "6" }, { "input": "100\n0 0 0 0 0 0 1 4 4 0 2 2 4 1 7 1 11 0 8 4 12 12 3 0 3 2 2 4 3 9 1 5 4 6 9 14 6 2 4 18 7 7 19 11 20 13 17 16 0 34 2 6 12 27 9 4 29 ...
1,554,043,503
2,147,483,647
Python 3
OK
TESTS
31
218
14,643,200
n = int(input()) tmp = list(map(int, input().split())) t = [0] * (n + 1) for x in tmp: t[x] = 1 count = 1 for i in range(n): if not t[i]: count += 1 print(count)
Title: Petya and Catacombs Time Limit: None seconds Memory Limit: None megabytes Problem Description: A very brave explorer Petya once decided to explore Paris catacombs. Since Petya is not really experienced, his exploration is just walking through the catacombs. Catacombs consist of several rooms and bidirectiona...
```python n = int(input()) tmp = list(map(int, input().split())) t = [0] * (n + 1) for x in tmp: t[x] = 1 count = 1 for i in range(n): if not t[i]: count += 1 print(count) ```
3
629
C
Famil Door and Brackets
PROGRAMMING
2,000
[ "dp", "strings" ]
null
null
As Famil Door’s birthday is coming, some of his friends (like Gabi) decided to buy a present for him. His friends are going to buy a string consisted of round brackets since Famil Door loves string of brackets of length *n* more than any other strings! The sequence of round brackets is called valid if and only if: 1...
First line contains *n* and *m* (1<=≤<=*m*<=≤<=*n*<=≤<=100<=000,<=*n*<=-<=*m*<=≤<=2000) — the desired length of the string and the length of the string bought by Gabi, respectively. The second line contains string *s* of length *m* consisting of characters '(' and ')' only.
Print the number of pairs of string *p* and *q* such that *p*<=+<=*s*<=+<=*q* is a valid sequence of round brackets modulo 109<=+<=7.
[ "4 1\n(\n", "4 4\n(())\n", "4 3\n(((\n" ]
[ "4\n", "1\n", "0\n" ]
In the first sample there are four different valid pairs: 1. *p* = "(", *q* = "))" 1. *p* = "()", *q* = ")" 1. *p* = "", *q* = "())" 1. *p* = "", *q* = ")()" In the second sample the only way to obtain a desired string is choose empty *p* and *q*. In the third sample there is no way to get a valid sequence of b...
1,750
[ { "input": "4 1\n(", "output": "4" }, { "input": "4 4\n(())", "output": "1" }, { "input": "4 3\n(((", "output": "0" }, { "input": "875 50\n)))((())()))((()(())))))())))((((((()))))))()(((((", "output": "0" }, { "input": "1980 464\n))(()()))(((((((((()))))))(()((((...
1,686,288,781
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
3
327
37,273,600
# if you win, you live. you cannot win unless you fight. import string import sys from sys import stdin, setrecursionlimit # fd=open("cses.txt") # sys.stdin=fd input = stdin.readline rd = lambda: map(lambda s: int(s), input().strip().split()) rdone = lambda: map(lambda s: int(s) - 1, input().strip().split()) ri = lamb...
Title: Famil Door and Brackets Time Limit: None seconds Memory Limit: None megabytes Problem Description: As Famil Door’s birthday is coming, some of his friends (like Gabi) decided to buy a present for him. His friends are going to buy a string consisted of round brackets since Famil Door loves string of brackets o...
```python # if you win, you live. you cannot win unless you fight. import string import sys from sys import stdin, setrecursionlimit # fd=open("cses.txt") # sys.stdin=fd input = stdin.readline rd = lambda: map(lambda s: int(s), input().strip().split()) rdone = lambda: map(lambda s: int(s) - 1, input().strip().split())...
0
492
B
Vanya and Lanterns
PROGRAMMING
1,200
[ "binary search", "implementation", "math", "sortings" ]
null
null
Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the point *l*. Then the *i*-th lantern is at the point *a**i*. The lantern lights all points of the street that...
The first line contains two integers *n*, *l* (1<=≤<=*n*<=≤<=1000, 1<=≤<=*l*<=≤<=109) — the number of lanterns and the length of the street respectively. The next line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=*l*). Multiple lanterns can be located at the same point. The lanterns may be located at the ends of th...
Print the minimum light radius *d*, needed to light the whole street. The answer will be considered correct if its absolute or relative error doesn't exceed 10<=-<=9.
[ "7 15\n15 5 3 7 9 14 0\n", "2 5\n2 5\n" ]
[ "2.5000000000\n", "2.0000000000\n" ]
Consider the second sample. At *d* = 2 the first lantern will light the segment [0, 4] of the street, and the second lantern will light segment [3, 5]. Thus, the whole street will be lit.
1,000
[ { "input": "7 15\n15 5 3 7 9 14 0", "output": "2.5000000000" }, { "input": "2 5\n2 5", "output": "2.0000000000" }, { "input": "46 615683844\n431749087 271781274 274974690 324606253 480870261 401650581 13285442 478090364 266585394 425024433 588791449 492057200 391293435 563090494 317950 1...
1,687,988,713
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
30
0
line1 = input() line2 = input() split1 = line1.split() split2 = line2.split() n = int(split1[0]) l = int(split1[1]) mylist = [] for i in split2: mylist.append(int(i)) mylist.sort() difflist = [] for i in range(len(mylist) - 1): difflist.append(mylist[i + 1] - mylist[i]) max1 = -1 f...
Title: Vanya and Lanterns Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the poi...
```python line1 = input() line2 = input() split1 = line1.split() split2 = line2.split() n = int(split1[0]) l = int(split1[1]) mylist = [] for i in split2: mylist.append(int(i)) mylist.sort() difflist = [] for i in range(len(mylist) - 1): difflist.append(mylist[i + 1] - mylist[i]) max1...
0
339
B
Xenia and Ringroad
PROGRAMMING
1,000
[ "implementation" ]
null
null
Xenia lives in a city that has *n* houses built along the main ringroad. The ringroad houses are numbered 1 through *n* in the clockwise order. The ringroad traffic is one way and also is clockwise. Xenia has recently moved into the ringroad house number 1. As a result, she's got *m* things to do. In order to complete...
The first line contains two integers *n* and *m* (2<=≤<=*n*<=≤<=105,<=1<=≤<=*m*<=≤<=105). The second line contains *m* integers *a*1,<=*a*2,<=...,<=*a**m* (1<=≤<=*a**i*<=≤<=*n*). Note that Xenia can have multiple consecutive tasks in one house.
Print a single integer — the time Xenia needs to complete all tasks. 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\n3 2 3\n", "4 3\n2 3 3\n" ]
[ "6\n", "2\n" ]
In the first test example the sequence of Xenia's moves along the ringroad looks as follows: 1 → 2 → 3 → 4 → 1 → 2 → 3. This is optimal sequence. So, she needs 6 time units.
1,000
[ { "input": "4 3\n3 2 3", "output": "6" }, { "input": "4 3\n2 3 3", "output": "2" }, { "input": "2 2\n1 1", "output": "0" }, { "input": "2 2\n1 2", "output": "1" }, { "input": "2 2\n1 2", "output": "1" }, { "input": "100 100\n56 46 1 47 5 86 45 35 81 1 ...
1,695,478,573
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
92
0
s1=input().split() n=s1[0] m=s1[1] s2=input().split() start=1 t=0 for i in range(len(s2)): door=int(s2[i]) if door>=start: t+=door-start else: t+=max(start-1,5-start)+door-1 start=door print(t)
Title: Xenia and Ringroad Time Limit: None seconds Memory Limit: None megabytes Problem Description: Xenia lives in a city that has *n* houses built along the main ringroad. The ringroad houses are numbered 1 through *n* in the clockwise order. The ringroad traffic is one way and also is clockwise. Xenia has recent...
```python s1=input().split() n=s1[0] m=s1[1] s2=input().split() start=1 t=0 for i in range(len(s2)): door=int(s2[i]) if door>=start: t+=door-start else: t+=max(start-1,5-start)+door-1 start=door print(t) ```
0
754
B
Ilya and tic-tac-toe game
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
Ilya is an experienced player in tic-tac-toe on the 4<=×<=4 field. He always starts and plays with Xs. He played a lot of games today with his friend Arseny. The friends became tired and didn't finish the last game. It was Ilya's turn in the game when they left it. Determine whether Ilya could have won the game by maki...
The tic-tac-toe position is given in four lines. Each of these lines contains four characters. Each character is '.' (empty cell), 'x' (lowercase English letter x), or 'o' (lowercase English letter o). It is guaranteed that the position is reachable playing tic-tac-toe, and it is Ilya's turn now (in particular, it mea...
Print single line: "YES" in case Ilya could have won by making single turn, and "NO" otherwise.
[ "xx..\n.oo.\nx...\noox.\n", "x.ox\nox..\nx.o.\noo.x\n", "x..x\n..oo\no...\nx.xo\n", "o.x.\no...\n.x..\nooxx\n" ]
[ "YES\n", "NO\n", "YES\n", "NO\n" ]
In the first example Ilya had two winning moves: to the empty cell in the left column and to the leftmost empty cell in the first row. In the second example it wasn't possible to win by making single turn. In the third example Ilya could have won by placing X in the last row between two existing Xs. In the fourth ex...
1,000
[ { "input": "xx..\n.oo.\nx...\noox.", "output": "YES" }, { "input": "x.ox\nox..\nx.o.\noo.x", "output": "NO" }, { "input": "x..x\n..oo\no...\nx.xo", "output": "YES" }, { "input": "o.x.\no...\n.x..\nooxx", "output": "NO" }, { "input": ".xox\no.x.\nx.o.\n..o.", "...
1,653,149,091
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
46
0
import sys input = sys.stdin.readline g = [input()[:-1] for _ in range(4)] d = ['x.x', '.xx', 'xx.'] ans = 'NO' for i in range(4): for j in range(3): if d[j] in g[i]: ans = "YES" break if ans == 'YES': break else: w = list(map(''.join, zip(*g))) ...
Title: Ilya and tic-tac-toe game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ilya is an experienced player in tic-tac-toe on the 4<=×<=4 field. He always starts and plays with Xs. He played a lot of games today with his friend Arseny. The friends became tired and didn't finish the last...
```python import sys input = sys.stdin.readline g = [input()[:-1] for _ in range(4)] d = ['x.x', '.xx', 'xx.'] ans = 'NO' for i in range(4): for j in range(3): if d[j] in g[i]: ans = "YES" break if ans == 'YES': break else: w = list(map(''.join, zip(*...
0
812
A
Sagheer and Crossroads
PROGRAMMING
1,200
[ "implementation" ]
null
null
Sagheer is walking in the street when he comes to an intersection of two roads. Each road can be represented as two parts where each part has 3 lanes getting into the intersection (one for each direction) and 3 lanes getting out of the intersection, so we have 4 parts in total. Each part has 4 lights, one for each lane...
The input consists of four lines with each line describing a road part given in a counter-clockwise order. Each line contains four integers *l*, *s*, *r*, *p* — for the left, straight, right and pedestrian lights, respectively. The possible values are 0 for red light and 1 for green light.
On a single line, print "YES" if an accident is possible, and "NO" otherwise.
[ "1 0 0 1\n0 1 0 0\n0 0 1 0\n0 0 0 1\n", "0 1 1 0\n1 0 1 0\n1 1 0 0\n0 0 0 1\n", "1 0 0 0\n0 0 0 1\n0 0 0 0\n1 0 1 0\n" ]
[ "YES\n", "NO\n", "NO\n" ]
In the first example, some accidents are possible because cars of part 1 can hit pedestrians of parts 1 and 4. Also, cars of parts 2 and 3 can hit pedestrians of part 4. In the second example, no car can pass the pedestrian crossing of part 4 which is the only green pedestrian light. So, no accident can occur.
500
[ { "input": "1 0 0 1\n0 1 0 0\n0 0 1 0\n0 0 0 1", "output": "YES" }, { "input": "0 1 1 0\n1 0 1 0\n1 1 0 0\n0 0 0 1", "output": "NO" }, { "input": "1 0 0 0\n0 0 0 1\n0 0 0 0\n1 0 1 0", "output": "NO" }, { "input": "0 0 0 0\n0 0 0 1\n0 0 0 1\n0 0 0 1", "output": "NO" }, ...
1,496,764,303
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
33
62
0
a = [list(map(int, input().split())) for i in range(4)] for i in range(4): if not a[i][3]: continue if any(a[i][:3]) or a[(i + 1) % 4][0] or a[(i + 3) % 4][2]: print('YES') exit() print('NO')
Title: Sagheer and Crossroads Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sagheer is walking in the street when he comes to an intersection of two roads. Each road can be represented as two parts where each part has 3 lanes getting into the intersection (one for each direction) and 3 l...
```python a = [list(map(int, input().split())) for i in range(4)] for i in range(4): if not a[i][3]: continue if any(a[i][:3]) or a[(i + 1) % 4][0] or a[(i + 3) % 4][2]: print('YES') exit() print('NO') ```
0
276
B
Little Girl and Game
PROGRAMMING
1,300
[ "games", "greedy" ]
null
null
The Little Girl loves problems on games very much. Here's one of them. Two players have got a string *s*, consisting of lowercase English letters. They play a game that is described by the following rules: - The players move in turns; In one move the player can remove an arbitrary letter from string *s*. - If the p...
The input contains a single line, containing string *s* (1<=≤<=|*s*|<=<=≤<=<=103). String *s* consists of lowercase English letters.
In a single line print word "First" if the first player wins (provided that both players play optimally well). Otherwise, print word "Second". Print the words without the quotes.
[ "aba\n", "abca\n" ]
[ "First\n", "Second\n" ]
none
1,000
[ { "input": "aba", "output": "First" }, { "input": "abca", "output": "Second" }, { "input": "aabb", "output": "First" }, { "input": "ctjxzuimsxnarlciuynqeoqmmbqtagszuo", "output": "Second" }, { "input": "gevqgtaorjixsxnbcoybr", "output": "First" }, { "i...
1,692,478,425
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
s=raw_input() p=sum(s.count(x)%2 for x in set(s)) print'First'if p&1 or p==0 else'Second'
Title: Little Girl and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Girl loves problems on games very much. Here's one of them. Two players have got a string *s*, consisting of lowercase English letters. They play a game that is described by the following rules: - The...
```python s=raw_input() p=sum(s.count(x)%2 for x in set(s)) print'First'if p&1 or p==0 else'Second' ```
-1
803
B
Distances to Zero
PROGRAMMING
1,200
[ "constructive algorithms" ]
null
null
You are given the array of integer numbers *a*0,<=*a*1,<=...,<=*a**n*<=-<=1. For each element find the distance to the nearest zero (to the element which equals to zero). There is at least one zero element in the given array.
The first line contains integer *n* (1<=≤<=*n*<=≤<=2·105) — length of the array *a*. The second line contains integer elements of the array separated by single spaces (<=-<=109<=≤<=*a**i*<=≤<=109).
Print the sequence *d*0,<=*d*1,<=...,<=*d**n*<=-<=1, where *d**i* is the difference of indices between *i* and nearest *j* such that *a**j*<==<=0. It is possible that *i*<==<=*j*.
[ "9\n2 1 0 3 0 0 3 2 4\n", "5\n0 1 2 3 4\n", "7\n5 6 0 1 -2 3 4\n" ]
[ "2 1 0 1 0 0 1 2 3 ", "0 1 2 3 4 ", "2 1 0 1 2 3 4 " ]
none
0
[ { "input": "9\n2 1 0 3 0 0 3 2 4", "output": "2 1 0 1 0 0 1 2 3 " }, { "input": "5\n0 1 2 3 4", "output": "0 1 2 3 4 " }, { "input": "7\n5 6 0 1 -2 3 4", "output": "2 1 0 1 2 3 4 " }, { "input": "1\n0", "output": "0 " }, { "input": "2\n0 0", "output": "0 0 " ...
1,494,933,243
1,732
Python 3
WRONG_ANSWER
TESTS
9
62
0
n = int(input()) numIn = input().split() answer = [] start = numIn.index("0") for i in range(n): current = int(numIn[i]) if current == 0: index = i-1 answer.append(0) cnt = 1 start = 1 while index >= 0: if answer[index] > cnt: answ...
Title: Distances to Zero Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given the array of integer numbers *a*0,<=*a*1,<=...,<=*a**n*<=-<=1. For each element find the distance to the nearest zero (to the element which equals to zero). There is at least one zero element in the give...
```python n = int(input()) numIn = input().split() answer = [] start = numIn.index("0") for i in range(n): current = int(numIn[i]) if current == 0: index = i-1 answer.append(0) cnt = 1 start = 1 while index >= 0: if answer[index] > cnt: ...
0
98
B
Help King
PROGRAMMING
2,200
[ "implementation", "probabilities", "trees" ]
B. Help King
2
256
This is the modification of the problem used during the official round. Unfortunately, author's solution of the original problem appeared wrong, so the problem was changed specially for the archive. Once upon a time in a far away kingdom lived the King. The King had a beautiful daughter, Victoria. They lived happily, ...
The first line contains a single integer *n* from the problem's statement (1<=≤<=*n*<=≤<=10000).
Print the sought expected number of tosses as an irreducible fraction in the following form: "*a*/*b*" (without the quotes) without leading zeroes.
[ "2\n", "3\n", "4\n" ]
[ "1/1\n", "8/3\n", "2/1\n" ]
none
1,000
[ { "input": "2", "output": "1/1" }, { "input": "3", "output": "8/3" }, { "input": "4", "output": "2/1" }, { "input": "8", "output": "3/1" }, { "input": "7", "output": "24/7" }, { "input": "6", "output": "11/3" }, { "input": "1", "output"...
1,384,281,326
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
import math from fractions import Fraction knights = int(raw_input()) def ev(n): num_flips = int(math.ceil(math.log(n, 2))) num_states = 2**num_flips free_states = num_states - n if (free_states != 0) and (free_states != 1) and (n % free_states == 0): return ev(n / free_states) + Fra...
Title: Help King Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: This is the modification of the problem used during the official round. Unfortunately, author's solution of the original problem appeared wrong, so the problem was changed specially for the archive. Once upon a time in a far awa...
```python import math from fractions import Fraction knights = int(raw_input()) def ev(n): num_flips = int(math.ceil(math.log(n, 2))) num_states = 2**num_flips free_states = num_states - n if (free_states != 0) and (free_states != 1) and (n % free_states == 0): return ev(n / free_sta...
-1
190
D
Non-Secret Cypher
PROGRAMMING
1,900
[ "two pointers" ]
null
null
Berland starts to seize the initiative on the war with Flatland. To drive the enemy from their native land, the berlanders need to know exactly how many more flatland soldiers are left in the enemy's reserve. Fortunately, the scouts captured an enemy in the morning, who had a secret encrypted message with the informati...
The first line contains two space-separated integers *n*, *k* (1<=≤<=*k*<=≤<=*n*<=≤<=4·105), showing how many numbers an array has and how many equal numbers the subarrays are required to have, correspondingly. The second line contains *n* space-separated integers *a**i* (1<=≤<=*a**i*<=≤<=109) — elements of the array...
Print the single number — the number of such subarrays of array *a*, that they have at least *k* equal integers. Please do not use the %lld specifier to read or write 64-bit integers in С++. In is preferred to use the cin, cout streams or the %I64d specifier.
[ "4 2\n1 2 1 2\n", "5 3\n1 2 1 1 3\n", "3 1\n1 1 1\n" ]
[ "3", "2", "6" ]
In the first sample are three subarrays, containing at least two equal numbers: (1,2,1), (2,1,2) and (1,2,1,2). In the second sample are two subarrays, containing three equal numbers: (1,2,1,1,3) and (1,2,1,1). In the third sample any subarray contains at least one 1 number. Overall they are 6: (1), (1), (1), (1,1), ...
2,000
[ { "input": "4 2\n1 2 1 2", "output": "3" }, { "input": "5 3\n1 2 1 1 3", "output": "2" }, { "input": "3 1\n1 1 1", "output": "6" }, { "input": "20 2\n6 7 2 4 6 8 4 3 10 5 3 5 7 9 1 2 8 1 9 10", "output": "131" }, { "input": "63 2\n1 2 1 2 4 5 1 1 1 1 1 2 3 1 2 3 3...
1,678,037,922
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
7
3,000
2,355,200
import sys import copy from collections import Counter def n2(a, k): target = 0 valid = [] for i in range(len(a)): for j in range(i, len(a)): cnt = Counter(a[i:j+1]) if max(cnt.values()) >= k: target += 1 # valid.append(("idx", [i, j], "...
Title: Non-Secret Cypher Time Limit: None seconds Memory Limit: None megabytes Problem Description: Berland starts to seize the initiative on the war with Flatland. To drive the enemy from their native land, the berlanders need to know exactly how many more flatland soldiers are left in the enemy's reserve. Fortunat...
```python import sys import copy from collections import Counter def n2(a, k): target = 0 valid = [] for i in range(len(a)): for j in range(i, len(a)): cnt = Counter(a[i:j+1]) if max(cnt.values()) >= k: target += 1 # valid.append(("idx",...
0
291
A
Spyke Talks
PROGRAMMING
800
[ "*special", "implementation", "sortings" ]
null
null
Polycarpus is the director of a large corporation. There are *n* secretaries working for the corporation, each of them corresponds via the famous Spyke VoIP system during the day. We know that when two people call each other via Spyke, the Spyke network assigns a unique ID to this call, a positive integer session numbe...
The first line contains integer *n* (1<=≤<=*n*<=≤<=103) — the number of secretaries in Polycarpus's corporation. The next line contains *n* space-separated integers: *id*1,<=*id*2,<=...,<=*id**n* (0<=≤<=*id**i*<=≤<=109). Number *id**i* equals the number of the call session of the *i*-th secretary, if the secretary is t...
Print a single integer — the number of pairs of chatting secretaries, or -1 if Polycarpus's got a mistake in his records and the described situation could not have taken place.
[ "6\n0 1 7 1 7 10\n", "3\n1 1 1\n", "1\n0\n" ]
[ "2\n", "-1\n", "0\n" ]
In the first test sample there are two Spyke calls between secretaries: secretary 2 and secretary 4, secretary 3 and secretary 5. In the second test sample the described situation is impossible as conferences aren't allowed.
500
[ { "input": "6\n0 1 7 1 7 10", "output": "2" }, { "input": "3\n1 1 1", "output": "-1" }, { "input": "1\n0", "output": "0" }, { "input": "5\n2 2 1 1 3", "output": "2" }, { "input": "1\n1", "output": "0" }, { "input": "10\n4 21 3 21 21 1 1 2 2 3", "ou...
1,620,471,018
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
7
186
20,172,800
n=int(input()); c=0 l=list(map(int,input().split())) s=list(set(l)) for i in s: if l.count(i)==2: c+=1 elif l.count(i)>2: print(-1); quit() print(c)
Title: Spyke Talks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus is the director of a large corporation. There are *n* secretaries working for the corporation, each of them corresponds via the famous Spyke VoIP system during the day. We know that when two people call each othe...
```python n=int(input()); c=0 l=list(map(int,input().split())) s=list(set(l)) for i in s: if l.count(i)==2: c+=1 elif l.count(i)>2: print(-1); quit() print(c) ```
0
617
A
Elephant
PROGRAMMING
800
[ "math" ]
null
null
An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2, 3, 4 or 5 positions forward. Determine, what is the minimum number of steps he need to make ...
The first line of the input contains an integer *x* (1<=≤<=*x*<=≤<=1<=000<=000) — The coordinate of the friend's house.
Print the minimum number of steps that elephant needs to make to get from point 0 to point *x*.
[ "5\n", "12\n" ]
[ "1\n", "3\n" ]
In the first sample the elephant needs to make one step of length 5 to reach the point *x*. In the second sample the elephant can get to point *x* if he moves by 3, 5 and 4. There are other ways to get the optimal answer but the elephant cannot reach *x* in less than three moves.
500
[ { "input": "5", "output": "1" }, { "input": "12", "output": "3" }, { "input": "999999", "output": "200000" }, { "input": "41", "output": "9" }, { "input": "1000000", "output": "200000" }, { "input": "1", "output": "1" }, { "input": "2", ...
1,694,928,796
2,147,483,647
PyPy 3-64
OK
TESTS
34
61
0
#import re a = int(input()) print((a+4)//5)
Title: Elephant Time Limit: None seconds Memory Limit: None megabytes Problem Description: An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2...
```python #import re a = int(input()) print((a+4)//5) ```
3
445
A
DZY Loves Chessboard
PROGRAMMING
1,200
[ "dfs and similar", "implementation" ]
null
null
DZY loves chessboard, and he enjoys playing with it. He has a chessboard of *n* rows and *m* columns. Some cells of the chessboard are bad, others are good. For every good cell, DZY wants to put a chessman on it. Each chessman is either white or black. After putting all chessmen, DZY wants that no two chessmen with th...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100). Each of the next *n* lines contains a string of *m* characters: the *j*-th character of the *i*-th string is either "." or "-". A "." means that the corresponding cell (in the *i*-th row and the *j*-th column) is good, while a ...
Output must contain *n* lines, each line must contain a string of *m* characters. The *j*-th character of the *i*-th string should be either "W", "B" or "-". Character "W" means the chessman on the cell is white, "B" means it is black, "-" means the cell is a bad cell. If multiple answers exist, print any of them. It ...
[ "1 1\n.\n", "2 2\n..\n..\n", "3 3\n.-.\n---\n--." ]
[ "B\n", "BW\nWB\n", "B-B\n---\n--B" ]
In the first sample, DZY puts a single black chessman. Of course putting a white one is also OK. In the second sample, all 4 cells are good. No two same chessmen share an edge in the sample output. In the third sample, no good cells are adjacent. So you can just put 3 chessmen, no matter what their colors are.
500
[ { "input": "1 1\n.", "output": "B" }, { "input": "2 2\n..\n..", "output": "BW\nWB" }, { "input": "3 3\n.-.\n---\n--.", "output": "B-B\n---\n--B" }, { "input": "3 1\n-\n.\n.", "output": "-\nW\nB" }, { "input": "11 11\n-----------\n-----------\n-----------\n--------...
1,633,610,109
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
6,963,200
def cast(cre, typ): return type(typ)(map(cre, typ)); def solution(): n, m = cast(int, input().split()); block = ["B", "W"]; chess = [input() for i in range(n)]; chess2 = ["".join([block[(n+m)%2] for i in range(m)]) for i in range(n)] for i in range(n): for j in range(m): ...
Title: DZY Loves Chessboard Time Limit: None seconds Memory Limit: None megabytes Problem Description: DZY loves chessboard, and he enjoys playing with it. He has a chessboard of *n* rows and *m* columns. Some cells of the chessboard are bad, others are good. For every good cell, DZY wants to put a chessman on it. ...
```python def cast(cre, typ): return type(typ)(map(cre, typ)); def solution(): n, m = cast(int, input().split()); block = ["B", "W"]; chess = [input() for i in range(n)]; chess2 = ["".join([block[(n+m)%2] for i in range(m)]) for i in range(n)] for i in range(n): for j in range(m): ...
0
460
B
Little Dima and Equation
PROGRAMMING
1,500
[ "brute force", "implementation", "math", "number theory" ]
null
null
Little Dima misbehaved during a math lesson a lot and the nasty teacher Mr. Pickles gave him the following problem as a punishment. Find all integer solutions *x* (0<=&lt;<=*x*<=&lt;<=109) of the equation: where *a*, *b*, *c* are some predetermined constant values and function *s*(*x*) determines the sum of all digi...
The first line contains three space-separated integers: *a*,<=*b*,<=*c* (1<=≤<=*a*<=≤<=5; 1<=≤<=*b*<=≤<=10000; <=-<=10000<=≤<=*c*<=≤<=10000).
Print integer *n* — the number of the solutions that you've found. Next print *n* integers in the increasing order — the solutions of the given equation. Print only integer solutions that are larger than zero and strictly less than 109.
[ "3 2 8\n", "1 2 -18\n", "2 2 -1\n" ]
[ "3\n10 2008 13726 ", "0\n", "4\n1 31 337 967 " ]
none
1,000
[ { "input": "3 2 8", "output": "3\n10 2008 13726 " }, { "input": "1 2 -18", "output": "0" }, { "input": "2 2 -1", "output": "4\n1 31 337 967 " }, { "input": "1 1 0", "output": "9\n1 2 3 4 5 6 7 8 9 " }, { "input": "1 37 963", "output": "16\n1000 1111 1222 1333 ...
1,641,553,146
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
9
139
6,041,600
import sys import pprint import logging from logging import getLogger def input(): return sys.stdin.readline().rstrip("\r\n") logging.basicConfig(format="%(message)s", level=logging.WARNING,) logger = getLogger(__name__) logger.setLevel(logging.INFO) def debug(msg, *args): logger.info(f'{msg}={...
Title: Little Dima and Equation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Dima misbehaved during a math lesson a lot and the nasty teacher Mr. Pickles gave him the following problem as a punishment. Find all integer solutions *x* (0<=&lt;<=*x*<=&lt;<=109) of the equation: w...
```python import sys import pprint import logging from logging import getLogger def input(): return sys.stdin.readline().rstrip("\r\n") logging.basicConfig(format="%(message)s", level=logging.WARNING,) logger = getLogger(__name__) logger.setLevel(logging.INFO) def debug(msg, *args): logger.info...
0
817
C
Really Big Numbers
PROGRAMMING
1,600
[ "binary search", "brute force", "dp", "math" ]
null
null
Ivan likes to learn different things about numbers, but he is especially interested in really big numbers. Ivan thinks that a positive integer number *x* is really big if the difference between *x* and the sum of its digits (in decimal representation) is not less than *s*. To prove that these numbers may have different...
The first (and the only) line contains two integers *n* and *s* (1<=≤<=*n*,<=*s*<=≤<=1018).
Print one integer — the quantity of really big numbers that are not greater than *n*.
[ "12 1\n", "25 20\n", "10 9\n" ]
[ "3\n", "0\n", "1\n" ]
In the first example numbers 10, 11 and 12 are really big. In the second example there are no really big numbers that are not greater than 25 (in fact, the first really big number is 30: 30 - 3 ≥ 20). In the third example 10 is the only really big number (10 - 1 ≥ 9).
0
[ { "input": "12 1", "output": "3" }, { "input": "25 20", "output": "0" }, { "input": "10 9", "output": "1" }, { "input": "300 1000", "output": "0" }, { "input": "500 1000", "output": "0" }, { "input": "1000 2000", "output": "0" }, { "input":...
1,497,650,081
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
8
1,000
0
n, s = map(int, input().split()) res = 0 if s >= n: print(0) else: for n in range(n, 1, -1): res += n - sum(map(int, str(n))) >= s print(res)
Title: Really Big Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ivan likes to learn different things about numbers, but he is especially interested in really big numbers. Ivan thinks that a positive integer number *x* is really big if the difference between *x* and the sum of its...
```python n, s = map(int, input().split()) res = 0 if s >= n: print(0) else: for n in range(n, 1, -1): res += n - sum(map(int, str(n))) >= s print(res) ```
0
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,513,493,123
2,147,483,647
Python 3
OK
TESTS
81
124
5,632,000
n = int(input()) x = 0 y = 0 z = 0 for i in range(n): line = [int(x) for x in input().split()] x += line[0] y += line[1] z += line[2] if x == 0 and y == 0 and z == 0: print('YES') else: print('NO')
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python n = int(input()) x = 0 y = 0 z = 0 for i in range(n): line = [int(x) for x in input().split()] x += line[0] y += line[1] z += line[2] if x == 0 and y == 0 and z == 0: print('YES') else: print('NO') ```
3.95851
443
A
Anton and Letters
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
Recently, Anton has found a set. The set consists of small English letters. Anton carefully wrote out all the letters from the set in one line, separated by a comma. He also added an opening curved bracket at the beginning of the line and a closing curved bracket at the end of the line. Unfortunately, from time to ti...
The first and the single line contains the set of letters. The length of the line doesn't exceed 1000. It is guaranteed that the line starts from an opening curved bracket and ends with a closing curved bracket. Between them, small English letters are listed, separated by a comma. Each comma is followed by a space.
Print a single number — the number of distinct letters in Anton's set.
[ "{a, b, c}\n", "{b, a, b, a}\n", "{}\n" ]
[ "3\n", "2\n", "0\n" ]
none
500
[ { "input": "{a, b, c}", "output": "3" }, { "input": "{b, a, b, a}", "output": "2" }, { "input": "{}", "output": "0" }, { "input": "{a, a, c, b, b, b, c, c, c, c}", "output": "3" }, { "input": "{a, c, b, b}", "output": "3" }, { "input": "{a, b}", "o...
1,693,416,701
2,147,483,647
PyPy 3-64
OK
TESTS
27
62
0
s = input() if len(s) == 2: print('0') else: letter = s[1:-1].split(", ") distinct = set(letter) print(len(distinct))
Title: Anton and Letters Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently, Anton has found a set. The set consists of small English letters. Anton carefully wrote out all the letters from the set in one line, separated by a comma. He also added an opening curved bracket at the begi...
```python s = input() if len(s) == 2: print('0') else: letter = s[1:-1].split(", ") distinct = set(letter) print(len(distinct)) ```
3
612
B
HDD is Outdated Technology
PROGRAMMING
1,200
[ "implementation", "math" ]
null
null
HDD hard drives group data by sectors. All files are split to fragments and each of them are written in some sector of hard drive. Note the fragments can be written in sectors in arbitrary order. One of the problems of HDD hard drives is the following: the magnetic head should move from one sector to another to read s...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=2·105) — the number of fragments. The second line contains *n* different integers *f**i* (1<=≤<=*f**i*<=≤<=*n*) — the number of the fragment written in the *i*-th sector.
Print the only integer — the number of time units needed to read the file.
[ "3\n3 1 2\n", "5\n1 3 5 4 2\n" ]
[ "3\n", "10\n" ]
In the second example the head moves in the following way: - 1-&gt;2 means movement from the sector 1 to the sector 5, i.e. it takes 4 time units - 2-&gt;3 means movement from the sector 5 to the sector 2, i.e. it takes 3 time units - 3-&gt;4 means movement from the sector 2 to the sector 4, i.e. it takes 2 time un...
0
[ { "input": "3\n3 1 2", "output": "3" }, { "input": "5\n1 3 5 4 2", "output": "10" }, { "input": "1\n1", "output": "0" }, { "input": "1\n1", "output": "0" }, { "input": "1\n1", "output": "0" }, { "input": "10\n8 2 10 3 4 6 1 7 9 5", "output": "40" ...
1,452,116,303
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
11
187
716,800
n = int(input()) fragments = list(map(int, input().split())) def create(dict, src, i, lim): dict[src[i]] = i + 1 return create(dict, src, i + 1, lim) if i + 1 < lim else dict fragmentsDict = create({}, fragments, 0, n) comp = lambda res, i, d, lim: comp(res + abs(d[i] - d[i + 1]), i + 1, d, lim) if i < lim...
Title: HDD is Outdated Technology Time Limit: None seconds Memory Limit: None megabytes Problem Description: HDD hard drives group data by sectors. All files are split to fragments and each of them are written in some sector of hard drive. Note the fragments can be written in sectors in arbitrary order. One of the ...
```python n = int(input()) fragments = list(map(int, input().split())) def create(dict, src, i, lim): dict[src[i]] = i + 1 return create(dict, src, i + 1, lim) if i + 1 < lim else dict fragmentsDict = create({}, fragments, 0, n) comp = lambda res, i, d, lim: comp(res + abs(d[i] - d[i + 1]), i + 1, d, lim) ...
-1
359
A
Table
PROGRAMMING
1,000
[ "constructive algorithms", "greedy", "implementation" ]
null
null
Simon has a rectangular table consisting of *n* rows and *m* columns. Simon numbered the rows of the table from top to bottom starting from one and the columns — from left to right starting from one. We'll represent the cell on the *x*-th row and the *y*-th column as a pair of numbers (*x*,<=*y*). The table corners are...
The first line contains exactly two integers *n*, *m* (3<=≤<=*n*,<=*m*<=≤<=50). Next *n* lines contain the description of the table cells. Specifically, the *i*-th line contains *m* space-separated integers *a**i*1,<=*a**i*2,<=...,<=*a**im*. If *a**ij* equals zero, then cell (*i*,<=*j*) isn't good. Otherwise *a**ij* e...
Print a single number — the minimum number of operations Simon needs to carry out his idea.
[ "3 3\n0 0 0\n0 1 0\n0 0 0\n", "4 3\n0 0 0\n0 0 1\n1 0 0\n0 0 0\n" ]
[ "4\n", "2\n" ]
In the first sample, the sequence of operations can be like this: - For the first time you need to choose cell (2, 2) and corner (1, 1). - For the second time you need to choose cell (2, 2) and corner (3, 3). - For the third time you need to choose cell (2, 2) and corner (3, 1). - For the fourth time you need to c...
500
[ { "input": "3 3\n0 0 0\n0 1 0\n0 0 0", "output": "4" }, { "input": "4 3\n0 0 0\n0 0 1\n1 0 0\n0 0 0", "output": "2" }, { "input": "50 4\n0 0 0 0\n0 0 0 0\n0 0 0 0\n0 0 0 0\n0 0 0 0\n0 0 0 0\n0 0 0 0\n0 0 0 0\n0 0 0 0\n0 0 0 0\n0 1 0 0\n0 0 0 0\n0 0 0 0\n0 0 0 0\n0 0 0 0\n0 0 0 0\n0 0 0 0...
1,616,504,926
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
46
307,200
n ,m =[int(x) for x in input().split()] list = [] for _ in range(n): list.append([int(x) for x in input().split()]) for _ in range(1 , n-1 , 1): if list[_][0] == 1: print(2) exit() for _ in range(1, m-1 , 1): if list[0][_] ==1 or list[-1][_] ==1: print(2) exit() p...
Title: Table Time Limit: None seconds Memory Limit: None megabytes Problem Description: Simon has a rectangular table consisting of *n* rows and *m* columns. Simon numbered the rows of the table from top to bottom starting from one and the columns — from left to right starting from one. We'll represent the cell on t...
```python n ,m =[int(x) for x in input().split()] list = [] for _ in range(n): list.append([int(x) for x in input().split()]) for _ in range(1 , n-1 , 1): if list[_][0] == 1: print(2) exit() for _ in range(1, m-1 , 1): if list[0][_] ==1 or list[-1][_] ==1: print(2) ...
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,684,404,773
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
d=input() if len(d)>10: n=str(len(d)-2) d=d[0]+n+d[len(d)-1] print(d)
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python d=input() if len(d)>10: n=str(len(d)-2) d=d[0]+n+d[len(d)-1] print(d) ```
0
31
C
Schedule
PROGRAMMING
1,700
[ "implementation" ]
C. Schedule
2
256
At the beginning of the new semester there is new schedule in the Berland State University. According to this schedule, *n* groups have lessons at the room 31. For each group the starting time of the lesson and the finishing time of the lesson are known. It has turned out that it is impossible to hold all lessons, beca...
The first line contains integer *n* (1<=≤<=*n*<=≤<=5000) — amount of groups, which have lessons in the room 31. Then *n* lines follow, each of them contains two integers *l**i* *r**i* (1<=≤<=*l**i*<=&lt;<=*r**i*<=≤<=106) — starting and finishing times of lesson of the *i*-th group. It is possible that initially no two ...
Output integer *k* — amount of ways to cancel the lesson in exactly one group so that no two time periods of lessons of the remaining groups intersect. In the second line output *k* numbers — indexes of groups, where it is possible to cancel the lesson. Groups are numbered starting from 1 in the order that they were gi...
[ "3\n3 10\n20 30\n1 3\n", "4\n3 10\n20 30\n1 3\n1 39\n", "3\n1 5\n2 6\n3 7\n" ]
[ "3\n1 2 3 ", "1\n4 ", "0\n" ]
none
1,500
[ { "input": "3\n3 10\n20 30\n1 3", "output": "3\n1 2 3 " }, { "input": "4\n3 10\n20 30\n1 3\n1 39", "output": "1\n4 " }, { "input": "3\n1 5\n2 6\n3 7", "output": "0" }, { "input": "4\n1 5\n5 7\n6 9\n9 10", "output": "2\n2 3 " }, { "input": "11\n717170 795210\n86642...
1,695,779,297
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
2,000
6,758,400
def solution(): def solve(people): n = len(people) people.sort(key=lambda x: x[1]) res = [] tot = 0 for i in range(n): curr, interval = 0, True for j in range(n): if i != j: if people[j][1] >= curr: ...
Title: Schedule Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: At the beginning of the new semester there is new schedule in the Berland State University. According to this schedule, *n* groups have lessons at the room 31. For each group the starting time of the lesson and the finishing time ...
```python def solution(): def solve(people): n = len(people) people.sort(key=lambda x: x[1]) res = [] tot = 0 for i in range(n): curr, interval = 0, True for j in range(n): if i != j: if people[j][1] >= cur...
0
78
C
Beaver Game
PROGRAMMING
2,000
[ "dp", "games", "number theory" ]
C. Beaver Game
1
256
Two beavers, Timur and Marsel, play the following game. There are *n* logs, each of exactly *m* meters in length. The beavers move in turns. For each move a beaver chooses a log and gnaws it into some number (more than one) of equal parts, the length of each one is expressed by an integer and is no less than *k* meter...
The first line contains three integers *n*, *m*, *k* (1<=≤<=*n*,<=*m*,<=*k*<=≤<=109).
Print "Timur", if Timur wins, or "Marsel", if Marsel wins. You should print everything without the quotes.
[ "1 15 4\n", "4 9 5\n" ]
[ "Timur", "Marsel" ]
In the first sample the beavers only have one log, of 15 meters in length. Timur moves first. The only move he can do is to split the log into 3 parts each 5 meters in length. Then Marsel moves but he can't split any of the resulting logs, as *k* = 4. Thus, the winner is Timur. In the second example the beavers have 4...
1,500
[ { "input": "1 15 4", "output": "Timur" }, { "input": "4 9 5", "output": "Marsel" }, { "input": "14 30 9", "output": "Marsel" }, { "input": "81 180 53", "output": "Timur" }, { "input": "225 187 20", "output": "Marsel" }, { "input": "501 840 11", "ou...
1,500,128,648
1,748
Python 3
WRONG_ANSWER
TESTS
4
46
4,608,000
from sys import stdin, stdout def check(m, k): for i in range(1, int(m ** 0.5) + 1): if not m % i and (i >= k or m // i >= k): return 1 else: return 0 n, m, k = map(int, stdin.readline().split()) if m < 2 * k or not check(m, k): stdout.write('Marsel') elif n %...
Title: Beaver Game Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Two beavers, Timur and Marsel, play the following game. There are *n* logs, each of exactly *m* meters in length. The beavers move in turns. For each move a beaver chooses a log and gnaws it into some number (more than one) of...
```python from sys import stdin, stdout def check(m, k): for i in range(1, int(m ** 0.5) + 1): if not m % i and (i >= k or m // i >= k): return 1 else: return 0 n, m, k = map(int, stdin.readline().split()) if m < 2 * k or not check(m, k): stdout.write('Marsel')...
0
628
B
New Skateboard
PROGRAMMING
1,300
[ "dp" ]
null
null
Max wants to buy a new skateboard. He has calculated the amount of money that is needed to buy a new skateboard. He left a calculator on the floor and went to ask some money from his parents. Meanwhile his little brother Yusuf came and started to press the keys randomly. Unfortunately Max has forgotten the number which...
The only line contains string *s* (1<=≤<=|*s*|<=≤<=3·105). The string *s* contains only digits from 0 to 9.
Print integer *a* — the number of substrings of the string *s* that are divisible by 4. Note that the answer can be huge, so you should use 64-bit integer type to store it. In C++ you can use the long long integer type and in Java you can use long integer type.
[ "124\n", "04\n", "5810438174\n" ]
[ "4\n", "3\n", "9\n" ]
none
0
[ { "input": "124", "output": "4" }, { "input": "04", "output": "3" }, { "input": "5810438174", "output": "9" }, { "input": "1", "output": "0" }, { "input": "039", "output": "1" }, { "input": "97247", "output": "6" }, { "input": "5810438174",...
1,493,109,687
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
4,608,000
num = input() i = 0 counter = 0 max = len(num) for l in range(max): while (i + l) < max: print("i+l =",i+l) if int(num[i:i+l+1]) % 4 == 0: counter += 1 i += 1 print(counter)
Title: New Skateboard Time Limit: None seconds Memory Limit: None megabytes Problem Description: Max wants to buy a new skateboard. He has calculated the amount of money that is needed to buy a new skateboard. He left a calculator on the floor and went to ask some money from his parents. Meanwhile his little brother...
```python num = input() i = 0 counter = 0 max = len(num) for l in range(max): while (i + l) < max: print("i+l =",i+l) if int(num[i:i+l+1]) % 4 == 0: counter += 1 i += 1 print(counter) ```
0
46
B
T-shirts from Sponsor
PROGRAMMING
1,100
[ "implementation" ]
B. T-shirts from Sponsor
2
256
One day a well-known sponsor of a well-known contest decided to give every participant of the contest a T-shirt as a present. A natural problem occurred: on the one hand, it is not clear how many T-shirts of what sizes should be ordered, and on the other hand, one doesn't want to order too many T-shirts (and we do not ...
The first line contains five non-negative integers *N**S*,<=*N**M*,<=*N**L*,<=*N**XL*,<=*N**XXL* not exceeding 1000 which represent the number of T-shirts of the corresponding sizes. The second line contains an integer *K* (1<=≤<=*K*<=≤<=1000) which represents the number of participants. The next *K* lines contain the ...
For each contestant, print a line containing the size of the T-shirt he/she got.
[ "1 0 2 0 1\n3\nXL\nXXL\nM\n" ]
[ "XXL\nL\nL\n" ]
none
0
[ { "input": "1 0 2 0 1\n3\nXL\nXXL\nM", "output": "XXL\nL\nL" }, { "input": "0 0 0 0 1\n1\nS", "output": "XXL" }, { "input": "1 0 1 0 1\n1\nS", "output": "S" }, { "input": "1 0 0 0 1\n2\nS\nL", "output": "S\nXXL" }, { "input": "1 1 1 1 1\n2\nXL\nM", "output": "...
1,642,828,483
2,147,483,647
PyPy 3-64
OK
TESTS
30
310
6,553,600
import math,sys;input=sys.stdin.readline;S=lambda:input().rstrip();I=lambda:int(S());M=lambda:map(int,S().split());L=lambda:list(M());mod1=1000000007;mod2=998244353 from collections import defaultdict d = defaultdict() d["S"],d["M"],d["L"],d["XL"],d["XXL"] = M() valst = defaultdict() valst[0],valst[1],valst[2],val...
Title: T-shirts from Sponsor Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day a well-known sponsor of a well-known contest decided to give every participant of the contest a T-shirt as a present. A natural problem occurred: on the one hand, it is not clear how many T-shirts of what size...
```python import math,sys;input=sys.stdin.readline;S=lambda:input().rstrip();I=lambda:int(S());M=lambda:map(int,S().split());L=lambda:list(M());mod1=1000000007;mod2=998244353 from collections import defaultdict d = defaultdict() d["S"],d["M"],d["L"],d["XL"],d["XXL"] = M() valst = defaultdict() valst[0],valst[1],va...
3.910293
429
B
Working out
PROGRAMMING
1,600
[ "dp" ]
null
null
Summer is coming! It's time for Iahub and Iahubina to work out, as they both want to look hot at the beach. The gym where they go is a matrix *a* with *n* lines and *m* columns. Let number *a*[*i*][*j*] represents the calories burned by performing workout at the cell of gym in the *i*-th line and the *j*-th column. Ia...
The first line of the input contains two integers *n* and *m* (3<=≤<=*n*,<=*m*<=≤<=1000). Each of the next *n* lines contains *m* integers: *j*-th number from *i*-th line denotes element *a*[*i*][*j*] (0<=≤<=*a*[*i*][*j*]<=≤<=105).
The output contains a single number — the maximum total gain possible.
[ "3 3\n100 100 100\n100 1 100\n100 100 100\n" ]
[ "800" ]
Iahub will choose exercises *a*[1][1] → *a*[1][2] → *a*[2][2] → *a*[3][2] → *a*[3][3]. Iahubina will choose exercises *a*[3][1] → *a*[2][1] → *a*[2][2] → *a*[2][3] → *a*[1][3].
1,000
[ { "input": "3 3\n100 100 100\n100 1 100\n100 100 100", "output": "800" }, { "input": "4 5\n87882 40786 3691 85313 46694\n28884 16067 3242 97367 78518\n4250 35501 9780 14435 19004\n64673 65438 56977 64495 27280", "output": "747898" }, { "input": "3 3\n3 1 2\n3 2 0\n2 3 2", "output": "...
1,628,536,035
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
92
22,425,600
import sys input = sys.stdin.buffer.readline def process(A): n = len(A) m = len(A[0]) d = {} for i in range(n): for j in range(m): d[(i, j)] = [0, 0, 0, 0] if i > 0: above = d[(i-1, j)][0] else: above = 0 ...
Title: Working out Time Limit: None seconds Memory Limit: None megabytes Problem Description: Summer is coming! It's time for Iahub and Iahubina to work out, as they both want to look hot at the beach. The gym where they go is a matrix *a* with *n* lines and *m* columns. Let number *a*[*i*][*j*] represents the calor...
```python import sys input = sys.stdin.buffer.readline def process(A): n = len(A) m = len(A[0]) d = {} for i in range(n): for j in range(m): d[(i, j)] = [0, 0, 0, 0] if i > 0: above = d[(i-1, j)][0] else: above = ...
-1
56
A
Bar
PROGRAMMING
1,000
[ "implementation" ]
A. Bar
2
256
According to Berland laws it is only allowed to sell alcohol to people not younger than 18 years. Vasya's job is to monitor the law's enforcement. Tonight he entered a bar and saw *n* people sitting there. For every one of them Vasya happened to determine either the age or the drink the person is having. Vasya can chec...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) which is the number of the bar's clients. Then follow *n* lines, each describing one visitor. A line either contains his age (an integer from 0 to 1000) or his drink (a string of capital Latin letters from 1 to 100 in length). It is guaranteed that the input da...
Print a single number which is the number of people Vasya should check to guarantee the law enforcement.
[ "5\n18\nVODKA\nCOKE\n19\n17\n" ]
[ "2\n" ]
In the sample test the second and fifth clients should be checked.
500
[ { "input": "5\n18\nVODKA\nCOKE\n19\n17", "output": "2" }, { "input": "2\n2\nGIN", "output": "2" }, { "input": "3\nWHISKEY\n3\nGIN", "output": "3" }, { "input": "4\n813\nIORBQITQXMPTFAEMEQDQIKFGKGOTNKTOSZCBRPXJLUKVLVHJYNRUJXK\nRUM\nRHVRWGODYWWTYZFLFYKCVUFFRTQDINKNWPKFHZBFWBHWI...
1,632,686,860
2,147,483,647
Python 3
OK
TESTS
28
124
6,963,200
n = int(input()) count = 0 a=['ABSINTH', 'BEER', 'BRANDY', 'CHAMPAGNE', 'GIN', 'RUM', 'SAKE', 'TEQUILA', 'VODKA', 'WHISKEY', 'WINE'] for i in range(n): s = input() if s[0]>='0' and s[0]<='9' and int(s)<18 or s in a: count += 1 print(count)
Title: Bar Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: According to Berland laws it is only allowed to sell alcohol to people not younger than 18 years. Vasya's job is to monitor the law's enforcement. Tonight he entered a bar and saw *n* people sitting there. For every one of them Vasya h...
```python n = int(input()) count = 0 a=['ABSINTH', 'BEER', 'BRANDY', 'CHAMPAGNE', 'GIN', 'RUM', 'SAKE', 'TEQUILA', 'VODKA', 'WHISKEY', 'WINE'] for i in range(n): s = input() if s[0]>='0' and s[0]<='9' and int(s)<18 or s in a: count += 1 print(count) ```
3.95603
186
B
Growing Mushrooms
PROGRAMMING
1,200
[ "greedy", "sortings" ]
null
null
Each year in the castle of Dwarven King there is a competition in growing mushrooms among the dwarves. The competition is one of the most prestigious ones, and the winner gets a wooden salad bowl. This year's event brought together the best mushroom growers from around the world, so we had to slightly change the rules ...
The first input line contains four integer numbers *n*, *t*1, *t*2, *k* (1<=≤<=*n*,<=*t*1,<=*t*2<=≤<=1000; 1<=≤<=*k*<=≤<=100) — the number of participants, the time before the break, the time after the break and the percentage, by which the mushroom growth drops during the break, correspondingly. Each of the following...
Print the final results' table: *n* lines, each line should contain the number of the corresponding dwarf and the final maximum height of his mushroom with exactly two digits after the decimal point. The answer will be considered correct if it is absolutely accurate.
[ "2 3 3 50\n2 4\n4 2\n", "4 1 1 1\n544 397\n280 101\n280 101\n693 970\n" ]
[ "1 15.00\n2 15.00\n", "4 1656.07\n1 937.03\n2 379.99\n3 379.99\n" ]
- First example: for each contestant it is optimal to use firstly speed 2 and afterwards speed 4, because 2·3·0.5 + 4·3 &gt; 4·3·0.5 + 2·3.
1,000
[ { "input": "2 3 3 50\n2 4\n4 2", "output": "1 15.00\n2 15.00" }, { "input": "4 1 1 1\n544 397\n280 101\n280 101\n693 970", "output": "4 1656.07\n1 937.03\n2 379.99\n3 379.99" }, { "input": "10 1 1 25\n981 1\n352 276\n164 691\n203 853\n599 97\n901 688\n934 579\n910 959\n317 624\n440 737",...
1,626,465,856
2,147,483,647
PyPy 3
OK
TESTS
36
278
22,835,200
def main(): n, t1, t2, k = [int(i) for i in input().split()] v = [] for i in range(n): a, b = [int(i) for i in input().split()] v.append([a, b]) res = [] for i in range(n): a, b = v[i] h1 = a * t1 * (1 - k / 100) + b * t2 h2 = b * t1 * (1 - k...
Title: Growing Mushrooms Time Limit: None seconds Memory Limit: None megabytes Problem Description: Each year in the castle of Dwarven King there is a competition in growing mushrooms among the dwarves. The competition is one of the most prestigious ones, and the winner gets a wooden salad bowl. This year's event br...
```python def main(): n, t1, t2, k = [int(i) for i in input().split()] v = [] for i in range(n): a, b = [int(i) for i in input().split()] v.append([a, b]) res = [] for i in range(n): a, b = v[i] h1 = a * t1 * (1 - k / 100) + b * t2 h2 = b * t...
3
299
B
Ksusha the Squirrel
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
Ksusha the Squirrel is standing at the beginning of a straight road, divided into *n* sectors. The sectors are numbered 1 to *n*, from left to right. Initially, Ksusha stands in sector 1. Ksusha wants to walk to the end of the road, that is, get to sector *n*. Unfortunately, there are some rocks on the road. We know ...
The first line contains two integers *n* and *k* (2<=≤<=*n*<=≤<=3·105,<=1<=≤<=*k*<=≤<=3·105). The next line contains *n* characters — the description of the road: the *i*-th character equals ".", if the *i*-th sector contains no rocks. Otherwise, it equals "#". It is guaranteed that the first and the last characters e...
Print "YES" (without the quotes) if Ksusha can reach the end of the road, otherwise print "NO" (without the quotes).
[ "2 1\n..\n", "5 2\n.#.#.\n", "7 3\n.#.###.\n" ]
[ "YES\n", "YES\n", "NO\n" ]
none
1,000
[ { "input": "2 1\n..", "output": "YES" }, { "input": "5 2\n.#.#.", "output": "YES" }, { "input": "7 3\n.#.###.", "output": "NO" }, { "input": "2 200\n..", "output": "YES" }, { "input": "2 1\n..", "output": "YES" }, { "input": "2 2\n..", "output": "Y...
1,692,890,483
2,147,483,647
PyPy 3-64
OK
TESTS
33
216
16,384,000
n, k = map(int, input().split()) w = input() r = max(len(y) for y in w.split(".")) print(["NO","YES"][r < k])
Title: Ksusha the Squirrel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ksusha the Squirrel is standing at the beginning of a straight road, divided into *n* sectors. The sectors are numbered 1 to *n*, from left to right. Initially, Ksusha stands in sector 1. Ksusha wants to walk to t...
```python n, k = map(int, input().split()) w = input() r = max(len(y) for y in w.split(".")) print(["NO","YES"][r < k]) ```
3
102
B
Sum of Digits
PROGRAMMING
1,000
[ "implementation" ]
B. Sum of Digits
2
265
Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came across a number *n*. How many times can Gerald put a spell on it until the number becomes one-...
The first line contains the only integer *n* (0<=≤<=*n*<=≤<=10100000). It is guaranteed that *n* doesn't contain any leading zeroes.
Print the number of times a number can be replaced by the sum of its digits until it only contains one digit.
[ "0\n", "10\n", "991\n" ]
[ "0\n", "1\n", "3\n" ]
In the first sample the number already is one-digit — Herald can't cast a spell. The second test contains number 10. After one casting of a spell it becomes 1, and here the process is completed. Thus, Gerald can only cast the spell once. The third test contains number 991. As one casts a spell the following transform...
1,000
[ { "input": "0", "output": "0" }, { "input": "10", "output": "1" }, { "input": "991", "output": "3" }, { "input": "99", "output": "2" }, { "input": "100", "output": "1" }, { "input": "123456789", "output": "2" }, { "input": "32", "output...
1,596,011,032
2,147,483,647
PyPy 3
OK
TESTS
51
280
22,118,400
s=input() su=0 j=0 while(len(s)>1): su=0 for i in s: su+=int(i) s='' for i in str(su): s+=str(i) j+=1 print(j)
Title: Sum of Digits Time Limit: 2 seconds Memory Limit: 265 megabytes Problem Description: Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came...
```python s=input() su=0 j=0 while(len(s)>1): su=0 for i in s: su+=int(i) s='' for i in str(su): s+=str(i) j+=1 print(j) ```
3.8902
441
C
Valera and Tubes
PROGRAMMING
1,500
[ "constructive algorithms", "dfs and similar", "implementation" ]
null
null
Valera has got a rectangle table consisting of *n* rows and *m* columns. Valera numbered the table rows starting from one, from top to bottom and the columns – starting from one, from left to right. We will represent cell that is on the intersection of row *x* and column *y* by a pair of integers (*x*,<=*y*). Valera w...
The first line contains three space-separated integers *n*,<=*m*,<=*k* (2<=≤<=*n*,<=*m*<=≤<=300; 2<=≤<=2*k*<=≤<=*n*·*m*) — the number of rows, the number of columns and the number of tubes, correspondingly.
Print *k* lines. In the *i*-th line print the description of the *i*-th tube: first print integer *r**i* (the number of tube cells), then print 2*r**i* integers *x**i*1,<=*y**i*1,<=*x**i*2,<=*y**i*2,<=...,<=*x**ir**i*,<=*y**ir**i* (the sequence of table cells). If there are multiple solutions, you can print any of the...
[ "3 3 3\n", "2 3 1\n" ]
[ "3 1 1 1 2 1 3\n3 2 1 2 2 2 3\n3 3 1 3 2 3 3\n", "6 1 1 1 2 1 3 2 3 2 2 2 1\n" ]
Picture for the first sample: Picture for the second sample:
1,500
[ { "input": "3 3 3", "output": "3 1 1 1 2 1 3\n3 2 1 2 2 2 3\n3 3 1 3 2 3 3" }, { "input": "2 3 1", "output": "6 1 1 1 2 1 3 2 3 2 2 2 1" }, { "input": "2 3 1", "output": "6 1 1 1 2 1 3 2 3 2 2 2 1" }, { "input": "300 300 2", "output": "2 1 1 1 2\n89998 1 3 1 4 1 5 1 6 1 7...
1,525,078,078
2,147,483,647
Python 3
OK
TESTS
44
607
16,486,400
def print_tube(a): print(len(a),end = " ") print(" ".join(map(lambda x: " ".join(str(i) for i in x), a))) n, m, k = map(int, input().split()) res = [(x+1,y+1) for x in range(n) for y in range(m)[::(1 if (x%2 == 0) else -1)]] for i in range(k-1): print_tube(res[2*i:2*i+2]) print_tube(res[2*k-2:])
Title: Valera and Tubes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera has got a rectangle table consisting of *n* rows and *m* columns. Valera numbered the table rows starting from one, from top to bottom and the columns – starting from one, from left to right. We will represent ...
```python def print_tube(a): print(len(a),end = " ") print(" ".join(map(lambda x: " ".join(str(i) for i in x), a))) n, m, k = map(int, input().split()) res = [(x+1,y+1) for x in range(n) for y in range(m)[::(1 if (x%2 == 0) else -1)]] for i in range(k-1): print_tube(res[2*i:2*i+2]) print_tube(res[2*k-2:]) ```
3
420
A
Start Up
PROGRAMMING
1,000
[ "implementation" ]
null
null
Recently, a start up by two students of a state university of city F gained incredible popularity. Now it's time to start a new company. But what do we call it? The market analysts came up with a very smart plan: the name of the company should be identical to its reflection in a mirror! In other words, if we write out...
The first line contains a non-empty name that needs to be checked. The name contains at most 105 large English letters. The name will be written with the next sans serif font:
Print 'YES' (without the quotes), if the given name matches its mirror reflection. Otherwise, print 'NO' (without the quotes).
[ "AHA\n", "Z\n", "XO\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "AHA", "output": "YES" }, { "input": "Z", "output": "NO" }, { "input": "XO", "output": "NO" }, { "input": "AAA", "output": "YES" }, { "input": "AHHA", "output": "YES" }, { "input": "BAB", "output": "NO" }, { "input": "OMMMAAMMMO"...
1,585,589,662
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
93
204,800
x = input() l =[] l[:0] = x i = 0 for _ in range(i, len(l)): if l[i] == "A" or "H" or "I" or "M" or "O" or "T" or "U" or "V" or "W" or "X" or "Y": a = True else: a = False if l == l[:: -1]: b = True else: b = False if a == True and b == True: print("yes") else: ...
Title: Start Up Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently, a start up by two students of a state university of city F gained incredible popularity. Now it's time to start a new company. But what do we call it? The market analysts came up with a very smart plan: the name of ...
```python x = input() l =[] l[:0] = x i = 0 for _ in range(i, len(l)): if l[i] == "A" or "H" or "I" or "M" or "O" or "T" or "U" or "V" or "W" or "X" or "Y": a = True else: a = False if l == l[:: -1]: b = True else: b = False if a == True and b == True: print("yes") e...
0
680
A
Bear and Five Cards
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
A little bear Limak plays a game. He has five cards. There is one number written on each card. Each number is a positive integer. Limak can discard (throw out) some cards. His goal is to minimize the sum of numbers written on remaining (not discarded) cards. He is allowed to at most once discard two or three cards wi...
The only line of the input contains five integers *t*1, *t*2, *t*3, *t*4 and *t*5 (1<=≤<=*t**i*<=≤<=100) — numbers written on cards.
Print the minimum possible sum of numbers written on remaining cards.
[ "7 3 7 3 20\n", "7 9 3 1 8\n", "10 10 10 10 10\n" ]
[ "26\n", "28\n", "20\n" ]
In the first sample, Limak has cards with numbers 7, 3, 7, 3 and 20. Limak can do one of the following. - Do nothing and the sum would be 7 + 3 + 7 + 3 + 20 = 40. - Remove two cards with a number 7. The remaining sum would be 3 + 3 + 20 = 26. - Remove two cards with a number 3. The remaining sum would be 7 + 7 + 20...
500
[ { "input": "7 3 7 3 20", "output": "26" }, { "input": "7 9 3 1 8", "output": "28" }, { "input": "10 10 10 10 10", "output": "20" }, { "input": "8 7 1 8 7", "output": "15" }, { "input": "7 7 7 8 8", "output": "16" }, { "input": "8 8 8 2 2", "output"...
1,657,839,840
2,147,483,647
Python 3
OK
TESTS
48
46
0
list1 = list(map(int,input().split())) n =0 for i in set(list1): if (list1.count(i)>1): n = max(n,i*min(3,list1.count(i))) print(sum(list1)-n)
Title: Bear and Five Cards Time Limit: None seconds Memory Limit: None megabytes Problem Description: A little bear Limak plays a game. He has five cards. There is one number written on each card. Each number is a positive integer. Limak can discard (throw out) some cards. His goal is to minimize the sum of numbers...
```python list1 = list(map(int,input().split())) n =0 for i in set(list1): if (list1.count(i)>1): n = max(n,i*min(3,list1.count(i))) print(sum(list1)-n) ```
3
330
A
Cakeminator
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
You are given a rectangular cake, represented as an *r*<=×<=*c* grid. Each cell either has an evil strawberry, or is empty. For example, a 3<=×<=4 cake may look as follows: The cakeminator is going to eat the cake! Each time he eats, he chooses a row or a column that does not contain any evil strawberries and contains...
The first line contains two integers *r* and *c* (2<=≤<=*r*,<=*c*<=≤<=10), denoting the number of rows and the number of columns of the cake. The next *r* lines each contains *c* characters — the *j*-th character of the *i*-th line denotes the content of the cell at row *i* and column *j*, and is either one of these: ...
Output the maximum number of cake cells that the cakeminator can eat.
[ "3 4\nS...\n....\n..S.\n" ]
[ "8\n" ]
For the first example, one possible way to eat the maximum number of cake cells is as follows (perform 3 eats).
500
[ { "input": "3 4\nS...\n....\n..S.", "output": "8" }, { "input": "2 2\n..\n..", "output": "4" }, { "input": "2 2\nSS\nSS", "output": "0" }, { "input": "7 3\nS..\nS..\nS..\nS..\nS..\nS..\nS..", "output": "14" }, { "input": "3 5\n..S..\nSSSSS\n..S..", "output": "...
1,632,426,971
2,147,483,647
PyPy 3
OK
TESTS
42
186
20,172,800
a,b=input().split() c=[] a = int(a) b=int(b) count=0 for i in range(0,a): d=[x for x in input()] c.append(d) for i in range(0,a): for j in range(0,b): if(c[i][j]=='S'): break else: for j in range(0,b): c[i][j]=0 count+=b ...
Title: Cakeminator Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a rectangular cake, represented as an *r*<=×<=*c* grid. Each cell either has an evil strawberry, or is empty. For example, a 3<=×<=4 cake may look as follows: The cakeminator is going to eat the cake! Each ti...
```python a,b=input().split() c=[] a = int(a) b=int(b) count=0 for i in range(0,a): d=[x for x in input()] c.append(d) for i in range(0,a): for j in range(0,b): if(c[i][j]=='S'): break else: for j in range(0,b): c[i][j]=0 count+=b ...
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,679,824,475
2,147,483,647
Python 3
OK
TESTS
28
46
0
n,m = map(int,input().split()) count = 0 arr = [] for i in range(n): if i%2==0: s = "#"*m arr.append(s) if i%2!=0: dot = "."*(m-1) if count%2==0: s = dot+"#" else: s = "#"+dot count+=1 arr.append(s) for i in arr: ...
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 n,m = map(int,input().split()) count = 0 arr = [] for i in range(n): if i%2==0: s = "#"*m arr.append(s) if i%2!=0: dot = "."*(m-1) if count%2==0: s = dot+"#" else: s = "#"+dot count+=1 arr.append(s) for i ...
3
803
A
Maximal Binary Matrix
PROGRAMMING
1,400
[ "constructive algorithms" ]
null
null
You are given matrix with *n* rows and *n* columns filled with zeroes. You should put *k* ones in it in such a way that the resulting matrix is symmetrical with respect to the main diagonal (the diagonal that goes from the top left to the bottom right corner) and is lexicographically maximal. One matrix is lexicograph...
The first line consists of two numbers *n* and *k* (1<=≤<=*n*<=≤<=100, 0<=≤<=*k*<=≤<=106).
If the answer exists then output resulting matrix. Otherwise output -1.
[ "2 1\n", "3 2\n", "2 5\n" ]
[ "1 0 \n0 0 \n", "1 0 0 \n0 1 0 \n0 0 0 \n", "-1\n" ]
none
0
[ { "input": "2 1", "output": "1 0 \n0 0 " }, { "input": "3 2", "output": "1 0 0 \n0 1 0 \n0 0 0 " }, { "input": "2 5", "output": "-1" }, { "input": "1 0", "output": "0 " }, { "input": "1 1", "output": "1 " }, { "input": "20 398", "output": "1 1 1 1 ...
1,698,331,105
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
# -*- coding: utf-8 -*- """ Created on Thu Oct 26 21:37:12 2023 @author: HXY """ n,k=map(int,input().split()) matrix=[[0]*n for _ in range(n)] if k>n*n: print(-1) for i in range(1,n+1,-1): if k<2i: if k%2==0: matrix[1][1]=1 for x in range(k/2-1): m...
Title: Maximal Binary Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given matrix with *n* rows and *n* columns filled with zeroes. You should put *k* ones in it in such a way that the resulting matrix is symmetrical with respect to the main diagonal (the diagonal that goes...
```python # -*- coding: utf-8 -*- """ Created on Thu Oct 26 21:37:12 2023 @author: HXY """ n,k=map(int,input().split()) matrix=[[0]*n for _ in range(n)] if k>n*n: print(-1) for i in range(1,n+1,-1): if k<2i: if k%2==0: matrix[1][1]=1 for x in range(k/2-1): ...
-1
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,694,581,604
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
154
2,867,200
y = int(input()) w = int(input()) m = max(y,w) d = [1,2,3,4,5,6] prob = 6-m+1 if prob%2==0 and prob%3==0: print('1/1') elif prob%2 == 0: print(f'{prob//2}/3') elif prob%3 == 0: print('1/2') else: print('1/6')
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 y = int(input()) w = int(input()) m = max(y,w) d = [1,2,3,4,5,6] prob = 6-m+1 if prob%2==0 and prob%3==0: print('1/1') elif prob%2 == 0: print(f'{prob//2}/3') elif prob%3 == 0: print('1/2') else: print('1/6') ```
-1
306
A
Candies
PROGRAMMING
800
[ "implementation" ]
null
null
Polycarpus has got *n* candies and *m* friends (*n*<=≥<=*m*). He wants to make a New Year present with candies to each friend. Polycarpus is planning to present all candies and he wants to do this in the fairest (that is, most equal) manner. He wants to choose such *a**i*, where *a**i* is the number of candies in the *...
The single line of the input contains a pair of space-separated positive integers *n*, *m* (1<=≤<=*n*,<=*m*<=≤<=100;*n*<=≥<=*m*) — the number of candies and the number of Polycarpus's friends.
Print the required sequence *a*1,<=*a*2,<=...,<=*a**m*, where *a**i* is the number of candies in the *i*-th friend's present. All numbers *a**i* must be positive integers, total up to *n*, the maximum one should differ from the minimum one by the smallest possible value.
[ "12 3\n", "15 4\n", "18 7\n" ]
[ "4 4 4 ", "3 4 4 4 ", "2 2 2 3 3 3 3 " ]
Print *a*<sub class="lower-index">*i*</sub> in any order, separate the numbers by spaces.
500
[ { "input": "12 4", "output": "3 3 3 3 " }, { "input": "15 6", "output": "2 2 2 3 3 3 " }, { "input": "18 8", "output": "2 2 2 2 2 2 3 3 " }, { "input": "1 1", "output": "1 " }, { "input": "2 1", "output": "2 " }, { "input": "100 1", "output": "100 ...
1,628,574,107
2,147,483,647
Python 3
OK
TESTS
20
124
6,758,400
candies, friends = input().split(' ') candies = int(candies) friends = int(friends) output = '' for i in range(friends - candies % friends): output += str(candies // friends) + ' ' for i in range(candies % friends): output += str(candies // friends + 1) + ' ' print(output[0: len(output)-1])
Title: Candies Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus has got *n* candies and *m* friends (*n*<=≥<=*m*). He wants to make a New Year present with candies to each friend. Polycarpus is planning to present all candies and he wants to do this in the fairest (that is, most ...
```python candies, friends = input().split(' ') candies = int(candies) friends = int(friends) output = '' for i in range(friends - candies % friends): output += str(candies // friends) + ' ' for i in range(candies % friends): output += str(candies // friends + 1) + ' ' print(output[0: len(output...
3
169
A
Chores
PROGRAMMING
800
[ "sortings" ]
null
null
Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do *n* chores. Each chore is characterized by a single parameter — its complexity. The complexity of the *i*-th chore equals *h**i*. As Petya is older, he wants to take the chores with complexit...
The first input line contains three integers *n*,<=*a* and *b* (2<=≤<=*n*<=≤<=2000; *a*,<=*b*<=≥<=1; *a*<=+<=*b*<==<=*n*) — the total number of chores, the number of Petya's chores and the number of Vasya's chores. The next line contains a sequence of integers *h*1,<=*h*2,<=...,<=*h**n* (1<=≤<=*h**i*<=≤<=109), *h**i* ...
Print the required number of ways to choose an integer value of *x*. If there are no such ways, print 0.
[ "5 2 3\n6 2 3 100 1\n", "7 3 4\n1 1 9 1 1 1 1\n" ]
[ "3\n", "0\n" ]
In the first sample the possible values of *x* are 3, 4 or 5. In the second sample it is impossible to find such *x*, that Petya got 3 chores and Vasya got 4.
500
[ { "input": "5 2 3\n6 2 3 100 1", "output": "3" }, { "input": "7 3 4\n1 1 9 1 1 1 1", "output": "0" }, { "input": "2 1 1\n10 2", "output": "8" }, { "input": "2 1 1\n7 7", "output": "0" }, { "input": "2 1 1\n1 1000000000", "output": "999999999" }, { "inp...
1,590,526,311
2,147,483,647
Python 3
OK
TESTS
29
685
307,200
#Antonio Hernandez Monsalvo miLista = [] enter = input().split() n = int(enter[0]) a = int(enter[1]) b = int(enter[2]) 2<=n<=2000 def bubbleSort(tareas): for long in range (len(tareas) -1, 0, -1): for i in range (0, long): if tareas[i] > tareas[i + 1]: #Cambio temp = tareas[i] tareas[i] = ta...
Title: Chores Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do *n* chores. Each chore is characterized by a single parameter — its complexity. The complexity of th...
```python #Antonio Hernandez Monsalvo miLista = [] enter = input().split() n = int(enter[0]) a = int(enter[1]) b = int(enter[2]) 2<=n<=2000 def bubbleSort(tareas): for long in range (len(tareas) -1, 0, -1): for i in range (0, long): if tareas[i] > tareas[i + 1]: #Cambio temp = tareas[i] tare...
3
394
A
Counting Sticks
PROGRAMMING
0
[ "brute force", "implementation" ]
null
null
When new students come to the Specialized Educational and Scientific Centre (SESC) they need to start many things from the beginning. Sometimes the teachers say (not always unfairly) that we cannot even count. So our teachers decided to teach us arithmetics from the start. And what is the best way to teach students add...
The single line contains the initial expression. It is guaranteed that the expression looks like *A*<=+<=*B*<==<=*C*, where 1<=≤<=*A*,<=*B*,<=*C*<=≤<=100.
If there isn't a way to shift the stick so the expression becomes correct, print on a single line "Impossible" (without the quotes). If there is a way, print the resulting expression. Follow the format of the output from the test samples. Don't print extra space characters. If there are multiple correct answers, print...
[ "||+|=|||||\n", "|||||+||=||\n", "|+|=||||||\n", "||||+||=||||||\n" ]
[ "|||+|=||||\n", "Impossible\n", "Impossible\n", "||||+||=||||||\n" ]
In the first sample we can shift stick from the third group of sticks to the first one. In the second sample we cannot shift vertical stick from + sign to the second group of sticks. So we cannot make a - sign. There is no answer in the third sample because we cannot remove sticks from the expression. In the forth s...
500
[ { "input": "||+|=|||||", "output": "|||+|=||||" }, { "input": "|||||+||=||", "output": "Impossible" }, { "input": "|+|=||||||", "output": "Impossible" }, { "input": "||||+||=||||||", "output": "||||+||=||||||" }, { "input": "||||||||||||+|||||||||||=||||||||||||||...
1,586,259,056
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
21
140
819,200
import re def count(x): return x.count("|") text = input() x=(re.split('\+|\=',text)) lst=list(map(count,x)) if x[0]+x[1]==x[2]: print(x[0]+"+"+x[1]+"="+x[2]) elif (lst[0]-1)+(lst[1]+1)==lst[2]: print("|"*(lst[0]-1)+"+"+"|"*(lst[1]+1)+"="+"|"*lst[2]) elif (lst[0]+1)+(lst[1]-1)==lst[2]: print("|"*(lst[0]+...
Title: Counting Sticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: When new students come to the Specialized Educational and Scientific Centre (SESC) they need to start many things from the beginning. Sometimes the teachers say (not always unfairly) that we cannot even count. So our te...
```python import re def count(x): return x.count("|") text = input() x=(re.split('\+|\=',text)) lst=list(map(count,x)) if x[0]+x[1]==x[2]: print(x[0]+"+"+x[1]+"="+x[2]) elif (lst[0]-1)+(lst[1]+1)==lst[2]: print("|"*(lst[0]-1)+"+"+"|"*(lst[1]+1)+"="+"|"*lst[2]) elif (lst[0]+1)+(lst[1]-1)==lst[2]: print("|...
0
535
B
Tavas and SaDDas
PROGRAMMING
1,100
[ "bitmasks", "brute force", "combinatorics", "implementation" ]
null
null
Once again Tavas started eating coffee mix without water! Keione told him that it smells awful, but he didn't stop doing that. That's why Keione told his smart friend, SaDDas to punish him! SaDDas took Tavas' headphones and told him: "If you solve the following problem, I'll return it to you." The problem is: You ar...
The first and only line of input contains a lucky number *n* (1<=≤<=*n*<=≤<=109).
Print the index of *n* among all lucky numbers.
[ "4\n", "7\n", "77\n" ]
[ "1\n", "2\n", "6\n" ]
none
1,000
[ { "input": "4", "output": "1" }, { "input": "7", "output": "2" }, { "input": "77", "output": "6" }, { "input": "4", "output": "1" }, { "input": "474744", "output": "83" }, { "input": "777774", "output": "125" }, { "input": "447", "outpu...
1,609,182,675
2,147,483,647
Python 3
OK
TESTS
33
109
0
import sys n = str( sys.stdin.readline( ).strip() ) p = 0 for i, c in enumerate(n): i += 1 if c == '4': p = (2*p) + 1 else: p = (2*p) + 2 print(p)
Title: Tavas and SaDDas Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once again Tavas started eating coffee mix without water! Keione told him that it smells awful, but he didn't stop doing that. That's why Keione told his smart friend, SaDDas to punish him! SaDDas took Tavas' headphone...
```python import sys n = str( sys.stdin.readline( ).strip() ) p = 0 for i, c in enumerate(n): i += 1 if c == '4': p = (2*p) + 1 else: p = (2*p) + 2 print(p) ```
3
262
A
Roma and Lucky Numbers
PROGRAMMING
800
[ "implementation" ]
null
null
Roma (a popular Russian name that means 'Roman') loves the Little Lvov Elephant's lucky numbers. Let us remind you that lucky numbers are positive integers whose decimal representation only contains lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Roma's got *n* positive integer...
The first line contains two integers *n*, *k* (1<=≤<=*n*,<=*k*<=≤<=100). The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=109) — the numbers that Roma has. The numbers in the lines are separated by single spaces.
In a single line print a single integer — the answer to the problem.
[ "3 4\n1 2 4\n", "3 2\n447 44 77\n" ]
[ "3\n", "2\n" ]
In the first sample all numbers contain at most four lucky digits, so the answer is 3. In the second sample number 447 doesn't fit in, as it contains more than two lucky digits. All other numbers are fine, so the answer is 2.
500
[ { "input": "3 4\n1 2 4", "output": "3" }, { "input": "3 2\n447 44 77", "output": "2" }, { "input": "2 2\n507978501 180480073", "output": "2" }, { "input": "9 6\n655243746 167613748 1470546 57644035 176077477 56984809 44677 215706823 369042089", "output": "9" }, { ...
1,656,522,372
2,147,483,647
Python 3
OK
TESTS
34
92
0
(n, k) = map(int, input().split(' ')) a = input().split() for i in range(n): a[i] = int(a[i]) numbers = 0 for number in a: if len(str(number)) < k: numbers += 1 else: numbers_of_lucky_digits = str(number).count('4') + str(number).count('7') if numbers_of_lucky_digits <= k: ...
Title: Roma and Lucky Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Roma (a popular Russian name that means 'Roman') loves the Little Lvov Elephant's lucky numbers. Let us remind you that lucky numbers are positive integers whose decimal representation only contains lucky digits...
```python (n, k) = map(int, input().split(' ')) a = input().split() for i in range(n): a[i] = int(a[i]) numbers = 0 for number in a: if len(str(number)) < k: numbers += 1 else: numbers_of_lucky_digits = str(number).count('4') + str(number).count('7') if numbers_of_lucky_digits <= ...
3
427
A
Police Recruits
PROGRAMMING
800
[ "implementation" ]
null
null
The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of the police force can investigate only one crime during his/her lifetime. If there is no police offi...
The first line of input will contain an integer *n* (1<=≤<=*n*<=≤<=105), the number of events. The next line will contain *n* space-separated integers. If the integer is -1 then it means a crime has occurred. Otherwise, the integer will be positive, the number of officers recruited together at that time. No more than ...
Print a single integer, the number of crimes which will go untreated.
[ "3\n-1 -1 1\n", "8\n1 -1 1 -1 -1 1 1 1\n", "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1\n" ]
[ "2\n", "1\n", "8\n" ]
Lets consider the second example: 1. Firstly one person is hired. 1. Then crime appears, the last hired person will investigate this crime. 1. One more person is hired. 1. One more crime appears, the last hired person will investigate this crime. 1. Crime appears. There is no free policeman at the time, so this c...
500
[ { "input": "3\n-1 -1 1", "output": "2" }, { "input": "8\n1 -1 1 -1 -1 1 1 1", "output": "1" }, { "input": "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1", "output": "8" }, { "input": "7\n-1 -1 1 1 -1 -1 1", "output": "2" }, { "input": "21\n-1 -1 -1 -1 -1 3 2 -1 6 -1 -1 2 1 ...
1,693,325,752
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
46
0
n=int(input()) a=list(map(int,input().split())) sum=0 s=0 for i in range(n): if a[i]==-1 and sum==0: s+=1 elif a[i]!=1: sum+=a[i] print(s)
Title: Police Recruits Time Limit: None seconds Memory Limit: None megabytes Problem Description: The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of...
```python n=int(input()) a=list(map(int,input().split())) sum=0 s=0 for i in range(n): if a[i]==-1 and sum==0: s+=1 elif a[i]!=1: sum+=a[i] print(s) ```
0
200
B
Drinks
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Little Vasya loves orange juice very much. That's why any food and drink in his kitchen necessarily contains orange juice. There are *n* drinks in his fridge, the volume fraction of orange juice in the *i*-th drink equals *p**i* percent. One day Vasya decided to make himself an orange cocktail. He took equal proportio...
The first input line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of orange-containing drinks in Vasya's fridge. The second line contains *n* integers *p**i* (0<=≤<=*p**i*<=≤<=100) — the volume fraction of orange juice in the *i*-th drink, in percent. The numbers are separated by a space.
Print the volume fraction in percent of orange juice in Vasya's cocktail. The answer will be considered correct if the absolute or relative error does not exceed 10<=<=-<=4.
[ "3\n50 50 100\n", "4\n0 25 50 75\n" ]
[ "66.666666666667\n", "37.500000000000\n" ]
Note to the first sample: let's assume that Vasya takes *x* milliliters of each drink from the fridge. Then the volume of pure juice in the cocktail will equal <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/c1fac6e64d3a8ee6a5ac138cbe51e60039b22473.png" style="max-width: 100.0%;max-height: ...
500
[ { "input": "3\n50 50 100", "output": "66.666666666667" }, { "input": "4\n0 25 50 75", "output": "37.500000000000" }, { "input": "3\n0 1 8", "output": "3.000000000000" }, { "input": "5\n96 89 93 95 70", "output": "88.600000000000" }, { "input": "7\n62 41 78 4 38 39...
1,697,134,414
2,147,483,647
PyPy 3-64
OK
TESTS
31
124
0
n = int(input()) s = input().split() s_ = [int(_) for _ in s] x = sum(s_) / n print(x)
Title: Drinks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Vasya loves orange juice very much. That's why any food and drink in his kitchen necessarily contains orange juice. There are *n* drinks in his fridge, the volume fraction of orange juice in the *i*-th drink equals *p**i*...
```python n = int(input()) s = input().split() s_ = [int(_) for _ in s] x = sum(s_) / n print(x) ```
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,692,337,528
2,147,483,647
Python 3
OK
TESTS
101
92
0
def find_gift_givers(n, gift_receivers): gift_givers = [0] * t for i in range(t): gift_givers[gift_receivers[i] - 1] = i + 1 return gift_givers t = int(input()) gift_receivers = list(map(int, input().split())) result = find_gift_givers(t, gift_receivers) print(*result)
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 def find_gift_givers(n, gift_receivers): gift_givers = [0] * t for i in range(t): gift_givers[gift_receivers[i] - 1] = i + 1 return gift_givers t = int(input()) gift_receivers = list(map(int, input().split())) result = find_gift_givers(t, gift_receivers) print(*result) ```
3
785
A
Anton and Polyhedrons
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Anton's favourite geometric figures are regular polyhedrons. Note that there are five kinds of regular polyhedrons: - Tetrahedron. Tetrahedron has 4 triangular faces. - Cube. Cube has 6 square faces. - Octahedron. Octahedron has 8 triangular faces. - Dodecahedron. Dodecahedron has 12 pentagonal faces. - Icosahed...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of polyhedrons in Anton's collection. Each of the following *n* lines of the input contains a string *s**i* — the name of the *i*-th polyhedron in Anton's collection. The string can look like this: - "Tetrahedron" (withou...
Output one number — the total number of faces in all the polyhedrons in Anton's collection.
[ "4\nIcosahedron\nCube\nTetrahedron\nDodecahedron\n", "3\nDodecahedron\nOctahedron\nOctahedron\n" ]
[ "42\n", "28\n" ]
In the first sample Anton has one icosahedron, one cube, one tetrahedron and one dodecahedron. Icosahedron has 20 faces, cube has 6 faces, tetrahedron has 4 faces and dodecahedron has 12 faces. In total, they have 20 + 6 + 4 + 12 = 42 faces.
500
[ { "input": "4\nIcosahedron\nCube\nTetrahedron\nDodecahedron", "output": "42" }, { "input": "3\nDodecahedron\nOctahedron\nOctahedron", "output": "28" }, { "input": "25\nIcosahedron\nOctahedron\nTetrahedron\nDodecahedron\nCube\nIcosahedron\nOctahedron\nCube\nTetrahedron\nIcosahedron\nIcosa...
1,675,124,321
2,147,483,647
Python 3
OK
TESTS
30
296
0
ss=0 for _ in range(int(input())): s=input() ss+=4 if s=="Tetrahedron" else 6 if s=="Cube" else 8 if s=="Octahedron" else 12 if s=="Dodecahedron" else 20 print(ss)
Title: Anton and Polyhedrons Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anton's favourite geometric figures are regular polyhedrons. Note that there are five kinds of regular polyhedrons: - Tetrahedron. Tetrahedron has 4 triangular faces. - Cube. Cube has 6 square faces. - Octahe...
```python ss=0 for _ in range(int(input())): s=input() ss+=4 if s=="Tetrahedron" else 6 if s=="Cube" else 8 if s=="Octahedron" else 12 if s=="Dodecahedron" else 20 print(ss) ```
3
784
A
Numbers Joke
PROGRAMMING
1,700
[ "*special" ]
null
null
The input contains a single integer *a* (1<=≤<=*a*<=≤<=30). Output a single integer.
The input contains a single integer *a* (1<=≤<=*a*<=≤<=30).
Output a single integer.
[ "3\n" ]
[ "27\n" ]
none
0
[ { "input": "3", "output": "27" }, { "input": "1", "output": "4" }, { "input": "2", "output": "22" }, { "input": "4", "output": "58" }, { "input": "5", "output": "85" }, { "input": "6", "output": "94" }, { "input": "7", "output": "121" ...
1,491,232,001
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
a=(int)raw_input(); print a**a;
Title: Numbers Joke Time Limit: None seconds Memory Limit: None megabytes Problem Description: The input contains a single integer *a* (1<=≤<=*a*<=≤<=30). Output a single integer. Input Specification: The input contains a single integer *a* (1<=≤<=*a*<=≤<=30). Output Specification: Output a single integer. Demo ...
```python a=(int)raw_input(); print a**a; ```
-1
0
none
none
none
0
[ "none" ]
null
null
Currently Tiny is learning Computational Geometry. When trying to solve a problem called "The Closest Pair Of Points In The Plane", he found that a code which gave a wrong time complexity got Accepted instead of Time Limit Exceeded. The problem is the follows. Given *n* points in the plane, find a pair of points betwe...
A single line which contains two space-separated integers *n* and *k* (2<=≤<=*n*<=≤<=2000, 1<=≤<=*k*<=≤<=109).
If there doesn't exist such a data which let the given code get TLE, print "no solution" (without quotes); else print *n* lines, and the *i*-th line contains two integers *x**i*,<=*y**i* (|*x**i*|,<=|*y**i*|<=≤<=109) representing the coordinates of the *i*-th point. The conditions below must be held: - All the point...
[ "4 3\n", "2 100\n" ]
[ "0 0\n0 1\n1 0\n1 1\n", "no solution\n" ]
none
0
[ { "input": "4 3", "output": "0 0\n0 1\n1 0\n1 1" }, { "input": "2 100", "output": "no solution" }, { "input": "5 6", "output": "0 0\n0 1\n0 2\n0 3\n0 4" }, { "input": "8 20", "output": "0 0\n0 1\n0 2\n0 3\n0 4\n0 5\n0 6\n0 7" }, { "input": "6 15", "output": "n...
1,555,139,081
2,147,483,647
Python 3
OK
TESTS
26
124
512,000
n,k=map(int, input().split()) if(n*(n-1)//2 <=k): print('no solution') else: for i in range(n): print(0,i)
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Currently Tiny is learning Computational Geometry. When trying to solve a problem called "The Closest Pair Of Points In The Plane", he found that a code which gave a wrong time complexity got Accepted instead of Time Limit Exceede...
```python n,k=map(int, input().split()) if(n*(n-1)//2 <=k): print('no solution') else: for i in range(n): print(0,i) ```
3
346
A
Alice and Bob
PROGRAMMING
1,600
[ "games", "math", "number theory" ]
null
null
It is so boring in the summer holiday, isn't it? So Alice and Bob have invented a new game to play. The rules are as follows. First, they get a set of *n* distinct integers. And then they take turns to make the following moves. During each move, either Alice or Bob (the player whose turn is the current) can choose two ...
The first line contains an integer *n* (2<=≤<=*n*<=≤<=100) — the initial number of elements in the set. The second line contains *n* distinct space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the elements of the set.
Print a single line with the winner's name. If Alice wins print "Alice", otherwise print "Bob" (without quotes).
[ "2\n2 3\n", "2\n5 3\n", "3\n5 6 7\n" ]
[ "Alice\n", "Alice\n", "Bob\n" ]
Consider the first test sample. Alice moves first, and the only move she can do is to choose 2 and 3, then to add 1 to the set. Next Bob moves, there is no valid move anymore, so the winner is Alice.
500
[ { "input": "2\n2 3", "output": "Alice" }, { "input": "2\n5 3", "output": "Alice" }, { "input": "3\n5 6 7", "output": "Bob" }, { "input": "10\n72 96 24 66 6 18 12 30 60 48", "output": "Bob" }, { "input": "10\n78 66 6 60 18 84 36 96 72 48", "output": "Bob" }, ...
1,627,251,276
2,147,483,647
PyPy 3
OK
TESTS
39
278
21,811,200
import functools import math n = int(input()) tab = list(map(int, input().split())) pgcd = functools.reduce(lambda x, y: math.gcd(x, y), tab) nbturns = max(tab) / pgcd - n print('Alice' if nbturns % 2 == 1 else 'Bob')
Title: Alice and Bob Time Limit: None seconds Memory Limit: None megabytes Problem Description: It is so boring in the summer holiday, isn't it? So Alice and Bob have invented a new game to play. The rules are as follows. First, they get a set of *n* distinct integers. And then they take turns to make the following ...
```python import functools import math n = int(input()) tab = list(map(int, input().split())) pgcd = functools.reduce(lambda x, y: math.gcd(x, y), tab) nbturns = max(tab) / pgcd - n print('Alice' if nbturns % 2 == 1 else 'Bob') ```
3
412
A
Poster
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
The R1 company has recently bought a high rise building in the centre of Moscow for its main office. It's time to decorate the new office, and the first thing to do is to write the company's slogan above the main entrance to the building. The slogan of the company consists of *n* characters, so the decorators hung a l...
The first line contains two integers, *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=100) — the number of characters in the slogan and the initial position of the ladder, correspondingly. The next line contains the slogan as *n* characters written without spaces. Each character of the slogan is either a large English letter, or di...
In *t* lines, print the actions the programmers need to make. In the *i*-th line print: - "LEFT" (without the quotes), if the *i*-th action was "move the ladder to the left"; - "RIGHT" (without the quotes), if the *i*-th action was "move the ladder to the right"; - "PRINT *x*" (without the quotes), if the *i*-th ac...
[ "2 2\nR1\n", "2 1\nR1\n", "6 4\nGO?GO!\n" ]
[ "PRINT 1\nLEFT\nPRINT R\n", "PRINT R\nRIGHT\nPRINT 1\n", "RIGHT\nRIGHT\nPRINT !\nLEFT\nPRINT O\nLEFT\nPRINT G\nLEFT\nPRINT ?\nLEFT\nPRINT O\nLEFT\nPRINT G\n" ]
Note that the ladder cannot be shifted by less than one meter. The ladder can only stand in front of some square of the poster. For example, you cannot shift a ladder by half a meter and position it between two squares. Then go up and paint the first character and the second character.
500
[ { "input": "2 2\nR1", "output": "PRINT 1\nLEFT\nPRINT R" }, { "input": "2 1\nR1", "output": "PRINT R\nRIGHT\nPRINT 1" }, { "input": "6 4\nGO?GO!", "output": "RIGHT\nRIGHT\nPRINT !\nLEFT\nPRINT O\nLEFT\nPRINT G\nLEFT\nPRINT ?\nLEFT\nPRINT O\nLEFT\nPRINT G" }, { "input": "7 3\n...
1,629,751,440
2,147,483,647
PyPy 3
OK
TESTS
43
108
20,172,800
def poster(n,k,s): k-=1 if n%2 == 0: if k < n//2: while k > 0: print("LEFT") k -= 1 while k < n: print("PRINT", s[k]) if k != n-1: print("RIGHT") k += 1 else: w...
Title: Poster Time Limit: None seconds Memory Limit: None megabytes Problem Description: The R1 company has recently bought a high rise building in the centre of Moscow for its main office. It's time to decorate the new office, and the first thing to do is to write the company's slogan above the main entrance to the...
```python def poster(n,k,s): k-=1 if n%2 == 0: if k < n//2: while k > 0: print("LEFT") k -= 1 while k < n: print("PRINT", s[k]) if k != n-1: print("RIGHT") k += 1 else: ...
3
466
A
Cheap Travel
PROGRAMMING
1,200
[ "implementation" ]
null
null
Ann has recently started commuting by subway. We know that a one ride subway ticket costs *a* rubles. Besides, Ann found out that she can buy a special ticket for *m* rides (she can buy it several times). It costs *b* rubles. Ann did the math; she will need to use subway *n* times. Help Ann, tell her what is the minimu...
The single line contains four space-separated integers *n*, *m*, *a*, *b* (1<=≤<=*n*,<=*m*,<=*a*,<=*b*<=≤<=1000) — the number of rides Ann has planned, the number of rides covered by the *m* ride ticket, the price of a one ride ticket and the price of an *m* ride ticket.
Print a single integer — the minimum sum in rubles that Ann will need to spend.
[ "6 2 1 2\n", "5 2 2 3\n" ]
[ "6\n", "8\n" ]
In the first sample one of the optimal solutions is: each time buy a one ride ticket. There are other optimal solutions. For example, buy three *m* ride tickets.
500
[ { "input": "6 2 1 2", "output": "6" }, { "input": "5 2 2 3", "output": "8" }, { "input": "10 3 5 1", "output": "4" }, { "input": "1000 1 1000 1000", "output": "1000000" }, { "input": "1000 3 1000 1000", "output": "334000" }, { "input": "1 1 1 1", "...
1,688,916,988
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
61
0
n,m,a,b = map(int,input().split()) one = n * a if n % m == 0: two = n // m * b else: two = n // m * b + (n%m) * a print(min(one,two))
Title: Cheap Travel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ann has recently started commuting by subway. We know that a one ride subway ticket costs *a* rubles. Besides, Ann found out that she can buy a special ticket for *m* rides (she can buy it several times). It costs *b* rubl...
```python n,m,a,b = map(int,input().split()) one = n * a if n % m == 0: two = n // m * b else: two = n // m * b + (n%m) * a print(min(one,two)) ```
0
127
A
Wasted Time
PROGRAMMING
900
[ "geometry" ]
null
null
Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count the time he has wasted signing papers. Mr. Scrooge's signature can be represented as a polyline ...
The first line contains two integers *n* and *k* (2<=≤<=*n*<=≤<=100, 1<=≤<=*k*<=≤<=1000). Each of the following *n* lines contains the coordinates of the polyline's endpoints. The *i*-th one contains coordinates of the point *A**i* — integers *x**i* and *y**i*, separated by a space. All points *A**i* are different. Th...
Print one real number — the total time Scrooges wastes on signing the papers in seconds. The absolute or relative error should not exceed 10<=-<=6.
[ "2 1\n0 0\n10 0\n", "5 10\n3 1\n-5 6\n-2 -1\n3 2\n10 0\n", "6 10\n5 0\n4 0\n6 0\n3 0\n7 0\n2 0\n" ]
[ "0.200000000", "6.032163204", "3.000000000" ]
none
500
[ { "input": "2 1\n0 0\n10 0", "output": "0.200000000" }, { "input": "5 10\n3 1\n-5 6\n-2 -1\n3 2\n10 0", "output": "6.032163204" }, { "input": "6 10\n5 0\n4 0\n6 0\n3 0\n7 0\n2 0", "output": "3.000000000" }, { "input": "10 95\n-20 -5\n2 -8\n14 13\n10 3\n17 11\n13 -12\n-6 11\n1...
1,562,802,786
2,147,483,647
PyPy 3
OK
TESTS
42
342
0
class point: x= 0 y = 0 def __init__(self,a,b): self.x = a self.y = b def dist(a,b): return (((b.x-a.x)*(b.x-a.x))+((b.y-a.y)*(b.y-a.y)))**.5 arr = [] n,k = list(map(int,input().split())) for i in range(0,n,1): a,b = list(map(int,input().split())) p = point(a,b) arr.append(p)...
Title: Wasted Time Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count ...
```python class point: x= 0 y = 0 def __init__(self,a,b): self.x = a self.y = b def dist(a,b): return (((b.x-a.x)*(b.x-a.x))+((b.y-a.y)*(b.y-a.y)))**.5 arr = [] n,k = list(map(int,input().split())) for i in range(0,n,1): a,b = list(map(int,input().split())) p = point(a,b) arr...
3
602
A
Two Bases
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
After seeing the "ALL YOUR BASE ARE BELONG TO US" meme for the first time, numbers *X* and *Y* realised that they have different bases, which complicated their relations. You're given a number *X* represented in base *b**x* and a number *Y* represented in base *b**y*. Compare those two numbers.
The first line of the input contains two space-separated integers *n* and *b**x* (1<=≤<=*n*<=≤<=10, 2<=≤<=*b**x*<=≤<=40), where *n* is the number of digits in the *b**x*-based representation of *X*. The second line contains *n* space-separated integers *x*1,<=*x*2,<=...,<=*x**n* (0<=≤<=*x**i*<=&lt;<=*b**x*) — the dig...
Output a single character (quotes for clarity): - '&lt;' if *X*<=&lt;<=*Y* - '&gt;' if *X*<=&gt;<=*Y* - '=' if *X*<==<=*Y*
[ "6 2\n1 0 1 1 1 1\n2 10\n4 7\n", "3 3\n1 0 2\n2 5\n2 4\n", "7 16\n15 15 4 0 0 7 10\n7 9\n4 8 0 3 1 5 0\n" ]
[ "=\n", "&lt;\n", "&gt;\n" ]
In the first sample, *X* = 101111<sub class="lower-index">2</sub> = 47<sub class="lower-index">10</sub> = *Y*. In the second sample, *X* = 102<sub class="lower-index">3</sub> = 21<sub class="lower-index">5</sub> and *Y* = 24<sub class="lower-index">5</sub> = 112<sub class="lower-index">3</sub>, thus *X* &lt; *Y*. In ...
500
[ { "input": "6 2\n1 0 1 1 1 1\n2 10\n4 7", "output": "=" }, { "input": "3 3\n1 0 2\n2 5\n2 4", "output": "<" }, { "input": "7 16\n15 15 4 0 0 7 10\n7 9\n4 8 0 3 1 5 0", "output": ">" }, { "input": "2 2\n1 0\n2 3\n1 0", "output": "<" }, { "input": "2 2\n1 0\n1 3\n1"...
1,472,352,434
2,147,483,647
Python 3
OK
TESTS
118
62
4,608,000
# coding=utf8 if __name__ == '__main__': n_x, b_x = str(input()).split() n_x = int(n_x) b_x = int(b_x) line_x = str(input()).split() sum_x = 0 for i in range(n_x): sum_x += pow(b_x, i) * int(line_x[n_x - 1 - i]) n_y, b_y = str(input()).split() n_y = int(n_y) b_y ...
Title: Two Bases Time Limit: None seconds Memory Limit: None megabytes Problem Description: After seeing the "ALL YOUR BASE ARE BELONG TO US" meme for the first time, numbers *X* and *Y* realised that they have different bases, which complicated their relations. You're given a number *X* represented in base *b**x* ...
```python # coding=utf8 if __name__ == '__main__': n_x, b_x = str(input()).split() n_x = int(n_x) b_x = int(b_x) line_x = str(input()).split() sum_x = 0 for i in range(n_x): sum_x += pow(b_x, i) * int(line_x[n_x - 1 - i]) n_y, b_y = str(input()).split() n_y = int(n_y)...
3
863
A
Quasi-palindrome
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
Let quasi-palindromic number be such number that adding some leading zeros (possible none) to it produces a palindromic string. String *t* is called a palindrome, if it reads the same from left to right and from right to left. For example, numbers 131 and 2010200 are quasi-palindromic, they can be transformed to str...
The first line contains one integer number *x* (1<=≤<=*x*<=≤<=109). This number is given without any leading zeroes.
Print "YES" if number *x* is quasi-palindromic. Otherwise, print "NO" (without quotes).
[ "131\n", "320\n", "2010200\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
0
[ { "input": "131", "output": "YES" }, { "input": "320", "output": "NO" }, { "input": "2010200", "output": "YES" }, { "input": "1", "output": "YES" }, { "input": "1000000000", "output": "YES" }, { "input": "999999999", "output": "YES" }, { "i...
1,665,705,908
2,147,483,647
PyPy 3-64
OK
TESTS
44
62
28,774,400
x = input() y = [] p = True x = x.strip("0") for l in x: y.append(l) for z in range(0, len(y)): if y[z] != y[len(y)-z-1]: p = False if p == False: print("NO") else: print("YES")
Title: Quasi-palindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let quasi-palindromic number be such number that adding some leading zeros (possible none) to it produces a palindromic string. String *t* is called a palindrome, if it reads the same from left to right and from righ...
```python x = input() y = [] p = True x = x.strip("0") for l in x: y.append(l) for z in range(0, len(y)): if y[z] != y[len(y)-z-1]: p = False if p == False: print("NO") else: print("YES") ```
3
287
A
IQ Test
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
In the city of Ultima Thule job applicants are often offered an IQ test. The test is as follows: the person gets a piece of squared paper with a 4<=×<=4 square painted on it. Some of the square's cells are painted black and others are painted white. Your task is to repaint at most one cell the other color so that the...
Four lines contain four characters each: the *j*-th character of the *i*-th line equals "." if the cell in the *i*-th row and the *j*-th column of the square is painted white, and "#", if the cell is black.
Print "YES" (without the quotes), if the test can be passed and "NO" (without the quotes) otherwise.
[ "####\n.#..\n####\n....\n", "####\n....\n####\n....\n" ]
[ "YES\n", "NO\n" ]
In the first test sample it is enough to repaint the first cell in the second row. After such repainting the required 2 × 2 square is on the intersection of the 1-st and 2-nd row with the 1-st and 2-nd column.
500
[ { "input": "###.\n...#\n###.\n...#", "output": "NO" }, { "input": ".##.\n#..#\n.##.\n#..#", "output": "NO" }, { "input": ".#.#\n#.#.\n.#.#\n#.#.", "output": "NO" }, { "input": "##..\n..##\n##..\n..##", "output": "NO" }, { "input": "#.#.\n#.#.\n.#.#\n.#.#", "ou...
1,580,635,776
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
140
0
li = [] for _ in range(4): li.append(input()) for i in range(3): for j in range(3): if li[i][j] == '#': t = 1 if li[i+1][j] == '#': t += 1 if li[i][j+1] == '#': t += 1 if li[i+1][j+1] == '#': t += 1 if t == 4 or t == 3: print('YES') exit() print('NO')
Title: IQ Test Time Limit: None seconds Memory Limit: None megabytes Problem Description: In the city of Ultima Thule job applicants are often offered an IQ test. The test is as follows: the person gets a piece of squared paper with a 4<=×<=4 square painted on it. Some of the square's cells are painted black and o...
```python li = [] for _ in range(4): li.append(input()) for i in range(3): for j in range(3): if li[i][j] == '#': t = 1 if li[i+1][j] == '#': t += 1 if li[i][j+1] == '#': t += 1 if li[i+1][j+1] == '#': t += 1 if t == 4 or t == 3: print('YES') exit() print('NO'...
0
225
C
Barcode
PROGRAMMING
1,700
[ "dp", "matrices" ]
null
null
You've got an *n*<=×<=*m* pixel picture. Each pixel can be white or black. Your task is to change the colors of as few pixels as possible to obtain a barcode picture. A picture is a barcode if the following conditions are fulfilled: - All pixels in each column are of the same color. - The width of each monochrome ...
The first line contains four space-separated integers *n*, *m*, *x* and *y* (1<=≤<=*n*,<=*m*,<=*x*,<=*y*<=≤<=1000; *x*<=≤<=*y*). Then follow *n* lines, describing the original image. Each of these lines contains exactly *m* characters. Character "." represents a white pixel and "#" represents a black pixel. The pictur...
In the first line print the minimum number of pixels to repaint. It is guaranteed that the answer exists.
[ "6 5 1 2\n##.#.\n.###.\n###..\n#...#\n.##.#\n###..\n", "2 5 1 1\n#####\n.....\n" ]
[ "11\n", "5\n" ]
In the first test sample the picture after changing some colors can looks as follows: In the second test sample the picture after changing some colors can looks as follows:
1,500
[ { "input": "6 5 1 2\n##.#.\n.###.\n###..\n#...#\n.##.#\n###..", "output": "11" }, { "input": "10 5 3 7\n.####\n###..\n##.##\n#..#.\n.#...\n#.##.\n.##..\n.#.##\n#.#..\n.#..#", "output": "24" }, { "input": "6 3 1 4\n##.\n#..\n#..\n..#\n.#.\n#.#", "output": "6" }, { "input": "5 ...
1,508,664,483
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
122
4,915,200
dp = {} h, w, x, y = 0, 0, 0, 0 a = [0] * 1000 def calc(k, s): if (k, s) in dp: return dp[(k, s)] if s > k: dp[(k, s)] = 999999999 elif s >= 1: dp[(k, s)] = calc(k - 1, s - 1) + h - a[k] elif s == 0: dp[(k, 0)] = min([calc(k - 1, 0)] + [calc(k - 1, s0) for s0 in range(x, y + 1)]) + a[...
Title: Barcode Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got an *n*<=×<=*m* pixel picture. Each pixel can be white or black. Your task is to change the colors of as few pixels as possible to obtain a barcode picture. A picture is a barcode if the following conditions are fulf...
```python dp = {} h, w, x, y = 0, 0, 0, 0 a = [0] * 1000 def calc(k, s): if (k, s) in dp: return dp[(k, s)] if s > k: dp[(k, s)] = 999999999 elif s >= 1: dp[(k, s)] = calc(k - 1, s - 1) + h - a[k] elif s == 0: dp[(k, 0)] = min([calc(k - 1, 0)] + [calc(k - 1, s0) for s0 in range(x, y +...
-1
616
A
Comparing Two Long Integers
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
You are given two very long integers *a*,<=*b* (leading zeroes are allowed). You should check what number *a* or *b* is greater or determine that they are equal. The input size is very large so don't use the reading of symbols one by one. Instead of that use the reading of a whole line or token. As input/output can r...
The first line contains a non-negative integer *a*. The second line contains a non-negative integer *b*. The numbers *a*,<=*b* may contain leading zeroes. Each of them contains no more than 106 digits.
Print the symbol "&lt;" if *a*<=&lt;<=*b* and the symbol "&gt;" if *a*<=&gt;<=*b*. If the numbers are equal print the symbol "=".
[ "9\n10\n", "11\n10\n", "00012345\n12345\n", "0123\n9\n", "0123\n111\n" ]
[ "&lt;\n", "&gt;\n", "=\n", "&gt;\n", "&gt;\n" ]
none
0
[ { "input": "9\n10", "output": "<" }, { "input": "11\n10", "output": ">" }, { "input": "00012345\n12345", "output": "=" }, { "input": "0123\n9", "output": ">" }, { "input": "0123\n111", "output": ">" }, { "input": "9\n9", "output": "=" }, { ...
1,587,302,959
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
13
2,000
10,547,200
from sys import stdin a=int(stdin.readline()) b=int(stdin.readline()) if a>b: print(">") elif a<b: print("<") else: print("=")
Title: Comparing Two Long Integers Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two very long integers *a*,<=*b* (leading zeroes are allowed). You should check what number *a* or *b* is greater or determine that they are equal. The input size is very large so don't use th...
```python from sys import stdin a=int(stdin.readline()) b=int(stdin.readline()) if a>b: print(">") elif a<b: print("<") else: print("=") ```
0
142
E
Help Greg the Dwarf 2
PROGRAMMING
3,000
[ "geometry" ]
null
null
Greg the Dwarf has been really busy recently with excavations by the Neverland Mountain. However for the well-known reasons (as you probably remember he is a very unusual dwarf and he cannot stand sunlight) Greg can only excavate at night. And in the morning he should be in his crypt before the first sun ray strikes. T...
The first input line contains space-separated integers *r* and *h* (1<=≤<=*r*,<=*h*<=≤<=1000) — the base radius and the cone height correspondingly. The second and third lines contain coordinates of two points on the cone surface, groups of three space-separated real numbers. The coordinates of the points are given in ...
Print the length of the shortest path between the points given in the input, with absolute or relative error not exceeding 10<=-<=6.
[ "2 2\n1.0 0.0 0.0\n-1.0 0.0 0.0\n", "2 2\n1.0 0.0 0.0\n1.0 0.0 1.0\n", "2 2\n1.0 0.0 1.0\n-1.0 0.0 1.0\n", "2 2\n1.0 0.0 0.0\n0.0 1.0 1.0\n" ]
[ "2.000000000", "2.414213562", "2.534324263", "3.254470198" ]
none
2,500
[ { "input": "2 2\n1.0 0.0 0.0\n-1.0 0.0 0.0", "output": "2.0000000000000000" }, { "input": "2 2\n1.0 0.0 0.0\n1.0 0.0 1.0", "output": "2.414213562373095" }, { "input": "2 2\n1.0 0.0 1.0\n-1.0 0.0 1.0", "output": "2.534324262661599" }, { "input": "2 2\n1.0 0.0 0.0\n0.0 1.0 1.0"...
1,689,443,513
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
92
0
print("_RANDOM_GUESS_1689443513.8014555")# 1689443513.8014755
Title: Help Greg the Dwarf 2 Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greg the Dwarf has been really busy recently with excavations by the Neverland Mountain. However for the well-known reasons (as you probably remember he is a very unusual dwarf and he cannot stand sunlight) Greg c...
```python print("_RANDOM_GUESS_1689443513.8014555")# 1689443513.8014755 ```
0
979
A
Pizza, Pizza, Pizza!!!
PROGRAMMING
1,000
[ "math" ]
null
null
Katie, Kuro and Shiro are best friends. They have known each other since kindergarten. That's why they often share everything with each other and work together on some very hard problems. Today is Shiro's birthday. She really loves pizza so she wants to invite her friends to the pizza restaurant near her house to cele...
A single line contains one non-negative integer $n$ ($0 \le n \leq 10^{18}$) — the number of Shiro's friends. The circular pizza has to be sliced into $n + 1$ pieces.
A single integer — the number of straight cuts Shiro needs.
[ "3\n", "4\n" ]
[ "2", "5" ]
To cut the round pizza into quarters one has to make two cuts through the center with angle $90^{\circ}$ between them. To cut the round pizza into five equal parts one has to make five cuts.
500
[ { "input": "3", "output": "2" }, { "input": "4", "output": "5" }, { "input": "10", "output": "11" }, { "input": "10000000000", "output": "10000000001" }, { "input": "1234567891", "output": "617283946" }, { "input": "7509213957", "output": "37546069...
1,527,322,099
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
28
92
0
slices = int(input())+1 if slices%2==0: print(slices//2) else: print(slices)
Title: Pizza, Pizza, Pizza!!! Time Limit: None seconds Memory Limit: None megabytes Problem Description: Katie, Kuro and Shiro are best friends. They have known each other since kindergarten. That's why they often share everything with each other and work together on some very hard problems. Today is Shiro's birthd...
```python slices = int(input())+1 if slices%2==0: print(slices//2) else: print(slices) ```
0
651
B
Beautiful Paintings
PROGRAMMING
1,200
[ "greedy", "sortings" ]
null
null
There are *n* pictures delivered for the new exhibition. The *i*-th painting has beauty *a**i*. We know that a visitor becomes happy every time he passes from a painting to a more beautiful one. We are allowed to arranged pictures in any order. What is the maximum possible number of times the visitor may become happy ...
The first line of the input contains integer *n* (1<=≤<=*n*<=≤<=1000) — the number of painting. The second line contains the sequence *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1000), where *a**i* means the beauty of the *i*-th painting.
Print one integer — the maximum possible number of neighbouring pairs, such that *a**i*<=+<=1<=&gt;<=*a**i*, after the optimal rearrangement.
[ "5\n20 30 10 50 40\n", "4\n200 100 100 200\n" ]
[ "4\n", "2\n" ]
In the first sample, the optimal order is: 10, 20, 30, 40, 50. In the second sample, the optimal order is: 100, 200, 100, 200.
1,000
[ { "input": "5\n20 30 10 50 40", "output": "4" }, { "input": "4\n200 100 100 200", "output": "2" }, { "input": "10\n2 2 2 2 2 2 2 2 2 2", "output": "0" }, { "input": "1\n1000", "output": "0" }, { "input": "2\n444 333", "output": "1" }, { "input": "100\n...
1,634,312,423
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
77
0
n = int(input()) a = list(map(int, input().split())) if(len(set(a)) == len(a)): print(len(a)-1) else: print(len(set(a))-1+len(a)-len(set(a))-1)
Title: Beautiful Paintings Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* pictures delivered for the new exhibition. The *i*-th painting has beauty *a**i*. We know that a visitor becomes happy every time he passes from a painting to a more beautiful one. We are allowed to a...
```python n = int(input()) a = list(map(int, input().split())) if(len(set(a)) == len(a)): print(len(a)-1) else: print(len(set(a))-1+len(a)-len(set(a))-1) ```
0
598
B
Queries on a String
PROGRAMMING
1,300
[ "implementation", "strings" ]
null
null
You are given a string *s* and should process *m* queries. Each query is described by two 1-based indices *l**i*, *r**i* and integer *k**i*. It means that you should cyclically shift the substring *s*[*l**i*... *r**i*] *k**i* times. The queries should be processed one after another in the order they are given. One ope...
The first line of the input contains the string *s* (1<=≤<=|*s*|<=≤<=10<=000) in its initial state, where |*s*| stands for the length of *s*. It contains only lowercase English letters. Second line contains a single integer *m* (1<=≤<=*m*<=≤<=300) — the number of queries. The *i*-th of the next *m* lines contains thr...
Print the resulting string *s* after processing all *m* queries.
[ "abacaba\n2\n3 6 1\n1 4 2\n" ]
[ "baabcaa\n" ]
The sample is described in problem statement.
0
[ { "input": "abacaba\n2\n3 6 1\n1 4 2", "output": "baabcaa" }, { "input": "u\n1\n1 1 1", "output": "u" }, { "input": "p\n5\n1 1 5\n1 1 9\n1 1 10\n1 1 10\n1 1 4", "output": "p" }, { "input": "ssssssssss\n5\n5 7 9\n3 9 3\n2 7 1\n7 7 10\n1 9 6", "output": "ssssssssss" }, ...
1,647,117,349
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
7
2,000
1,433,600
s = list(input()) m = int(input()) for _ in range(m): l, r, k = tuple(map(int, input().split())) l = l-1 r = r-1 lenss = r-l+1 k0 = k % lenss for _ in range(k0): ss = s[l:r] s[l] = s[r] s[l+1:r+1] = ss print(''.join(s))
Title: Queries on a String Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a string *s* and should process *m* queries. Each query is described by two 1-based indices *l**i*, *r**i* and integer *k**i*. It means that you should cyclically shift the substring *s*[*l**i*... *r**...
```python s = list(input()) m = int(input()) for _ in range(m): l, r, k = tuple(map(int, input().split())) l = l-1 r = r-1 lenss = r-l+1 k0 = k % lenss for _ in range(k0): ss = s[l:r] s[l] = s[r] s[l+1:r+1] = ss print(''.join(s)) ```
0
78
A
Haiku
PROGRAMMING
800
[ "implementation", "strings" ]
A. Haiku
2
256
Haiku is a genre of Japanese traditional poetry. A haiku poem consists of 17 syllables split into three phrases, containing 5, 7 and 5 syllables correspondingly (the first phrase should contain exactly 5 syllables, the second phrase should contain exactly 7 syllables, and the third phrase should contain exactly 5 syll...
The input data consists of three lines. The length of each line is between 1 and 100, inclusive. The *i*-th line contains the *i*-th phrase of the poem. Each phrase consists of one or more words, which are separated by one or more spaces. A word is a non-empty sequence of lowercase Latin letters. Leading and/or trailin...
Print "YES" (without the quotes) if the poem is a haiku. Otherwise, print "NO" (also without the quotes).
[ "on codeforces \nbeta round is running\n a rustling of keys \n", "how many gallons\nof edo s rain did you drink\n cuckoo\n" ]
[ "YES", "NO" ]
none
500
[ { "input": "on codeforces \nbeta round is running\n a rustling of keys ", "output": "YES" }, { "input": "how many gallons\nof edo s rain did you drink\n cuckoo", "output": "NO" }, { "input": " hatsu shigure\n saru mo komino wo\nhoshige nari", ...
1,588,625,753
2,147,483,647
Python 3
OK
TESTS
40
218
0
r=0 for i in [0,1,2]:r|=sum(x in 'aeiou' for x in input())!=5+i%2*2 print('YNEOS'[r::2])
Title: Haiku Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Haiku is a genre of Japanese traditional poetry. A haiku poem consists of 17 syllables split into three phrases, containing 5, 7 and 5 syllables correspondingly (the first phrase should contain exactly 5 syllables, the second phrase...
```python r=0 for i in [0,1,2]:r|=sum(x in 'aeiou' for x in input())!=5+i%2*2 print('YNEOS'[r::2]) ```
3.9455
676
C
Vasya and String
PROGRAMMING
1,500
[ "binary search", "dp", "strings", "two pointers" ]
null
null
High school student Vasya got a string of length *n* as a birthday present. This string consists of letters 'a' and 'b' only. Vasya denotes beauty of the string as the maximum length of a substring (consecutive subsequence) consisting of equal letters. Vasya can change no more than *k* characters of the original strin...
The first line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=100<=000,<=0<=≤<=*k*<=≤<=*n*) — the length of the string and the maximum number of characters to change. The second line contains the string, consisting of letters 'a' and 'b' only.
Print the only integer — the maximum beauty of the string Vasya can achieve by changing no more than *k* characters.
[ "4 2\nabba\n", "8 1\naabaabaa\n" ]
[ "4\n", "5\n" ]
In the first sample, Vasya can obtain both strings "aaaa" and "bbbb". In the second sample, the optimal answer is obtained with the string "aaaaabaa" or with the string "aabaaaaa".
1,500
[ { "input": "4 2\nabba", "output": "4" }, { "input": "8 1\naabaabaa", "output": "5" }, { "input": "1 0\na", "output": "1" }, { "input": "1 1\nb", "output": "1" }, { "input": "1 0\nb", "output": "1" }, { "input": "1 1\na", "output": "1" }, { ...
1,592,836,658
2,147,483,647
PyPy 3
OK
TESTS
117
420
12,083,200
import sys from collections import defaultdict as dd from collections import deque from fractions import Fraction as f from copy import * from bisect import * from heapq import * #from math import * from itertools import permutations def eprint(*args): print(*args, file=sys.stderr) zz=1 #sys.set...
Title: Vasya and String Time Limit: None seconds Memory Limit: None megabytes Problem Description: High school student Vasya got a string of length *n* as a birthday present. This string consists of letters 'a' and 'b' only. Vasya denotes beauty of the string as the maximum length of a substring (consecutive subsequ...
```python import sys from collections import defaultdict as dd from collections import deque from fractions import Fraction as f from copy import * from bisect import * from heapq import * #from math import * from itertools import permutations def eprint(*args): print(*args, file=sys.stderr) zz=1 ...
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,661,787,164
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
t1=input() t2=input() if t1[::-1]==t2: 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 t1=input() t2=input() if t1[::-1]==t2: print("Yes") else: print("NO") ```
0
15
A
Cottage Village
PROGRAMMING
1,200
[ "implementation", "sortings" ]
A. Cottage Village
2
64
A new cottage village called «Flatville» is being built in Flatland. By now they have already built in «Flatville» *n* square houses with the centres on the *Оx*-axis. The houses' sides are parallel to the coordinate axes. It's known that no two houses overlap, but they can touch each other. The architect bureau, wher...
The first line of the input data contains numbers *n* and *t* (1<=≤<=*n*,<=*t*<=≤<=1000). Then there follow *n* lines, each of them contains two space-separated integer numbers: *x**i* *a**i*, where *x**i* — *x*-coordinate of the centre of the *i*-th house, and *a**i* — length of its side (<=-<=1000<=≤<=*x**i*<=≤<=1000...
Output the amount of possible positions of the new house.
[ "2 2\n0 4\n6 2\n", "2 2\n0 4\n5 2\n", "2 3\n0 4\n5 2\n" ]
[ "4\n", "3\n", "2\n" ]
It is possible for the *x*-coordinate of the new house to have non-integer value.
0
[ { "input": "2 2\n0 4\n6 2", "output": "4" }, { "input": "2 2\n0 4\n5 2", "output": "3" }, { "input": "2 3\n0 4\n5 2", "output": "2" }, { "input": "1 1\n1 1", "output": "2" }, { "input": "1 2\n2 1", "output": "2" }, { "input": "2 1\n2 1\n1 1", "outp...
1,651,413,014
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
7
92
0
n,t=map(int,input().split(' ')) a=[] for i in range(n): a.append(list(map(int,input().split(' ')))) count=0 for i in range(1,n): if (a[i][0]-a[i-1][0])-((a[i][1]/2)+(a[i-1][1]/2))>t: count+=2 elif (a[i][0]-a[i-1][0])-((a[i][1]/2)+(a[i-1][1]/2))==t: count+=1 count+=2 print(count)
Title: Cottage Village Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: A new cottage village called «Flatville» is being built in Flatland. By now they have already built in «Flatville» *n* square houses with the centres on the *Оx*-axis. The houses' sides are parallel to the coordinate axes. I...
```python n,t=map(int,input().split(' ')) a=[] for i in range(n): a.append(list(map(int,input().split(' ')))) count=0 for i in range(1,n): if (a[i][0]-a[i-1][0])-((a[i][1]/2)+(a[i-1][1]/2))>t: count+=2 elif (a[i][0]-a[i-1][0])-((a[i][1]/2)+(a[i-1][1]/2))==t: count+=1 count+=2 print(count...
0
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,661,264,997
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
60
0
n = int(input()) arr = [int(i) for i in input().split()] m = int(input()) brr = [int(i) for i in input().split()] vas = 0 pet = 0 for i in range(n): if arr[i] in brr: vas += i +1 pet += n-i l = [vas, pet] print(*l)
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 n = int(input()) arr = [int(i) for i in input().split()] m = int(input()) brr = [int(i) for i in input().split()] vas = 0 pet = 0 for i in range(n): if arr[i] in brr: vas += i +1 pet += n-i l = [vas, pet] print(*l) ```
0
817
A
Treasure Hunt
PROGRAMMING
1,200
[ "implementation", "math", "number theory" ]
null
null
Captain Bill the Hummingbird and his crew recieved an interesting challenge offer. Some stranger gave them a map, potion of teleportation and said that only this potion might help them to reach the treasure. Bottle with potion has two values *x* and *y* written on it. These values define four moves which can be perfo...
The first line contains four integer numbers *x*1,<=*y*1,<=*x*2,<=*y*2 (<=-<=105<=≤<=*x*1,<=*y*1,<=*x*2,<=*y*2<=≤<=105) — positions of Captain Bill the Hummingbird and treasure respectively. The second line contains two integer numbers *x*,<=*y* (1<=≤<=*x*,<=*y*<=≤<=105) — values on the potion bottle.
Print "YES" if it is possible for Captain to reach the treasure using the potion, otherwise print "NO" (without quotes).
[ "0 0 0 6\n2 3\n", "1 1 3 6\n1 5\n" ]
[ "YES\n", "NO\n" ]
In the first example there exists such sequence of moves: 1. <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/7c939890fb4ed35688177327dac981bfa9216c00.png" style="max-width: 100.0%;max-height: 100.0%;"/> — the first type of move 1. <img align="middle" class="tex-formula" src="https://espr...
0
[ { "input": "0 0 0 6\n2 3", "output": "YES" }, { "input": "1 1 3 6\n1 5", "output": "NO" }, { "input": "5 4 6 -10\n1 1", "output": "NO" }, { "input": "6 -3 -7 -7\n1 2", "output": "NO" }, { "input": "2 -5 -8 8\n2 1", "output": "YES" }, { "input": "70 -81...
1,503,420,216
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
0
x1,y1,x2,y2=map(int,input().split()) x,y=map(int,input().split()) k1=abs(x2-x1) k2=abs(y2-y1) if k1%x or k2%y: print('NO') else: q=k1//x if k2%(y*2)==0: print('YES') else: print('NO')
Title: Treasure Hunt Time Limit: None seconds Memory Limit: None megabytes Problem Description: Captain Bill the Hummingbird and his crew recieved an interesting challenge offer. Some stranger gave them a map, potion of teleportation and said that only this potion might help them to reach the treasure. Bottle with...
```python x1,y1,x2,y2=map(int,input().split()) x,y=map(int,input().split()) k1=abs(x2-x1) k2=abs(y2-y1) if k1%x or k2%y: print('NO') else: q=k1//x if k2%(y*2)==0: print('YES') else: print('NO') ```
0
472
A
Design Tutorial: Learn from Math
PROGRAMMING
800
[ "math", "number theory" ]
null
null
One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statement called the "Goldbach's conjecture". It says: "each even number no less than four can be expressed as the sum of two ...
The only line contains an integer *n* (12<=≤<=*n*<=≤<=106).
Output two composite integers *x* and *y* (1<=&lt;<=*x*,<=*y*<=&lt;<=*n*) such that *x*<=+<=*y*<==<=*n*. If there are multiple solutions, you can output any of them.
[ "12\n", "15\n", "23\n", "1000000\n" ]
[ "4 8\n", "6 9\n", "8 15\n", "500000 500000\n" ]
In the first example, 12 = 4 + 8 and both 4, 8 are composite numbers. You can output "6 6" or "8 4" as well. In the second example, 15 = 6 + 9. Note that you can't output "1 14" because 1 is not a composite number.
500
[ { "input": "12", "output": "4 8" }, { "input": "15", "output": "6 9" }, { "input": "23", "output": "8 15" }, { "input": "1000000", "output": "500000 500000" }, { "input": "63874", "output": "4 63870" }, { "input": "14568", "output": "4 14564" }, ...
1,680,665,555
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
3
1,000
5,427,200
from itertools import combinations def check(num): for i in range(2, num): if num % i == 0: return True return False n = int(input()) c = [] for i in range(4, n): if check(i): c.append(i) for i in combinations(c, 2): if sum(i) == n: print(i[0], i[1]) ...
Title: Design Tutorial: Learn from Math Time Limit: None seconds Memory Limit: None megabytes Problem Description: One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statemen...
```python from itertools import combinations def check(num): for i in range(2, num): if num % i == 0: return True return False n = int(input()) c = [] for i in range(4, n): if check(i): c.append(i) for i in combinations(c, 2): if sum(i) == n: print(i[0], ...
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,672,415,857
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
n = int(input()) word_1 = input() word_2 = input() word_3 = input() word_4 = input() print(n) if len(word_1) > 10 : word_1 = word_1[0] + str(len(word_1)) + word_1[-1] print(word_1) else : print(word_1) if len(word_2) > 10 : word_2 = word_2[0] + str(len(word_2)) + word_2[-1] print(word_2) else : pri...
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python n = int(input()) word_1 = input() word_2 = input() word_3 = input() word_4 = input() print(n) if len(word_1) > 10 : word_1 = word_1[0] + str(len(word_1)) + word_1[-1] print(word_1) else : print(word_1) if len(word_2) > 10 : word_2 = word_2[0] + str(len(word_2)) + word_2[-1] print(word_2) el...
0
276
B
Little Girl and Game
PROGRAMMING
1,300
[ "games", "greedy" ]
null
null
The Little Girl loves problems on games very much. Here's one of them. Two players have got a string *s*, consisting of lowercase English letters. They play a game that is described by the following rules: - The players move in turns; In one move the player can remove an arbitrary letter from string *s*. - If the p...
The input contains a single line, containing string *s* (1<=≤<=|*s*|<=<=≤<=<=103). String *s* consists of lowercase English letters.
In a single line print word "First" if the first player wins (provided that both players play optimally well). Otherwise, print word "Second". Print the words without the quotes.
[ "aba\n", "abca\n" ]
[ "First\n", "Second\n" ]
none
1,000
[ { "input": "aba", "output": "First" }, { "input": "abca", "output": "Second" }, { "input": "aabb", "output": "First" }, { "input": "ctjxzuimsxnarlciuynqeoqmmbqtagszuo", "output": "Second" }, { "input": "gevqgtaorjixsxnbcoybr", "output": "First" }, { "i...
1,647,591,849
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
92
512,000
from collections import Counter s = input() freq = Counter(s) rem = [] for k,v in freq.items(): if v % 2 == 1: rem.append(k) if len(rem) == 0: print("Firs`t") else: if len(rem) % 2 == 0: print("Second") else: print("First")
Title: Little Girl and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Girl loves problems on games very much. Here's one of them. Two players have got a string *s*, consisting of lowercase English letters. They play a game that is described by the following rules: - The...
```python from collections import Counter s = input() freq = Counter(s) rem = [] for k,v in freq.items(): if v % 2 == 1: rem.append(k) if len(rem) == 0: print("Firs`t") else: if len(rem) % 2 == 0: print("Second") else: print("First") ```
0
659
A
Round House
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Vasya lives in a round building, whose entrances are numbered sequentially by integers from 1 to *n*. Entrance *n* and entrance 1 are adjacent. Today Vasya got bored and decided to take a walk in the yard. Vasya lives in entrance *a* and he decided that during his walk he will move around the house *b* entrances in th...
The single line of the input contains three space-separated integers *n*, *a* and *b* (1<=≤<=*n*<=≤<=100,<=1<=≤<=*a*<=≤<=*n*,<=<=-<=100<=≤<=*b*<=≤<=100) — the number of entrances at Vasya's place, the number of his entrance and the length of his walk, respectively.
Print a single integer *k* (1<=≤<=*k*<=≤<=*n*) — the number of the entrance where Vasya will be at the end of his walk.
[ "6 2 -5\n", "5 1 3\n", "3 2 7\n" ]
[ "3\n", "4\n", "3\n" ]
The first example is illustrated by the picture in the statements.
500
[ { "input": "6 2 -5", "output": "3" }, { "input": "5 1 3", "output": "4" }, { "input": "3 2 7", "output": "3" }, { "input": "1 1 0", "output": "1" }, { "input": "1 1 -1", "output": "1" }, { "input": "1 1 1", "output": "1" }, { "input": "100 ...
1,564,547,381
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
108
0
n,a,b=map(int,input().split()) res=(a-1+b+n)%n print(res)
Title: Round House Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya lives in a round building, whose entrances are numbered sequentially by integers from 1 to *n*. Entrance *n* and entrance 1 are adjacent. Today Vasya got bored and decided to take a walk in the yard. Vasya lives in e...
```python n,a,b=map(int,input().split()) res=(a-1+b+n)%n print(res) ```
0
673
A
Bear and Game
PROGRAMMING
800
[ "implementation" ]
null
null
Bear Limak likes watching sports on TV. He is going to watch a game today. The game lasts 90 minutes and there are no breaks. Each minute can be either interesting or boring. If 15 consecutive minutes are boring then Limak immediately turns TV off. You know that there will be *n* interesting minutes *t*1,<=*t*2,<=......
The first line of the input contains one integer *n* (1<=≤<=*n*<=≤<=90) — the number of interesting minutes. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t*1<=&lt;<=*t*2<=&lt;<=... *t**n*<=≤<=90), given in the increasing order.
Print the number of minutes Limak will watch the game.
[ "3\n7 20 88\n", "9\n16 20 30 40 50 60 70 80 90\n", "9\n15 20 30 40 50 60 70 80 90\n" ]
[ "35\n", "15\n", "90\n" ]
In the first sample, minutes 21, 22, ..., 35 are all boring and thus Limak will turn TV off immediately after the 35-th minute. So, he would watch the game for 35 minutes. In the second sample, the first 15 minutes are boring. In the third sample, there are no consecutive 15 boring minutes. So, Limak will watch the w...
500
[ { "input": "3\n7 20 88", "output": "35" }, { "input": "9\n16 20 30 40 50 60 70 80 90", "output": "15" }, { "input": "9\n15 20 30 40 50 60 70 80 90", "output": "90" }, { "input": "30\n6 11 12 15 22 24 30 31 32 33 34 35 40 42 44 45 47 50 53 54 57 58 63 67 75 77 79 81 83 88", ...
1,630,943,616
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
6,758,400
n = int(input()) t = list(map(int,input().split())) watchTime = 1 for i in t: if i-watchTime<15: watchTime=i else: break print(min(watchTime+15, 90))
Title: Bear and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak likes watching sports on TV. He is going to watch a game today. The game lasts 90 minutes and there are no breaks. Each minute can be either interesting or boring. If 15 consecutive minutes are boring then Lim...
```python n = int(input()) t = list(map(int,input().split())) watchTime = 1 for i in t: if i-watchTime<15: watchTime=i else: break print(min(watchTime+15, 90)) ```
0
0
none
none
none
0
[ "none" ]
null
null
A very brave explorer Petya once decided to explore Paris catacombs. Since Petya is not really experienced, his exploration is just walking through the catacombs. Catacombs consist of several rooms and bidirectional passages between some pairs of them. Some passages can connect a room to itself and since the passages ...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=2·105) — then number of notes in Petya's logbook. The second line contains *n* non-negative integers *t*1,<=*t*2,<=...,<=*t**n* (0<=≤<=*t**i*<=&lt;<=*i*) — notes in the logbook.
In the only line print a single integer — the minimum possible number of rooms in Paris catacombs.
[ "2\n0 0\n", "5\n0 1 0 1 3\n" ]
[ "2\n", "3\n" ]
In the first sample, sequence of rooms Petya visited could be, for example 1 → 1 → 2, 1 → 2 → 1 or 1 → 2 → 3. The minimum possible number of rooms is 2. In the second sample, the sequence could be 1 → 2 → 3 → 1 → 2 → 1.
0
[ { "input": "2\n0 0", "output": "2" }, { "input": "5\n0 1 0 1 3", "output": "3" }, { "input": "7\n0 1 0 0 0 0 0", "output": "6" }, { "input": "100\n0 0 0 0 0 0 1 4 4 0 2 2 4 1 7 1 11 0 8 4 12 12 3 0 3 2 2 4 3 9 1 5 4 6 9 14 6 2 4 18 7 7 19 11 20 13 17 16 0 34 2 6 12 27 9 4 29 ...
1,510,503,823
1,123
Python 3
WRONG_ANSWER
PRETESTS
2
46
0
n = int(input()) '''arr = [input() for i in range(n)] arr.sort() ans = []''' arr = list(map(int, input().split())) d = dict() d[0] = 1 for i in arr: if i in d: d[i] += 1 else: d[i] = 1 ans = 0 a = [d[i] for i in d] c = 0 for i in a: ans += i // 2 c += i % 2 print(ans + ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: A very brave explorer Petya once decided to explore Paris catacombs. Since Petya is not really experienced, his exploration is just walking through the catacombs. Catacombs consist of several rooms and bidirectional passages betw...
```python n = int(input()) '''arr = [input() for i in range(n)] arr.sort() ans = []''' arr = list(map(int, input().split())) d = dict() d[0] = 1 for i in arr: if i in d: d[i] += 1 else: d[i] = 1 ans = 0 a = [d[i] for i in d] c = 0 for i in a: ans += i // 2 c += i % 2 pr...
0
53
C
Little Frog
PROGRAMMING
1,200
[ "constructive algorithms" ]
C. Little Frog
2
256
Once upon a time a little frog whose name was Vasya decided to travel around his home swamp. Overall there are *n* mounds on the swamp, located on one line. The distance between the neighboring mounds is one meter. Vasya wants to visit all the mounds in one day; besides, he wants to visit each one exactly once. For tha...
The single line contains a number *n* (1<=≤<=*n*<=≤<=104) which is the number of mounds.
Print *n* integers *p**i* (1<=≤<=*p**i*<=≤<=*n*) which are the frog's route plan. - All the *p**i*'s should be mutually different. - All the |*p**i*–*p**i*<=+<=1|'s should be mutually different (1<=≤<=*i*<=≤<=*n*<=-<=1). If there are several solutions, output any.
[ "2\n", "3\n" ]
[ "1 2 ", "1 3 2 " ]
none
1,500
[ { "input": "2", "output": "1 2 " }, { "input": "3", "output": "1 3 2 " }, { "input": "4", "output": "1 4 2 3 " }, { "input": "5", "output": "1 5 2 4 3 " }, { "input": "6", "output": "1 6 2 5 3 4 " }, { "input": "1", "output": "1 " }, { "inp...
1,681,303,212
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
60
0
n = int(input()) route = [1] left, right = 1, n for i in range(n-1): if i % 2 == 0: left += 1 route.append(left) else: right -= 1 route.append(right) print(*route)
Title: Little Frog Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once upon a time a little frog whose name was Vasya decided to travel around his home swamp. Overall there are *n* mounds on the swamp, located on one line. The distance between the neighboring mounds is one meter. Vasya wants ...
```python n = int(input()) route = [1] left, right = 1, n for i in range(n-1): if i % 2 == 0: left += 1 route.append(left) else: right -= 1 route.append(right) print(*route) ```
0
552
B
Vanya and Books
PROGRAMMING
1,200
[ "implementation", "math" ]
null
null
Vanya got an important task — he should enumerate books in the library and label each book with its number. Each of the *n* books should be assigned with a number from 1 to *n*. Naturally, distinct books should be assigned distinct numbers. Vanya wants to know how many digits he will have to write down as he labels th...
The first line contains integer *n* (1<=≤<=*n*<=≤<=109) — the number of books in the library.
Print the number of digits needed to number all the books.
[ "13\n", "4\n" ]
[ "17\n", "4\n" ]
Note to the first test. The books get numbers 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, which totals to 17 digits. Note to the second sample. The books get numbers 1, 2, 3, 4, which totals to 4 digits.
1,000
[ { "input": "13", "output": "17" }, { "input": "4", "output": "4" }, { "input": "100", "output": "192" }, { "input": "99", "output": "189" }, { "input": "1000000000", "output": "8888888899" }, { "input": "1000000", "output": "5888896" }, { "...
1,498,710,712
2,147,483,647
Python 3
OK
TESTS
55
62
5,529,600
import math n = int(input()) digits = 0 a = int(math.log10(n)) + 1 for x in range(1, a): digits += 10 ** (x - 1) * 9 * x digits += (n - 10 ** (a - 1) + 1) * a print(digits)
Title: Vanya and Books Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya got an important task — he should enumerate books in the library and label each book with its number. Each of the *n* books should be assigned with a number from 1 to *n*. Naturally, distinct books should be assig...
```python import math n = int(input()) digits = 0 a = int(math.log10(n)) + 1 for x in range(1, a): digits += 10 ** (x - 1) * 9 * x digits += (n - 10 ** (a - 1) + 1) * a print(digits) ```
3
967
A
Mind the Gap
PROGRAMMING
1,100
[ "implementation" ]
null
null
These days Arkady works as an air traffic controller at a large airport. He controls a runway which is usually used for landings only. Thus, he has a schedule of planes that are landing in the nearest future, each landing lasts $1$ minute. He was asked to insert one takeoff in the schedule. The takeoff takes $1$ minut...
The first line of input contains two integers $n$ and $s$ ($1 \le n \le 100$, $1 \le s \le 60$) — the number of landings on the schedule and the minimum allowed time (in minutes) between a landing and a takeoff. Each of next $n$ lines contains two integers $h$ and $m$ ($0 \le h \le 23$, $0 \le m \le 59$) — the time, i...
Print two integers $h$ and $m$ — the hour and the minute from the current moment of the earliest time Arkady can insert the takeoff.
[ "6 60\n0 0\n1 20\n3 21\n5 0\n19 30\n23 40\n", "16 50\n0 30\n1 20\n3 0\n4 30\n6 10\n7 50\n9 30\n11 10\n12 50\n14 30\n16 10\n17 50\n19 30\n21 10\n22 50\n23 59\n", "3 17\n0 30\n1 0\n12 0\n" ]
[ "6 1\n", "24 50\n", "0 0\n" ]
In the first example note that there is not enough time between 1:20 and 3:21, because each landing and the takeoff take one minute. In the second example there is no gaps in the schedule, so Arkady can only add takeoff after all landings. Note that it is possible that one should wait more than $24$ hours to insert th...
500
[ { "input": "6 60\n0 0\n1 20\n3 21\n5 0\n19 30\n23 40", "output": "6 1" }, { "input": "16 50\n0 30\n1 20\n3 0\n4 30\n6 10\n7 50\n9 30\n11 10\n12 50\n14 30\n16 10\n17 50\n19 30\n21 10\n22 50\n23 59", "output": "24 50" }, { "input": "3 17\n0 30\n1 0\n12 0", "output": "0 0" }, { ...
1,525,012,591
4,891
Python 3
WRONG_ANSWER
TESTS
7
77
7,065,600
n,s=map(int,input().split()) arr=[] for i in range(n): a,b=map(int,input().split()) arr.append(a*60+b) if arr[0]>=s: print(0,0) else: flag=0 k=1 while k<len(arr): if (arr[k]-arr[k-1])//2>s: print((arr[k-1]+s+1)//60,(arr[k-1]+s+1)%60) flag=1 ...
Title: Mind the Gap Time Limit: None seconds Memory Limit: None megabytes Problem Description: These days Arkady works as an air traffic controller at a large airport. He controls a runway which is usually used for landings only. Thus, he has a schedule of planes that are landing in the nearest future, each landing ...
```python n,s=map(int,input().split()) arr=[] for i in range(n): a,b=map(int,input().split()) arr.append(a*60+b) if arr[0]>=s: print(0,0) else: flag=0 k=1 while k<len(arr): if (arr[k]-arr[k-1])//2>s: print((arr[k-1]+s+1)//60,(arr[k-1]+s+1)%60) flag=1...
0
915
F
Imbalance Value of a Tree
PROGRAMMING
2,400
[ "data structures", "dsu", "graphs", "trees" ]
null
null
You are given a tree *T* consisting of *n* vertices. A number is written on each vertex; the number written on vertex *i* is *a**i*. Let's denote the function *I*(*x*,<=*y*) as the difference between maximum and minimum value of *a**i* on a simple path connecting vertices *x* and *y*. Your task is to calculate .
The first line contains one integer number *n* (1<=≤<=*n*<=≤<=106) — the number of vertices in the tree. The second line contains *n* integer numbers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=106) — the numbers written on the vertices. Then *n*<=-<=1 lines follow. Each line contains two integers *x* and *y* denoting ...
Print one number equal to .
[ "4\n2 2 3 1\n1 2\n1 3\n1 4\n" ]
[ "6\n" ]
none
0
[ { "input": "4\n2 2 3 1\n1 2\n1 3\n1 4", "output": "6" } ]
1,683,256,605
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
93
2,867,200
# Problem: F. Imbalance Value of a Tree # Contest: Codeforces - Educational Codeforces Round 36 (Rated for Div. 2) # URL: https://codeforces.com/problemset/problem/915/F # Memory Limit: 256 MB # Time Limit: 4000 ms import sys import bisect import random import io, os from bisect import * from collections im...
Title: Imbalance Value of a Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a tree *T* consisting of *n* vertices. A number is written on each vertex; the number written on vertex *i* is *a**i*. Let's denote the function *I*(*x*,<=*y*) as the difference between maximum a...
```python # Problem: F. Imbalance Value of a Tree # Contest: Codeforces - Educational Codeforces Round 36 (Rated for Div. 2) # URL: https://codeforces.com/problemset/problem/915/F # Memory Limit: 256 MB # Time Limit: 4000 ms import sys import bisect import random import io, os from bisect import * from coll...
0
55
B
Smallest number
PROGRAMMING
1,600
[ "brute force" ]
B. Smallest number
2
256
Recently, Vladimir got bad mark in algebra again. To avoid such unpleasant events in future he decided to train his arithmetic skills. He wrote four integer numbers *a*, *b*, *c*, *d* on the blackboard. During each of the next three minutes he took two numbers from the blackboard (not necessarily adjacent) and replaced...
First line contains four integers separated by space: 0<=≤<=*a*,<=*b*,<=*c*,<=*d*<=≤<=1000 — the original numbers. Second line contains three signs ('+' or '*' each) separated by space — the sequence of the operations in the order of performing. ('+' stands for addition, '*' — multiplication)
Output one integer number — the minimal result which can be obtained. Please, do not use %lld specificator to read or write 64-bit integers in C++. It is preffered to use cin (also you may use %I64d).
[ "1 1 1 1\n+ + *\n", "2 2 2 2\n* * +\n", "1 2 3 4\n* + +\n" ]
[ "3\n", "8\n", "9\n" ]
none
1,000
[ { "input": "1 1 1 1\n+ + *", "output": "3" }, { "input": "2 2 2 2\n* * +", "output": "8" }, { "input": "1 2 3 4\n* + +", "output": "9" }, { "input": "15 1 3 1\n* * +", "output": "18" }, { "input": "8 1 7 14\n+ + +", "output": "30" }, { "input": "7 17 3...
1,630,696,335
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
92
6,963,200
a,b,c,d=map(int,input().split()) p,q,r=map(str,input().split()) plus=0 if p=="+": plus+=1 if q=="+": plus+=1 if r=="+": plus+=1 if plus==3: print(a+b+c+d) elif plus==1: print(min(a*b*c +d,a*b*d+c,a*c*d +b ,b*c*d +a,a*b+c*d,a*c+b*d,a*d+b*c)) elif plus==2: s=a+b+c+d print(min((s...
Title: Smallest number Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Recently, Vladimir got bad mark in algebra again. To avoid such unpleasant events in future he decided to train his arithmetic skills. He wrote four integer numbers *a*, *b*, *c*, *d* on the blackboard. During each of the n...
```python a,b,c,d=map(int,input().split()) p,q,r=map(str,input().split()) plus=0 if p=="+": plus+=1 if q=="+": plus+=1 if r=="+": plus+=1 if plus==3: print(a+b+c+d) elif plus==1: print(min(a*b*c +d,a*b*d+c,a*c*d +b ,b*c*d +a,a*b+c*d,a*c+b*d,a*d+b*c)) elif plus==2: s=a+b+c+d pr...
0
304
A
Pythagorean Theorem II
PROGRAMMING
1,200
[ "brute force", "math" ]
null
null
In mathematics, the Pythagorean theorem — is a relation in Euclidean geometry among the three sides of a right-angled triangle. In terms of areas, it states: In any right-angled triangle, the area of the square whose side is the hypotenuse (the side opposite the right angle) is equal to the sum of the areas of the s...
The only line contains one integer *n* (1<=≤<=*n*<=≤<=104) as we mentioned above.
Print a single integer — the answer to the problem.
[ "5\n", "74\n" ]
[ "1\n", "35\n" ]
none
500
[ { "input": "5", "output": "1" }, { "input": "74", "output": "35" }, { "input": "1000", "output": "881" }, { "input": "586", "output": "472" }, { "input": "2", "output": "0" }, { "input": "362", "output": "258" }, { "input": "778", "outp...
1,583,598,286
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
186
409,600
''' Auther: ghoshashis545 Ashis Ghosh college: jalpaiguri Govt Enggineering College Date:07/03/2020 ''' from math import ceil,sqrt,gcd,log,floor from collections import deque def ii(): return int(input()) def si(): return input() def mi(): return map(int,input().strip().split(" ")) def li(): retur...
Title: Pythagorean Theorem II Time Limit: None seconds Memory Limit: None megabytes Problem Description: In mathematics, the Pythagorean theorem — is a relation in Euclidean geometry among the three sides of a right-angled triangle. In terms of areas, it states: In any right-angled triangle, the area of the squar...
```python ''' Auther: ghoshashis545 Ashis Ghosh college: jalpaiguri Govt Enggineering College Date:07/03/2020 ''' from math import ceil,sqrt,gcd,log,floor from collections import deque def ii(): return int(input()) def si(): return input() def mi(): return map(int,input().strip().split(" ")) def l...
0
148
A
Insomnia cure
PROGRAMMING
800
[ "constructive algorithms", "implementation", "math" ]
null
null
«One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entertained herself at best she could. Tonight she imagined that all dragons were here to steal her, and ...
Input data contains integer numbers *k*,<=*l*,<=*m*,<=*n* and *d*, each number in a separate line (1<=≤<=*k*,<=*l*,<=*m*,<=*n*<=≤<=10, 1<=≤<=*d*<=≤<=105).
Output the number of damaged dragons.
[ "1\n2\n3\n4\n12\n", "2\n3\n4\n5\n24\n" ]
[ "12\n", "17\n" ]
In the first case every first dragon got punched with a frying pan. Some of the dragons suffered from other reasons as well, but the pan alone would be enough. In the second case dragons 1, 7, 11, 13, 17, 19 and 23 escaped unharmed.
1,000
[ { "input": "1\n2\n3\n4\n12", "output": "12" }, { "input": "2\n3\n4\n5\n24", "output": "17" }, { "input": "1\n1\n1\n1\n100000", "output": "100000" }, { "input": "10\n9\n8\n7\n6", "output": "0" }, { "input": "8\n4\n4\n3\n65437", "output": "32718" }, { "i...
1,689,669,469
2,147,483,647
Python 3
OK
TESTS
40
124
0
def ok(ak, d): for k in ak: if d < k: continue if d % k == 0: return True return False ak = [int(input()), int(input()), int(input()), int(input())] d = int(input()) s = 0 for i in range(1, d + 1): if ok(ak, i): s += 1 print(s)
Title: Insomnia cure Time Limit: None seconds Memory Limit: None megabytes Problem Description: «One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entert...
```python def ok(ak, d): for k in ak: if d < k: continue if d % k == 0: return True return False ak = [int(input()), int(input()), int(input()), int(input())] d = int(input()) s = 0 for i in range(1, d + 1): if ok(ak, i): s += 1 print(s) ```
3
779
C
Dishonest Sellers
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "sortings" ]
null
null
Igor found out discounts in a shop and decided to buy *n* items. Discounts at the store will last for a week and Igor knows about each item that its price now is *a**i*, and after a week of discounts its price will be *b**i*. Not all of sellers are honest, so now some products could be more expensive than after a week...
In the first line there are two positive integer numbers *n* and *k* (1<=≤<=*n*<=≤<=2·105, 0<=≤<=*k*<=≤<=*n*) — total number of items to buy and minimal number of items Igor wants to by right now. The second line contains sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=104) — prices of items during d...
Print the minimal amount of money Igor will spend to buy all *n* items. Remember, he should buy at least *k* items right now.
[ "3 1\n5 4 6\n3 1 5\n", "5 3\n3 4 7 10 3\n4 5 5 12 5\n" ]
[ "10\n", "25\n" ]
In the first example Igor should buy item 3 paying 6. But items 1 and 2 he should buy after a week. He will pay 3 and 1 for them. So in total he will pay 6 + 3 + 1 = 10. In the second example Igor should buy right now items 1, 2, 4 and 5, paying for them 3, 4, 10 and 3, respectively. Item 3 he should buy after a week ...
1,000
[ { "input": "3 1\n5 4 6\n3 1 5", "output": "10" }, { "input": "5 3\n3 4 7 10 3\n4 5 5 12 5", "output": "25" }, { "input": "1 0\n9\n8", "output": "8" }, { "input": "2 0\n4 10\n1 2", "output": "3" }, { "input": "4 2\n19 5 17 13\n3 18 8 10", "output": "29" }, ...
1,488,268,260
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
4,608,000
n,k = map(int, input().split()) a=list(map(int, input().split())) b=list(map(int, input().split())) diff=[] wants=[] res=0 z=0 for i in range(n): diff.append(b[i]-a[i]) for i in range(k): print(a) print(b) print(res) z=diff.index(min(diff)) if min(diff)>=0: res+=a[z] a.pop(z) b.pop(z) di...
Title: Dishonest Sellers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Igor found out discounts in a shop and decided to buy *n* items. Discounts at the store will last for a week and Igor knows about each item that its price now is *a**i*, and after a week of discounts its price will be...
```python n,k = map(int, input().split()) a=list(map(int, input().split())) b=list(map(int, input().split())) diff=[] wants=[] res=0 z=0 for i in range(n): diff.append(b[i]-a[i]) for i in range(k): print(a) print(b) print(res) z=diff.index(min(diff)) if min(diff)>=0: res+=a[z] a.pop(z) b.po...
0
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,584,617,848
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
93
307,200
s = input() visited = { 'h':0, 'e':0, 'l':0, 'o':0 } count = 0 said_hello = True for i in s: if i == 'h' and visited[i] != 1: count += 1 visited[i] += 1 if count != 1: said_hello = False break if i == 'e' and visited[i] != 1: ...
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python s = input() visited = { 'h':0, 'e':0, 'l':0, 'o':0 } count = 0 said_hello = True for i in s: if i == 'h' and visited[i] != 1: count += 1 visited[i] += 1 if count != 1: said_hello = False break if i == 'e' and visited[i] !=...
0
245
A
System Administrator
PROGRAMMING
800
[ "implementation" ]
null
null
Polycarpus is a system administrator. There are two servers under his strict guidance — *a* and *b*. To stay informed about the servers' performance, Polycarpus executes commands "ping a" and "ping b". Each ping command sends exactly ten packets to the server specified in the argument of the command. Executing a progra...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=1000) — the number of commands Polycarpus has fulfilled. Each of the following *n* lines contains three integers — the description of the commands. The *i*-th of these lines contains three space-separated integers *t**i*, *x**i*, *y**i* (1<=≤<=*t**i*<=≤<=2; *x...
In the first line print string "LIVE" (without the quotes) if server *a* is "alive", otherwise print "DEAD" (without the quotes). In the second line print the state of server *b* in the similar format.
[ "2\n1 5 5\n2 6 4\n", "3\n1 0 10\n2 0 10\n1 10 0\n" ]
[ "LIVE\nLIVE\n", "LIVE\nDEAD\n" ]
Consider the first test case. There 10 packets were sent to server *a*, 5 of them reached it. Therefore, at least half of all packets sent to this server successfully reached it through the network. Overall there were 10 packets sent to server *b*, 6 of them reached it. Therefore, at least half of all packets sent to t...
0
[ { "input": "2\n1 5 5\n2 6 4", "output": "LIVE\nLIVE" }, { "input": "3\n1 0 10\n2 0 10\n1 10 0", "output": "LIVE\nDEAD" }, { "input": "10\n1 3 7\n2 4 6\n1 2 8\n2 5 5\n2 10 0\n2 10 0\n1 8 2\n2 2 8\n2 10 0\n1 1 9", "output": "DEAD\nLIVE" }, { "input": "11\n1 8 2\n1 6 4\n1 9 1\n1...
1,578,863,238
2,147,483,647
Python 3
OK
TESTS
13
218
307,200
n=int(input()) a,b=[0,0],[0,0] for i in range(n): s=list(map(int, input().split())) if s[0]==1: a[0]+=s[1] a[1]+=s[2] else: b[0]+=s[1] b[1]+=s[2] if a[0]>=a[1]: print("LIVE") else: print("DEAD") if b[0]>=b[1]: print("LIVE") else: print("DEAD")
Title: System Administrator Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus is a system administrator. There are two servers under his strict guidance — *a* and *b*. To stay informed about the servers' performance, Polycarpus executes commands "ping a" and "ping b". Each ping co...
```python n=int(input()) a,b=[0,0],[0,0] for i in range(n): s=list(map(int, input().split())) if s[0]==1: a[0]+=s[1] a[1]+=s[2] else: b[0]+=s[1] b[1]+=s[2] if a[0]>=a[1]: print("LIVE") else: print("DEAD") if b[0]>=b[1]: print("LIVE") else: print("DEAD") ```
3
676
C
Vasya and String
PROGRAMMING
1,500
[ "binary search", "dp", "strings", "two pointers" ]
null
null
High school student Vasya got a string of length *n* as a birthday present. This string consists of letters 'a' and 'b' only. Vasya denotes beauty of the string as the maximum length of a substring (consecutive subsequence) consisting of equal letters. Vasya can change no more than *k* characters of the original strin...
The first line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=100<=000,<=0<=≤<=*k*<=≤<=*n*) — the length of the string and the maximum number of characters to change. The second line contains the string, consisting of letters 'a' and 'b' only.
Print the only integer — the maximum beauty of the string Vasya can achieve by changing no more than *k* characters.
[ "4 2\nabba\n", "8 1\naabaabaa\n" ]
[ "4\n", "5\n" ]
In the first sample, Vasya can obtain both strings "aaaa" and "bbbb". In the second sample, the optimal answer is obtained with the string "aaaaabaa" or with the string "aabaaaaa".
1,500
[ { "input": "4 2\nabba", "output": "4" }, { "input": "8 1\naabaabaa", "output": "5" }, { "input": "1 0\na", "output": "1" }, { "input": "1 1\nb", "output": "1" }, { "input": "1 0\nb", "output": "1" }, { "input": "1 1\na", "output": "1" }, { ...
1,692,174,349
2,147,483,647
Python 3
OK
TESTS
117
93
102,400
def max_beauty(n, k, s): max_beauty = 0 window_start = 0 a_count = 0 b_count = 0 for window_end in range(n): if s[window_end] == 'a': a_count += 1 else: b_count += 1 # Calculate the length of the current window window_length = window_...
Title: Vasya and String Time Limit: None seconds Memory Limit: None megabytes Problem Description: High school student Vasya got a string of length *n* as a birthday present. This string consists of letters 'a' and 'b' only. Vasya denotes beauty of the string as the maximum length of a substring (consecutive subsequ...
```python def max_beauty(n, k, s): max_beauty = 0 window_start = 0 a_count = 0 b_count = 0 for window_end in range(n): if s[window_end] == 'a': a_count += 1 else: b_count += 1 # Calculate the length of the current window window_length...
3
112
A
Petya and Strings
PROGRAMMING
800
[ "implementation", "strings" ]
A. Petya and Strings
2
256
Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings lexicographically. The letters' case does not matter, that is an uppercase letter is considered equivalent to the corr...
Each of the first two lines contains a bought string. The strings' lengths range from 1 to 100 inclusive. It is guaranteed that the strings are of the same length and also consist of uppercase and lowercase Latin letters.
If the first string is less than the second one, print "-1". If the second string is less than the first one, print "1". If the strings are equal, print "0". Note that the letters' case is not taken into consideration when the strings are compared.
[ "aaaa\naaaA\n", "abs\nAbz\n", "abcdefg\nAbCdEfF\n" ]
[ "0\n", "-1\n", "1\n" ]
If you want more formal information about the lexicographical order (also known as the "dictionary order" or "alphabetical order"), you can visit the following site: - http://en.wikipedia.org/wiki/Lexicographical_order
500
[ { "input": "aaaa\naaaA", "output": "0" }, { "input": "abs\nAbz", "output": "-1" }, { "input": "abcdefg\nAbCdEfF", "output": "1" }, { "input": "asadasdasd\nasdwasdawd", "output": "-1" }, { "input": "aslkjlkasdd\nasdlkjdajwi", "output": "1" }, { "input":...
1,696,072,577
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
92
0
LowerFirst=input("Enter the first String:") LowerSecond=input("Enter the second String:") f=LowerFirst.lower() s=LowerSecond.lower() if f>s: print(1) elif f<s: print(-1) elif f==s: print(0)
Title: Petya and Strings Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings lexicographically. ...
```python LowerFirst=input("Enter the first String:") LowerSecond=input("Enter the second String:") f=LowerFirst.lower() s=LowerSecond.lower() if f>s: print(1) elif f<s: print(-1) elif f==s: print(0) ```
0
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,575,443,871
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
155
409,600
from collections import OrderedDict n=input() s="".join(OrderedDict.fromkeys(n)) if("helo" in s): 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 from collections import OrderedDict n=input() s="".join(OrderedDict.fromkeys(n)) if("helo" in s): print("YES") else: print("NO") ```
0
675
B
Restoring Painting
PROGRAMMING
1,400
[ "brute force", "constructive algorithms", "math" ]
null
null
Vasya works as a watchman in the gallery. Unfortunately, one of the most expensive paintings was stolen while he was on duty. He doesn't want to be fired, so he has to quickly restore the painting. He remembers some facts about it. - The painting is a square 3<=×<=3, each cell contains a single integer from 1 to *n*,...
The first line of the input contains five integers *n*, *a*, *b*, *c* and *d* (1<=≤<=*n*<=≤<=100<=000, 1<=≤<=*a*,<=*b*,<=*c*,<=*d*<=≤<=*n*) — maximum possible value of an integer in the cell and four integers that Vasya remembers.
Print one integer — the number of distinct valid squares.
[ "2 1 1 1 2\n", "3 3 1 2 3\n" ]
[ "2\n", "6\n" ]
Below are all the possible paintings for the first sample. <img class="tex-graphics" src="https://espresso.codeforces.com/c4c53d4e7b6814d8aad7b72604b6089d61dadb48.png" style="max-width: 100.0%;max-height: 100.0%;"/> <img class="tex-graphics" src="https://espresso.codeforces.com/46a6ad6a5d3db202f3779b045b9dc77fc2348cf1....
1,000
[ { "input": "2 1 1 1 2", "output": "2" }, { "input": "3 3 1 2 3", "output": "6" }, { "input": "1 1 1 1 1", "output": "1" }, { "input": "1000 522 575 426 445", "output": "774000" }, { "input": "99000 52853 14347 64237 88869", "output": "1296306000" }, { ...
1,600,831,695
2,147,483,647
Python 3
OK
TESTS
58
124
307,200
#!/usr/bin/env python3 (n, a, b, c, d) = input().split() n = int(n) a = int(a) b = int(b) c = int(c) d = int(d) diff2 = b - c diff4 = a - d diff5 = a + b - c - d (lower, _, upper) = sorted((diff2, diff4, diff5)) lower_bound = 1 - min(0, lower) upper_bound = n - max(0, upper) if lower_bound > upper_bound: print(...
Title: Restoring Painting Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya works as a watchman in the gallery. Unfortunately, one of the most expensive paintings was stolen while he was on duty. He doesn't want to be fired, so he has to quickly restore the painting. He remembers some ...
```python #!/usr/bin/env python3 (n, a, b, c, d) = input().split() n = int(n) a = int(a) b = int(b) c = int(c) d = int(d) diff2 = b - c diff4 = a - d diff5 = a + b - c - d (lower, _, upper) = sorted((diff2, diff4, diff5)) lower_bound = 1 - min(0, lower) upper_bound = n - max(0, upper) if lower_bound > upper_bound: ...
3
18
C
Stripe
PROGRAMMING
1,200
[ "data structures", "implementation" ]
C. Stripe
2
64
Once Bob took a paper stripe of *n* squares (the height of the stripe is 1 square). In each square he wrote an integer number, possibly negative. He became interested in how many ways exist to cut this stripe into two pieces so that the sum of numbers from one piece is equal to the sum of numbers from the other piece, ...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=105) — amount of squares in the stripe. The second line contains *n* space-separated numbers — they are the numbers written in the squares of the stripe. These numbers are integer and do not exceed 10000 in absolute value.
Output the amount of ways to cut the stripe into two non-empty pieces so that the sum of numbers from one piece is equal to the sum of numbers from the other piece. Don't forget that it's allowed to cut the stripe along the squares' borders only.
[ "9\n1 5 -6 7 9 -16 0 -2 2\n", "3\n1 1 1\n", "2\n0 0\n" ]
[ "3\n", "0\n", "1\n" ]
none
0
[ { "input": "9\n1 5 -6 7 9 -16 0 -2 2", "output": "3" }, { "input": "3\n1 1 1", "output": "0" }, { "input": "2\n0 0", "output": "1" }, { "input": "4\n100 1 10 111", "output": "1" }, { "input": "10\n0 4 -3 0 -2 2 -3 -3 2 5", "output": "3" }, { "input": "...
1,583,585,514
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
186
307,200
import sys input = sys.stdin.readline nums = list(map(int, input().split())) params = list(map(int, input().split())) refAns = int(sum(params)/2) result = 0 if len(set(params)) == 1: result = len(params) - 1 elif int(sum(params)) % 2 == 0: for i in range(nums[0]): if sum(params[:i+1]...
Title: Stripe Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Once Bob took a paper stripe of *n* squares (the height of the stripe is 1 square). In each square he wrote an integer number, possibly negative. He became interested in how many ways exist to cut this stripe into two pieces so that ...
```python import sys input = sys.stdin.readline nums = list(map(int, input().split())) params = list(map(int, input().split())) refAns = int(sum(params)/2) result = 0 if len(set(params)) == 1: result = len(params) - 1 elif int(sum(params)) % 2 == 0: for i in range(nums[0]): if sum(pa...
0
761
A
Dasha and Stairs
PROGRAMMING
1,000
[ "brute force", "constructive algorithms", "implementation", "math" ]
null
null
On her way to programming school tiger Dasha faced her first test — a huge staircase! The steps were numbered from one to infinity. As we know, tigers are very fond of all striped things, it is possible that it has something to do with their color. So on some interval of her way she calculated two values — the number ...
In the only line you are given two integers *a*, *b* (0<=≤<=*a*,<=*b*<=≤<=100) — the number of even and odd steps, accordingly.
In the only line print "YES", if the interval of steps described above exists, and "NO" otherwise.
[ "2 3\n", "3 1\n" ]
[ "YES\n", "NO\n" ]
In the first example one of suitable intervals is from 1 to 5. The interval contains two even steps — 2 and 4, and three odd: 1, 3 and 5.
500
[ { "input": "2 3", "output": "YES" }, { "input": "3 1", "output": "NO" }, { "input": "5 4", "output": "YES" }, { "input": "9 9", "output": "YES" }, { "input": "85 95", "output": "NO" }, { "input": "0 1", "output": "YES" }, { "input": "89 25"...
1,509,368,331
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n,m = intput().strip().split() n = int(n) m = int(m) if n = 0 and m = 0: print('NO') elif n-m > 1 or m-n > 1: print('NO') else: print('YES')
Title: Dasha and Stairs Time Limit: None seconds Memory Limit: None megabytes Problem Description: On her way to programming school tiger Dasha faced her first test — a huge staircase! The steps were numbered from one to infinity. As we know, tigers are very fond of all striped things, it is possible that it has so...
```python n,m = intput().strip().split() n = int(n) m = int(m) if n = 0 and m = 0: print('NO') elif n-m > 1 or m-n > 1: print('NO') else: print('YES') ```
-1
467
A
George and Accommodation
PROGRAMMING
800
[ "implementation" ]
null
null
George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into a dormitory. George and Alex want to live in the same room. The dormitory has *n* rooms in total. At the moment the *i*-th room has *p**i* peopl...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of rooms. The *i*-th of the next *n* lines contains two integers *p**i* and *q**i* (0<=≤<=*p**i*<=≤<=*q**i*<=≤<=100) — the number of people who already live in the *i*-th room and the room's capacity.
Print a single integer — the number of rooms where George and Alex can move in.
[ "3\n1 1\n2 2\n3 3\n", "3\n1 10\n0 10\n10 10\n" ]
[ "0\n", "2\n" ]
none
500
[ { "input": "3\n1 1\n2 2\n3 3", "output": "0" }, { "input": "3\n1 10\n0 10\n10 10", "output": "2" }, { "input": "2\n36 67\n61 69", "output": "2" }, { "input": "3\n21 71\n10 88\n43 62", "output": "3" }, { "input": "3\n1 2\n2 3\n3 4", "output": "0" }, { "...
1,694,245,141
2,147,483,647
Python 3
OK
TESTS
27
31
0
t=int(input()) k=0 for i in range(t): p,q=map(int,input().split()) if(q-p>=2): k=k+1 print(k)
Title: George and Accommodation Time Limit: None seconds Memory Limit: None megabytes Problem Description: George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into a dormitory. George and Alex want ...
```python t=int(input()) k=0 for i in range(t): p,q=map(int,input().split()) if(q-p>=2): k=k+1 print(k) ```
3
0
none
none
none
0
[ "none" ]
null
null
Vasya and Petya are playing a simple game. Vasya thought of number *x* between 1 and *n*, and Petya tries to guess the number. Petya can ask questions like: "Is the unknown number divisible by number *y*?". The game is played by the following rules: first Petya asks all the questions that interest him (also, he can a...
A single line contains number *n* (1<=≤<=*n*<=≤<=103).
Print the length of the sequence of questions *k* (0<=≤<=*k*<=≤<=*n*), followed by *k* numbers — the questions *y**i* (1<=≤<=*y**i*<=≤<=*n*). If there are several correct sequences of questions of the minimum length, you are allowed to print any of them.
[ "4\n", "6\n" ]
[ "3\n2 4 3 \n", "4\n2 4 3 5 \n" ]
The sequence from the answer to the first sample test is actually correct. If the unknown number is not divisible by one of the sequence numbers, it is equal to 1. If the unknown number is divisible by 4, it is 4. If the unknown number is divisible by 3, then the unknown number is 3. Otherwise, it is equal to 2. Th...
0
[ { "input": "4", "output": "3\n2 4 3 " }, { "input": "6", "output": "4\n2 4 3 5 " }, { "input": "1", "output": "0" }, { "input": "15", "output": "9\n2 4 8 3 9 5 7 11 13 " }, { "input": "19", "output": "12\n2 4 8 16 3 9 5 7 11 13 17 19 " }, { "input": "2...
1,688,802,442
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
62
0
import sys import math def get_sieve(n): # n * log log n primes = set() sieve = [1] * (n + 1) sieve[0] = sieve[1] = 0 for i in range(2, n + 1): if sieve[i]: for j in range(i * i, n + 1, i): sieve[j] = 0 primes.add(i) return primes ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya and Petya are playing a simple game. Vasya thought of number *x* between 1 and *n*, and Petya tries to guess the number. Petya can ask questions like: "Is the unknown number divisible by number *y*?". The game is played by...
```python import sys import math def get_sieve(n): # n * log log n primes = set() sieve = [1] * (n + 1) sieve[0] = sieve[1] = 0 for i in range(2, n + 1): if sieve[i]: for j in range(i * i, n + 1, i): sieve[j] = 0 primes.add(i) return pr...
0
46
A
Ball Game
PROGRAMMING
800
[ "brute force", "implementation" ]
A. Ball Game
2
256
A kindergarten teacher Natalia Pavlovna has invented a new ball game. This game not only develops the children's physique, but also teaches them how to count. The game goes as follows. Kids stand in circle. Let's agree to think of the children as numbered with numbers from 1 to *n* clockwise and the child number 1 is...
The first line contains integer *n* (2<=≤<=*n*<=≤<=100) which indicates the number of kids in the circle.
In the single line print *n*<=-<=1 numbers which are the numbers of children who will get the ball after each throw. Separate the numbers by spaces.
[ "10\n", "3\n" ]
[ "2 4 7 1 6 2 9 7 6\n", "2 1\n" ]
none
0
[ { "input": "10", "output": "2 4 7 1 6 2 9 7 6" }, { "input": "3", "output": "2 1" }, { "input": "4", "output": "2 4 3" }, { "input": "5", "output": "2 4 2 1" }, { "input": "6", "output": "2 4 1 5 4" }, { "input": "7", "output": "2 4 7 4 2 1" }, ...
1,466,869,048
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
92
0
a=int(input()) v=a g=1 i=1 while i<v: g=g+i b=g%10 i+=1 print(b," ")
Title: Ball Game Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A kindergarten teacher Natalia Pavlovna has invented a new ball game. This game not only develops the children's physique, but also teaches them how to count. The game goes as follows. Kids stand in circle. Let's agree to think...
```python a=int(input()) v=a g=1 i=1 while i<v: g=g+i b=g%10 i+=1 print(b," ") ```
0
278
B
New Problem
PROGRAMMING
1,500
[ "brute force", "strings" ]
null
null
Coming up with a new problem isn't as easy as many people think. Sometimes it is hard enough to name it. We'll consider a title original if it doesn't occur as a substring in any titles of recent Codeforces problems. You've got the titles of *n* last problems — the strings, consisting of lowercase English letters. Yo...
The first line contains integer *n* (1<=≤<=*n*<=≤<=30) — the number of titles you've got to consider. Then follow *n* problem titles, one per line. Each title only consists of lowercase English letters (specifically, it doesn't contain any spaces) and has the length from 1 to 20, inclusive.
Print a string, consisting of lowercase English letters — the lexicographically minimum shortest original title.
[ "5\nthreehorses\ngoodsubstrings\nsecret\nprimematrix\nbeautifulyear\n", "4\naa\nbdefghijklmn\nopqrstuvwxyz\nc\n" ]
[ "j\n", "ab\n" ]
In the first sample the first 9 letters of the English alphabet (a, b, c, d, e, f, g, h, i) occur in the problem titles, so the answer is letter j. In the second sample the titles contain 26 English letters, so the shortest original title cannot have length 1. Title aa occurs as a substring in the first title.
1,000
[ { "input": "5\nthreehorses\ngoodsubstrings\nsecret\nprimematrix\nbeautifulyear", "output": "j" }, { "input": "4\naa\nbdefghijklmn\nopqrstuvwxyz\nc", "output": "ab" }, { "input": "1\na", "output": "b" }, { "input": "1\nb", "output": "a" }, { "input": "1\nz", "o...
1,663,147,461
2,147,483,647
PyPy 3-64
OK
TESTS
33
154
2,252,800
import math def functie_divizori(numar): dictionar={} matrice=[] if numar==1: a=[1]*2 a.append(0) a.append(0) matrice.append(a) else: for j in range(1,math.floor(numar**(1/2))+1): # print("j=",j) if numar%j==0: tupleta=[] # print(dictionar) ...
Title: New Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: Coming up with a new problem isn't as easy as many people think. Sometimes it is hard enough to name it. We'll consider a title original if it doesn't occur as a substring in any titles of recent Codeforces problems. You'...
```python import math def functie_divizori(numar): dictionar={} matrice=[] if numar==1: a=[1]*2 a.append(0) a.append(0) matrice.append(a) else: for j in range(1,math.floor(numar**(1/2))+1): # print("j=",j) if numar%j==0: tupleta=[] # print(dictionar) ...
3
467
A
George and Accommodation
PROGRAMMING
800
[ "implementation" ]
null
null
George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into a dormitory. George and Alex want to live in the same room. The dormitory has *n* rooms in total. At the moment the *i*-th room has *p**i* peopl...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of rooms. The *i*-th of the next *n* lines contains two integers *p**i* and *q**i* (0<=≤<=*p**i*<=≤<=*q**i*<=≤<=100) — the number of people who already live in the *i*-th room and the room's capacity.
Print a single integer — the number of rooms where George and Alex can move in.
[ "3\n1 1\n2 2\n3 3\n", "3\n1 10\n0 10\n10 10\n" ]
[ "0\n", "2\n" ]
none
500
[ { "input": "3\n1 1\n2 2\n3 3", "output": "0" }, { "input": "3\n1 10\n0 10\n10 10", "output": "2" }, { "input": "2\n36 67\n61 69", "output": "2" }, { "input": "3\n21 71\n10 88\n43 62", "output": "3" }, { "input": "3\n1 2\n2 3\n3 4", "output": "0" }, { "...
1,694,238,356
2,147,483,647
Python 3
OK
TESTS
27
31
0
x=int(input()) c=0 for i in range(x): a,b=map(int,input().split()) if (b-a)>=2: c+=1 print(c)
Title: George and Accommodation Time Limit: None seconds Memory Limit: None megabytes Problem Description: George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into a dormitory. George and Alex want ...
```python x=int(input()) c=0 for i in range(x): a,b=map(int,input().split()) if (b-a)>=2: c+=1 print(c) ```
3
368
B
Sereja and Suffixes
PROGRAMMING
1,100
[ "data structures", "dp" ]
null
null
Sereja has an array *a*, consisting of *n* integers *a*1, *a*2, ..., *a**n*. The boy cannot sit and do nothing, he decided to study an array. Sereja took a piece of paper and wrote out *m* integers *l*1,<=*l*2,<=...,<=*l**m* (1<=≤<=*l**i*<=≤<=*n*). For each number *l**i* he wants to know how many distinct numbers are s...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=105). The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105) — the array elements. Next *m* lines contain integers *l*1,<=*l*2,<=...,<=*l**m*. The *i*-th line contains integer *l**i* (1<=≤<=*l**i*<=≤<=*n*).
Print *m* lines — on the *i*-th line print the answer to the number *l**i*.
[ "10 10\n1 2 3 4 1 2 3 4 100000 99999\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" ]
[ "6\n6\n6\n6\n6\n5\n4\n3\n2\n1\n" ]
none
1,000
[ { "input": "10 10\n1 2 3 4 1 2 3 4 100000 99999\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10", "output": "6\n6\n6\n6\n6\n5\n4\n3\n2\n1" }, { "input": "8 3\n8 6 4 3 4 2 4 8\n6\n4\n2", "output": "3\n4\n5" }, { "input": "7 10\n1 3 8 6 2 2 7\n4\n2\n6\n3\n4\n4\n6\n2\n7\n4", "output": "3\n5\n2\n4\n3\n3\...
1,668,066,341
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
10
46
4,915,200
# https://codeforces.com/problemset/problem/368/B n, m = map(int, input().split()) a = list(map(int, input().split())) buf = {1: len(set(a))} def func(i: int) -> int: if i in buf: return buf[i] pre = func(i-1) try: a.index(a[i-2], i-1) except ValueError: pre -= 1 buf[i] = p...
Title: Sereja and Suffixes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja has an array *a*, consisting of *n* integers *a*1, *a*2, ..., *a**n*. The boy cannot sit and do nothing, he decided to study an array. Sereja took a piece of paper and wrote out *m* integers *l*1,<=*l*2,<=......
```python # https://codeforces.com/problemset/problem/368/B n, m = map(int, input().split()) a = list(map(int, input().split())) buf = {1: len(set(a))} def func(i: int) -> int: if i in buf: return buf[i] pre = func(i-1) try: a.index(a[i-2], i-1) except ValueError: pre -= 1 ...
-1
344
A
Magnets
PROGRAMMING
800
[ "implementation" ]
null
null
Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn't need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a "plus") and negative (a "minus"). If two magnets are put together at a close distance, then the like poles will repel each other and the oppo...
The first line of the input contains an integer *n* (1<=≤<=*n*<=≤<=100000) — the number of magnets. Then *n* lines follow. The *i*-th line (1<=≤<=*i*<=≤<=*n*) contains either characters "01", if Mike put the *i*-th magnet in the "plus-minus" position, or characters "10", if Mike put the magnet in the "minus-plus" posit...
On the single line of the output print the number of groups of magnets.
[ "6\n10\n10\n10\n01\n10\n10\n", "4\n01\n01\n10\n10\n" ]
[ "3\n", "2\n" ]
The first testcase corresponds to the figure. The testcase has three groups consisting of three, one and two magnets. The second testcase has two groups, each consisting of two magnets.
500
[ { "input": "6\n10\n10\n10\n01\n10\n10", "output": "3" }, { "input": "4\n01\n01\n10\n10", "output": "2" }, { "input": "1\n10", "output": "1" }, { "input": "2\n01\n10", "output": "2" }, { "input": "2\n10\n10", "output": "1" }, { "input": "3\n10\n01\n10",...
1,694,542,263
2,147,483,647
Python 3
OK
TESTS
31
280
11,980,800
_list = [input() for _ in range(int(input()))] print(len([i for i in range(len(_list) - 1) if _list[i] != _list[i + 1]]) + 1)
Title: Magnets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn't need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a "plus") and negative (a "minus"). If two magnets...
```python _list = [input() for _ in range(int(input()))] print(len([i for i in range(len(_list) - 1) if _list[i] != _list[i + 1]]) + 1) ```
3
124
A
The number of positions
PROGRAMMING
1,000
[ "math" ]
null
null
Petr stands in line of *n* people, but he doesn't know exactly which position he occupies. He can say that there are no less than *a* people standing in front of him and no more than *b* people standing behind him. Find the number of different positions Petr can occupy.
The only line contains three integers *n*, *a* and *b* (0<=≤<=*a*,<=*b*<=&lt;<=*n*<=≤<=100).
Print the single number — the number of the sought positions.
[ "3 1 1\n", "5 2 3\n" ]
[ "2\n", "3\n" ]
The possible positions in the first sample are: 2 and 3 (if we number the positions starting with 1). In the second sample they are 3, 4 and 5.
500
[ { "input": "3 1 1", "output": "2" }, { "input": "5 2 3", "output": "3" }, { "input": "5 4 0", "output": "1" }, { "input": "6 5 5", "output": "1" }, { "input": "9 4 3", "output": "4" }, { "input": "11 4 6", "output": "7" }, { "input": "13 8 ...
1,653,751,459
2,147,483,647
Python 3
OK
TESTS
50
92
0
def pos(n,f,d): return n-max(f+1,n-b)+1; n,f,b=map(int,input().split(' ')) print(pos(n,f,b))
Title: The number of positions Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petr stands in line of *n* people, but he doesn't know exactly which position he occupies. He can say that there are no less than *a* people standing in front of him and no more than *b* people standing behind h...
```python def pos(n,f,d): return n-max(f+1,n-b)+1; n,f,b=map(int,input().split(' ')) print(pos(n,f,b)) ```
3
617
A
Elephant
PROGRAMMING
800
[ "math" ]
null
null
An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2, 3, 4 or 5 positions forward. Determine, what is the minimum number of steps he need to make ...
The first line of the input contains an integer *x* (1<=≤<=*x*<=≤<=1<=000<=000) — The coordinate of the friend's house.
Print the minimum number of steps that elephant needs to make to get from point 0 to point *x*.
[ "5\n", "12\n" ]
[ "1\n", "3\n" ]
In the first sample the elephant needs to make one step of length 5 to reach the point *x*. In the second sample the elephant can get to point *x* if he moves by 3, 5 and 4. There are other ways to get the optimal answer but the elephant cannot reach *x* in less than three moves.
500
[ { "input": "5", "output": "1" }, { "input": "12", "output": "3" }, { "input": "999999", "output": "200000" }, { "input": "41", "output": "9" }, { "input": "1000000", "output": "200000" }, { "input": "1", "output": "1" }, { "input": "2", ...
1,698,425,744
2,147,483,647
Python 3
OK
TESTS
34
46
0
x = int(input()) # Read the coordinate of the friend's house steps = (x + 4) // 5 # Calculate the minimum number of steps print(steps) # Output the minimum number of steps
Title: Elephant Time Limit: None seconds Memory Limit: None megabytes Problem Description: An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2...
```python x = int(input()) # Read the coordinate of the friend's house steps = (x + 4) // 5 # Calculate the minimum number of steps print(steps) # Output the minimum number of steps ```
3
653
A
Bear and Three Balls
PROGRAMMING
900
[ "brute force", "implementation", "sortings" ]
null
null
Limak is a little polar bear. He has *n* balls, the *i*-th ball has size *t**i*. Limak wants to give one ball to each of his three friends. Giving gifts isn't easy — there are two rules Limak must obey to make friends happy: - No two friends can get balls of the same size. - No two friends can get balls of sizes th...
The first line of the input contains one integer *n* (3<=≤<=*n*<=≤<=50) — the number of balls Limak has. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=1000) where *t**i* denotes the size of the *i*-th ball.
Print "YES" (without quotes) if Limak can choose three balls of distinct sizes, such that any two of them differ by no more than 2. Otherwise, print "NO" (without quotes).
[ "4\n18 55 16 17\n", "6\n40 41 43 44 44 44\n", "8\n5 972 3 4 1 4 970 971\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first sample, there are 4 balls and Limak is able to choose three of them to satisfy the rules. He must must choose balls with sizes 18, 16 and 17. In the second sample, there is no way to give gifts to three friends without breaking the rules. In the third sample, there is even more than one way to choose bal...
500
[ { "input": "4\n18 55 16 17", "output": "YES" }, { "input": "6\n40 41 43 44 44 44", "output": "NO" }, { "input": "8\n5 972 3 4 1 4 970 971", "output": "YES" }, { "input": "3\n959 747 656", "output": "NO" }, { "input": "4\n1 2 2 3", "output": "YES" }, { ...
1,458,421,100
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
1
46
4,608,000
n = int(input()) li = sorted(set(map(int,input().split()))) for i in range(2,n): if li[i]-li[i-2]==2: print('YES') exit() print('NO')
Title: Bear and Three Balls Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is a little polar bear. He has *n* balls, the *i*-th ball has size *t**i*. Limak wants to give one ball to each of his three friends. Giving gifts isn't easy — there are two rules Limak must obey to make fri...
```python n = int(input()) li = sorted(set(map(int,input().split()))) for i in range(2,n): if li[i]-li[i-2]==2: print('YES') exit() print('NO') ```
-1
899
A
Splitting in Teams
PROGRAMMING
800
[ "constructive algorithms", "greedy", "math" ]
null
null
There were *n* groups of students which came to write a training contest. A group is either one person who can write the contest with anyone else, or two people who want to write the contest in the same team. The coach decided to form teams of exactly three people for this training. Determine the maximum number of tea...
The first line contains single integer *n* (2<=≤<=*n*<=≤<=2·105) — the number of groups. The second line contains a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=2), where *a**i* is the number of people in group *i*.
Print the maximum number of teams of three people the coach can form.
[ "4\n1 1 2 1\n", "2\n2 2\n", "7\n2 2 2 1 1 1 1\n", "3\n1 1 1\n" ]
[ "1\n", "0\n", "3\n", "1\n" ]
In the first example the coach can form one team. For example, he can take students from the first, second and fourth groups. In the second example he can't make a single team. In the third example the coach can form three teams. For example, he can do this in the following way: - The first group (of two people) an...
500
[ { "input": "4\n1 1 2 1", "output": "1" }, { "input": "2\n2 2", "output": "0" }, { "input": "7\n2 2 2 1 1 1 1", "output": "3" }, { "input": "3\n1 1 1", "output": "1" }, { "input": "3\n2 2 2", "output": "0" }, { "input": "3\n1 2 1", "output": "1" }...
1,632,347,275
2,147,483,647
PyPy 3
OK
TESTS
67
187
32,665,600
n=int(input()) a=[*map(int,input().split())] print(max((a.count(1)-min(a.count(2),a.count(1)))//3+min(a.count(2),a.count(1)),min(a.count(2),a.count(1)),a.count(1)//3,0))
Title: Splitting in Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: There were *n* groups of students which came to write a training contest. A group is either one person who can write the contest with anyone else, or two people who want to write the contest in the same team. The co...
```python n=int(input()) a=[*map(int,input().split())] print(max((a.count(1)-min(a.count(2),a.count(1)))//3+min(a.count(2),a.count(1)),min(a.count(2),a.count(1)),a.count(1)//3,0)) ```
3