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
389
A
Fox and Number Game
PROGRAMMING
1,000
[ "greedy", "math" ]
null
null
Fox Ciel is playing a game with numbers now. Ciel has *n* positive integers: *x*1, *x*2, ..., *x**n*. She can do the following operation as many times as needed: select two different indexes *i* and *j* such that *x**i* > *x**j* hold, and then apply assignment *x**i* = *x**i* - *x**j*. The goal is to make the sum ...
The first line contains an integer *n* (2<=≤<=*n*<=≤<=100). Then the second line contains *n* integers: *x*1, *x*2, ..., *x**n* (1<=≤<=*x**i*<=≤<=100).
Output a single integer — the required minimal sum.
[ "2\n1 2\n", "3\n2 4 6\n", "2\n12 18\n", "5\n45 12 27 30 18\n" ]
[ "2\n", "6\n", "12\n", "15\n" ]
In the first example the optimal way is to do the assignment: *x*<sub class="lower-index">2</sub> = *x*<sub class="lower-index">2</sub> - *x*<sub class="lower-index">1</sub>. In the second example the optimal sequence of operations is: *x*<sub class="lower-index">3</sub> = *x*<sub class="lower-index">3</sub> - *x*<sub...
500
[ { "input": "2\n1 2", "output": "2" }, { "input": "3\n2 4 6", "output": "6" }, { "input": "2\n12 18", "output": "12" }, { "input": "5\n45 12 27 30 18", "output": "15" }, { "input": "2\n1 1", "output": "2" }, { "input": "2\n100 100", "output": "200" ...
1,586,414,255
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
124
0
# from sys import stdin,stdout # input = stdin.readline from math import * n=int(input()) ar=list(map(int,input().split())) mn=[] # ar.sort() for i in range(n-1): mn.append(ar[i+1]-ar[i]) print(n*min(mn))
Title: Fox and Number Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel is playing a game with numbers now. Ciel has *n* positive integers: *x*1, *x*2, ..., *x**n*. She can do the following operation as many times as needed: select two different indexes *i* and *j* such that ...
```python # from sys import stdin,stdout # input = stdin.readline from math import * n=int(input()) ar=list(map(int,input().split())) mn=[] # ar.sort() for i in range(n-1): mn.append(ar[i+1]-ar[i]) print(n*min(mn)) ```
0
879
B
Table Tennis
PROGRAMMING
1,200
[ "data structures", "implementation" ]
null
null
*n* people are standing in a line to play table tennis. At first, the first two players in the line play a game. Then the loser goes to the end of the line, and the winner plays with the next person from the line, and so on. They play until someone wins *k* games in a row. This player becomes the winner. For each of t...
The first line contains two integers: *n* and *k* (2<=≤<=*n*<=≤<=500, 2<=≤<=*k*<=≤<=1012) — the number of people and the number of wins. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=*n*) — powers of the player. It's guaranteed that this line contains a valid permutation, i.e. all ...
Output a single integer — power of the winner.
[ "2 2\n1 2\n", "4 2\n3 1 2 4\n", "6 2\n6 5 3 1 2 4\n", "2 10000000000\n2 1\n" ]
[ "2 ", "3 ", "6 ", "2\n" ]
Games in the second sample: 3 plays with 1. 3 wins. 1 goes to the end of the line. 3 plays with 2. 3 wins. He wins twice in a row. He becomes the winner.
1,000
[ { "input": "2 2\n1 2", "output": "2 " }, { "input": "4 2\n3 1 2 4", "output": "3 " }, { "input": "6 2\n6 5 3 1 2 4", "output": "6 " }, { "input": "2 10000000000\n2 1", "output": "2" }, { "input": "4 4\n1 3 4 2", "output": "4 " }, { "input": "2 21474836...
1,572,877,595
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
93
0
n,k = (int(x) for x in list(input().split(" "))) players = list(map(int,input().split())) if k > 500: print(max(players)) else: win=0 while win < k: if int(players[0]) > int(players[1]): players.append(players.pop(1)) win +=1 print(players) ...
Title: Table Tennis Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* people are standing in a line to play table tennis. At first, the first two players in the line play a game. Then the loser goes to the end of the line, and the winner plays with the next person from the line, and so o...
```python n,k = (int(x) for x in list(input().split(" "))) players = list(map(int,input().split())) if k > 500: print(max(players)) else: win=0 while win < k: if int(players[0]) > int(players[1]): players.append(players.pop(1)) win +=1 print(pl...
0
365
A
Good Number
PROGRAMMING
1,100
[ "implementation" ]
null
null
Let's call a number *k*-good if it contains all digits not exceeding *k* (0,<=...,<=*k*). You've got a number *k* and an array *a* containing *n* numbers. Find out how many *k*-good numbers are in *a* (count each number every time it occurs in array *a*).
The first line contains integers *n* and *k* (1<=≤<=*n*<=≤<=100, 0<=≤<=*k*<=≤<=9). The *i*-th of the following *n* lines contains integer *a**i* without leading zeroes (1<=≤<=*a**i*<=≤<=109).
Print a single integer — the number of *k*-good numbers in *a*.
[ "10 6\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n", "2 1\n1\n10\n" ]
[ "10\n", "1\n" ]
none
500
[ { "input": "10 6\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560", "output": "10" }, { "input": "2 1\n1\n10", "output": "1" }, { "input": "1 0\n1000000000", "output": "1" }, { "input": "1 1\n1000000000", "output": "1" }, { ...
1,638,334,992
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n=int(input()) l=list(map(int,input().split())) n=len(l) c=0 for i in range(n): if l[i]==1 : c+=1 if c>0 : print("Hard") else : print("Easy")
Title: Good Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's call a number *k*-good if it contains all digits not exceeding *k* (0,<=...,<=*k*). You've got a number *k* and an array *a* containing *n* numbers. Find out how many *k*-good numbers are in *a* (count each number eve...
```python n=int(input()) l=list(map(int,input().split())) n=len(l) c=0 for i in range(n): if l[i]==1 : c+=1 if c>0 : print("Hard") else : print("Easy") ```
-1
455
A
Boredom
PROGRAMMING
1,500
[ "dp" ]
null
null
Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to play it. Given a sequence *a* consisting of *n* integers. The player can make several steps. In a single step he can choose an element of the sequence (let's denote it *a*...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) that shows how many numbers are in Alex's sequence. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105).
Print a single integer — the maximum number of points that Alex can earn.
[ "2\n1 2\n", "3\n1 2 3\n", "9\n1 2 1 3 2 2 2 2 3\n" ]
[ "2\n", "4\n", "10\n" ]
Consider the third test example. At first step we need to choose any element equal to 2. After that step our sequence looks like this [2, 2, 2, 2]. Then we do 4 steps, on each step we choose any element equals to 2. In total we earn 10 points.
500
[ { "input": "2\n1 2", "output": "2" }, { "input": "3\n1 2 3", "output": "4" }, { "input": "9\n1 2 1 3 2 2 2 2 3", "output": "10" }, { "input": "5\n3 3 4 5 4", "output": "11" }, { "input": "5\n5 3 5 3 4", "output": "16" }, { "input": "5\n4 2 3 2 5", ...
1,668,758,904
2,147,483,647
Python 3
OK
TESTS
47
717
7,372,800
n = int(input()) string = [-5]+sorted(list(map(int,input().split())))+[-10] b = [0]*(n+2) c = {} e = 1 x = 1 while string[x] != -10: if string[x]==string[x-1]: e += 1 c[string[x]]=e string.pop(x) else: e = 1 c[string[x]]=e x += 1 for i in range(1,le...
Title: Boredom Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to play it. Given a sequence *a* consisting of *n* integers. The player can make ...
```python n = int(input()) string = [-5]+sorted(list(map(int,input().split())))+[-10] b = [0]*(n+2) c = {} e = 1 x = 1 while string[x] != -10: if string[x]==string[x-1]: e += 1 c[string[x]]=e string.pop(x) else: e = 1 c[string[x]]=e x += 1 for i in ...
3
761
B
Dasha and friends
PROGRAMMING
1,300
[ "brute force", "implementation", "math" ]
null
null
Running with barriers on the circle track is very popular in the country where Dasha lives, so no wonder that on her way to classes she saw the following situation: The track is the circle with length *L*, in distinct points of which there are *n* barriers. Athlete always run the track in counterclockwise direction if...
The first line contains two integers *n* and *L* (1<=≤<=*n*<=≤<=50, *n*<=≤<=*L*<=≤<=100) — the number of barriers on a track and its length. The second line contains *n* distinct integers in the ascending order — the distance from Kefa's start to each barrier in the order of its appearance. All integers are in the ra...
Print "YES" (without quotes), if Kefa and Sasha ran the coinciding tracks (it means that the position of all barriers coincides, if they start running from the same points on the track). Otherwise print "NO" (without quotes).
[ "3 8\n2 4 6\n1 5 7\n", "4 9\n2 3 5 8\n0 1 3 6\n", "2 4\n1 3\n1 2\n" ]
[ "YES\n", "YES\n", "NO\n" ]
The first test is analyzed in the statement.
1,000
[ { "input": "3 8\n2 4 6\n1 5 7", "output": "YES" }, { "input": "4 9\n2 3 5 8\n0 1 3 6", "output": "YES" }, { "input": "2 4\n1 3\n1 2", "output": "NO" }, { "input": "5 9\n0 2 5 6 7\n1 3 6 7 8", "output": "YES" }, { "input": "5 60\n7 26 27 40 59\n14 22 41 42 55", ...
1,604,102,220
840
PyPy 3
OK
TESTS
134
156
0
n, l = [int(x) for x in input().split(' ')] k = [int(x) for x in input().split(' ')] s = [int(x) for x in input().split(' ')] kd = [(k[i%n] - k[i-1])%l for i in range(1, n+1)] sd = [(s[i%n] - s[i-1])%l for i in range(1, n+1)] ans = False for i in range(n): if kd == sd[i:] + sd[:i]: ans = True ...
Title: Dasha and friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: Running with barriers on the circle track is very popular in the country where Dasha lives, so no wonder that on her way to classes she saw the following situation: The track is the circle with length *L*, in distinc...
```python n, l = [int(x) for x in input().split(' ')] k = [int(x) for x in input().split(' ')] s = [int(x) for x in input().split(' ')] kd = [(k[i%n] - k[i-1])%l for i in range(1, n+1)] sd = [(s[i%n] - s[i-1])%l for i in range(1, n+1)] ans = False for i in range(n): if kd == sd[i:] + sd[:i]: ans...
3
258
A
Little Elephant and Bits
PROGRAMMING
1,100
[ "greedy", "math" ]
null
null
The Little Elephant has an integer *a*, written in the binary notation. He wants to write this number on a piece of paper. To make sure that the number *a* fits on the piece of paper, the Little Elephant ought to delete exactly one any digit from number *a* in the binary record. At that a new number appears. It consis...
The single line contains integer *a*, written in the binary notation without leading zeroes. This number contains more than 1 and at most 105 digits.
In the single line print the number that is written without leading zeroes in the binary notation — the answer to the problem.
[ "101\n", "110010\n" ]
[ "11\n", "11010\n" ]
In the first sample the best strategy is to delete the second digit. That results in number 11<sub class="lower-index">2</sub> = 3<sub class="lower-index">10</sub>. In the second sample the best strategy is to delete the third or fourth digits — that results in number 11010<sub class="lower-index">2</sub> = 26<sub cla...
500
[ { "input": "101", "output": "11" }, { "input": "110010", "output": "11010" }, { "input": "10000", "output": "1000" }, { "input": "1111111110", "output": "111111111" }, { "input": "10100101011110101", "output": "1100101011110101" }, { "input": "11101001...
1,586,362,535
2,147,483,647
Python 3
OK
TESTS
37
248
409,600
s=input() ans=0 idx=0 for i in range(len(s)): if s[i]=='0': idx=i break ans=s[0:idx]+s[idx+1:len(s)] print(ans)
Title: Little Elephant and Bits Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant has an integer *a*, written in the binary notation. He wants to write this number on a piece of paper. To make sure that the number *a* fits on the piece of paper, the Little Elephant ought...
```python s=input() ans=0 idx=0 for i in range(len(s)): if s[i]=='0': idx=i break ans=s[0:idx]+s[idx+1:len(s)] print(ans) ```
3
248
A
Cupboards
PROGRAMMING
800
[ "implementation" ]
null
null
One foggy Stockholm morning, Karlsson decided to snack on some jam in his friend Lillebror Svantenson's house. Fortunately for Karlsson, there wasn't anybody in his friend's house. Karlsson was not going to be hungry any longer, so he decided to get some food in the house. Karlsson's gaze immediately fell on *n* woode...
The first input line contains a single integer *n* — the number of cupboards in the kitchen (2<=≤<=*n*<=≤<=104). Then follow *n* lines, each containing two integers *l**i* and *r**i* (0<=≤<=*l**i*,<=*r**i*<=≤<=1). Number *l**i* equals one, if the left door of the *i*-th cupboard is opened, otherwise number *l**i* equal...
In the only output line print a single integer *t* — the minimum number of seconds Karlsson needs to change the doors of all cupboards to the position he needs.
[ "5\n0 1\n1 0\n0 1\n1 1\n0 1\n" ]
[ "3\n" ]
none
500
[ { "input": "5\n0 1\n1 0\n0 1\n1 1\n0 1", "output": "3" }, { "input": "2\n0 0\n0 0", "output": "0" }, { "input": "3\n0 1\n1 1\n1 1", "output": "1" }, { "input": "8\n0 1\n1 0\n0 1\n1 1\n0 1\n1 0\n0 1\n1 0", "output": "7" }, { "input": "8\n1 0\n1 0\n1 0\n0 1\n0 1\n1 ...
1,613,021,750
2,147,483,647
Python 3
OK
TESTS
57
184
204,800
n=int(input()) l1=[] l2=[n] for i in range(n): a,b=map(int,input().split(" ")) l1.append(a) l2.append(b) print(min(l1.count(0),l1.count(1))+min(l2.count(0),l2.count(1)))
Title: Cupboards Time Limit: None seconds Memory Limit: None megabytes Problem Description: One foggy Stockholm morning, Karlsson decided to snack on some jam in his friend Lillebror Svantenson's house. Fortunately for Karlsson, there wasn't anybody in his friend's house. Karlsson was not going to be hungry any long...
```python n=int(input()) l1=[] l2=[n] for i in range(n): a,b=map(int,input().split(" ")) l1.append(a) l2.append(b) print(min(l1.count(0),l1.count(1))+min(l2.count(0),l2.count(1))) ```
3
709
A
Juicer
PROGRAMMING
900
[ "implementation" ]
null
null
Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To be put in the juicer the orange must have size not exceeding *b*, so if Kolya sees an orange ...
The first line of the input contains three integers *n*, *b* and *d* (1<=≤<=*n*<=≤<=100<=000, 1<=≤<=*b*<=≤<=*d*<=≤<=1<=000<=000) — the number of oranges, the maximum size of the orange that fits in the juicer and the value *d*, which determines the condition when the waste section should be emptied. The second line co...
Print one integer — the number of times Kolya will have to empty the waste section.
[ "2 7 10\n5 6\n", "1 5 10\n7\n", "3 10 10\n5 7 7\n", "1 1 1\n1\n" ]
[ "1\n", "0\n", "1\n", "0\n" ]
In the first sample, Kolya will squeeze the juice from two oranges and empty the waste section afterwards. In the second sample, the orange won't fit in the juicer so Kolya will have no juice at all.
500
[ { "input": "2 7 10\n5 6", "output": "1" }, { "input": "1 5 10\n7", "output": "0" }, { "input": "3 10 10\n5 7 7", "output": "1" }, { "input": "1 1 1\n1", "output": "0" }, { "input": "2 951637 951638\n44069 951637", "output": "1" }, { "input": "50 100 12...
1,633,783,125
2,147,483,647
Python 3
OK
TESTS
58
108
14,438,400
#!/usr/bin/env python3 def solve(): waste = 0 empty = 0 for orange in eins: if orange <= b: waste += orange if waste > d: empty += 1 waste = 0 print(empty) n,b,d = list(map(int,input().split())) eins = list(map(int,input().split())) solve()
Title: Juicer Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To b...
```python #!/usr/bin/env python3 def solve(): waste = 0 empty = 0 for orange in eins: if orange <= b: waste += orange if waste > d: empty += 1 waste = 0 print(empty) n,b,d = list(map(int,input().split())) eins = list(map(int,input().split())) solve() ```
3
197
B
Limit
PROGRAMMING
1,400
[ "math" ]
null
null
You are given two polynomials: - *P*(*x*)<==<=*a*0·*x**n*<=+<=*a*1·*x**n*<=-<=1<=+<=...<=+<=*a**n*<=-<=1·*x*<=+<=*a**n* and - *Q*(*x*)<==<=*b*0·*x**m*<=+<=*b*1·*x**m*<=-<=1<=+<=...<=+<=*b**m*<=-<=1·*x*<=+<=*b**m*. Calculate limit .
The first line contains two space-separated integers *n* and *m* (0<=≤<=*n*,<=*m*<=≤<=100) — degrees of polynomials *P*(*x*) and *Q*(*x*) correspondingly. The second line contains *n*<=+<=1 space-separated integers — the factors of polynomial *P*(*x*): *a*0, *a*1, ..., *a**n*<=-<=1, *a**n* (<=-<=100<=≤<=*a**i*<=≤<=100...
If the limit equals <=+<=∞, print "Infinity" (without quotes). If the limit equals <=-<=∞, print "-Infinity" (without the quotes). If the value of the limit equals zero, print "0/1" (without the quotes). Otherwise, print an irreducible fraction — the value of limit , in the format "p/q" (without the quotes), where *p...
[ "2 1\n1 1 1\n2 5\n", "1 0\n-1 3\n2\n", "0 1\n1\n1 0\n", "2 2\n2 1 6\n4 5 -7\n", "1 1\n9 0\n-5 2\n" ]
[ "Infinity\n", "-Infinity\n", "0/1\n", "1/2\n", "-9/5\n" ]
Let's consider all samples: 1. <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/c28febca257452afdfcbd6984ba8623911f9bdbc.png" style="max-width: 100.0%;max-height: 100.0%;"/> 1. <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/1e55ecd04e54a45e5e0092ec9a5c1ea03bb...
500
[ { "input": "2 1\n1 1 1\n2 5", "output": "Infinity" }, { "input": "1 0\n-1 3\n2", "output": "-Infinity" }, { "input": "0 1\n1\n1 0", "output": "0/1" }, { "input": "2 2\n2 1 6\n4 5 -7", "output": "1/2" }, { "input": "1 1\n9 0\n-5 2", "output": "-9/5" }, { ...
1,692,475,434
2,147,483,647
Python 3
OK
TESTS
80
92
0
import math n, m = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) if m > n: print('0/1') elif m == n: gcd = abs(math.gcd(a[0], b[0])) if a[0] * b[0] < 0: print('-{}/{}'.format(abs(a[0]) // gcd, abs(b[0]) // gcd)) else: pri...
Title: Limit Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two polynomials: - *P*(*x*)<==<=*a*0·*x**n*<=+<=*a*1·*x**n*<=-<=1<=+<=...<=+<=*a**n*<=-<=1·*x*<=+<=*a**n* and - *Q*(*x*)<==<=*b*0·*x**m*<=+<=*b*1·*x**m*<=-<=1<=+<=...<=+<=*b**m*<=-<=1·*x*<=+<=*b**m*. Calculate l...
```python import math n, m = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) if m > n: print('0/1') elif m == n: gcd = abs(math.gcd(a[0], b[0])) if a[0] * b[0] < 0: print('-{}/{}'.format(abs(a[0]) // gcd, abs(b[0]) // gcd)) else: ...
3
810
A
Straight <<A>>
PROGRAMMING
900
[ "implementation", "math" ]
null
null
Noora is a student of one famous high school. It's her final year in school — she is going to study in university next year. However, she has to get an «A» graduation certificate in order to apply to a prestigious one. In school, where Noora is studying, teachers are putting down marks to the online class register, wh...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=100,<=1<=≤<=*k*<=≤<=100) denoting the number of marks, received by Noora and the value of highest possible mark. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=*k*) denoting marks received by Noora before Leha's hack.
Print a single integer — minimal number of additional marks, that Leha has to add in order to change Noora's final mark to *k*.
[ "2 10\n8 9\n", "3 5\n4 4 4\n" ]
[ "4", "3" ]
Consider the first example testcase. Maximal mark is 10, Noora received two marks — 8 and 9, so current final mark is 9. To fix it, Leha can add marks [10, 10, 10, 10] (4 marks in total) to the registry, achieving Noora having average mark equal to <img align="middle" class="tex-formula" src="https://espresso.codeforc...
500
[ { "input": "2 10\n8 9", "output": "4" }, { "input": "3 5\n4 4 4", "output": "3" }, { "input": "3 10\n10 8 9", "output": "3" }, { "input": "2 23\n21 23", "output": "2" }, { "input": "5 10\n5 10 10 9 10", "output": "7" }, { "input": "12 50\n18 10 26 22 2...
1,624,518,842
2,147,483,647
Python 3
OK
TESTS
106
77
0
n, k = map(int, input().split()) a = list(map(int, input().split())) print(max((2 * n * k) - n - (2 * sum(a)), 0))
Title: Straight <<A>> Time Limit: None seconds Memory Limit: None megabytes Problem Description: Noora is a student of one famous high school. It's her final year in school — she is going to study in university next year. However, she has to get an «A» graduation certificate in order to apply to a prestigious one. ...
```python n, k = map(int, input().split()) a = list(map(int, input().split())) print(max((2 * n * k) - n - (2 * sum(a)), 0)) ```
3
349
A
Cinema Line
PROGRAMMING
1,100
[ "greedy", "implementation" ]
null
null
The new "Die Hard" movie has just been released! There are *n* people at the cinema box office standing in a huge line. Each of them has a single 100, 50 or 25 ruble bill. A "Die Hard" ticket costs 25 rubles. Can the booking clerk sell a ticket to each person and give the change if he initially has no money and sells t...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of people in the line. The next line contains *n* integers, each of them equals 25, 50 or 100 — the values of the bills the people have. The numbers are given in the order from the beginning of the line (at the box office) to the end of the line.
Print "YES" (without the quotes) if the booking clerk can sell a ticket to each person and give the change. Otherwise print "NO".
[ "4\n25 25 50 50\n", "2\n25 100\n", "4\n50 50 25 25\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "4\n25 25 50 50", "output": "YES" }, { "input": "2\n25 100", "output": "NO" }, { "input": "4\n50 50 25 25", "output": "NO" }, { "input": "3\n25 50 100", "output": "NO" }, { "input": "10\n25 25 25 25 25 25 25 25 25 25", "output": "YES" }, { "...
1,664,981,463
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
3
122
0
money = { 25: 0, 50: 0, 100: 0 } ## XXX make it depend on money def giveBanknotes(price): change = {} for banknote in [100, 50, 25]: bestCase = price // banknote if bestCase <= money[banknote]: price = price % banknote else: price = pric...
Title: Cinema Line Time Limit: None seconds Memory Limit: None megabytes Problem Description: The new "Die Hard" movie has just been released! There are *n* people at the cinema box office standing in a huge line. Each of them has a single 100, 50 or 25 ruble bill. A "Die Hard" ticket costs 25 rubles. Can the bookin...
```python money = { 25: 0, 50: 0, 100: 0 } ## XXX make it depend on money def giveBanknotes(price): change = {} for banknote in [100, 50, 25]: bestCase = price // banknote if bestCase <= money[banknote]: price = price % banknote else: pr...
0
275
A
Lights Out
PROGRAMMING
900
[ "implementation" ]
null
null
Lenny is playing a game on a 3<=×<=3 grid of lights. In the beginning of the game all lights are switched on. Pressing any of the lights will toggle it and all side-adjacent lights. The goal of the game is to switch all the lights off. We consider the toggling as follows: if the light was switched on then it will be sw...
The input consists of three rows. Each row contains three integers each between 0 to 100 inclusive. The *j*-th number in the *i*-th row is the number of times the *j*-th light of the *i*-th row of the grid is pressed.
Print three lines, each containing three characters. The *j*-th character of the *i*-th line is "1" if and only if the corresponding light is switched on, otherwise it's "0".
[ "1 0 0\n0 0 0\n0 0 1\n", "1 0 1\n8 8 8\n2 0 3\n" ]
[ "001\n010\n100\n", "010\n011\n100\n" ]
none
500
[ { "input": "1 0 0\n0 0 0\n0 0 1", "output": "001\n010\n100" }, { "input": "1 0 1\n8 8 8\n2 0 3", "output": "010\n011\n100" }, { "input": "13 85 77\n25 50 45\n65 79 9", "output": "000\n010\n000" }, { "input": "96 95 5\n8 84 74\n67 31 61", "output": "011\n011\n101" }, {...
1,611,850,358
2,147,483,647
PyPy 3
OK
TESTS
33
124
0
def neighbors(a, x, y): total = 0 for dx, dy in [ (-1, 0), ( 0, -1),( 0, 1), ( 0, 0), ( 1, 0)]: try: if (x+dx>=0) and (y+dy>=0): total += a[x+dx][y+dy] except: total+=0 return total a=[] for i in range...
Title: Lights Out Time Limit: None seconds Memory Limit: None megabytes Problem Description: Lenny is playing a game on a 3<=×<=3 grid of lights. In the beginning of the game all lights are switched on. Pressing any of the lights will toggle it and all side-adjacent lights. The goal of the game is to switch all the ...
```python def neighbors(a, x, y): total = 0 for dx, dy in [ (-1, 0), ( 0, -1),( 0, 1), ( 0, 0), ( 1, 0)]: try: if (x+dx>=0) and (y+dy>=0): total += a[x+dx][y+dy] except: total+=0 return total a=[] for ...
3
902
B
Coloring a Tree
PROGRAMMING
1,200
[ "dfs and similar", "dsu", "greedy" ]
null
null
You are given a rooted tree with *n* vertices. The vertices are numbered from 1 to *n*, the root is the vertex number 1. Each vertex has a color, let's denote the color of vertex *v* by *c**v*. Initially *c**v*<==<=0. You have to color the tree into the given colors using the smallest possible number of steps. On eac...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=104) — the number of vertices in the tree. The second line contains *n*<=-<=1 integers *p*2,<=*p*3,<=...,<=*p**n* (1<=≤<=*p**i*<=&lt;<=*i*), where *p**i* means that there is an edge between vertices *i* and *p**i*. The third line contains *n* integers *c*1,<...
Print a single integer — the minimum number of steps you have to perform to color the tree into given colors.
[ "6\n1 2 2 1 5\n2 1 1 1 1 1\n", "7\n1 1 2 3 1 4\n3 3 1 1 1 2 3\n" ]
[ "3\n", "5\n" ]
The tree from the first sample is shown on the picture (numbers are vetices' indices): <img class="tex-graphics" src="https://espresso.codeforces.com/10324ccdc37f95343acc4f3c6050d8c334334ffa.png" style="max-width: 100.0%;max-height: 100.0%;"/> On first step we color all vertices in the subtree of vertex 1 into color ...
1,000
[ { "input": "6\n1 2 2 1 5\n2 1 1 1 1 1", "output": "3" }, { "input": "7\n1 1 2 3 1 4\n3 3 1 1 1 2 3", "output": "5" }, { "input": "2\n1\n2 2", "output": "1" }, { "input": "3\n1 1\n2 2 2", "output": "1" }, { "input": "4\n1 2 1\n1 2 3 4", "output": "4" }, { ...
1,524,490,507
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
17
108
8,806,400
def dfs(node,color): ans=0 if (color!=c[node]): color=c[node] ans+=1 for i in child[node]: ans+=dfs(i,color) return ans n=int(input()) parent=[0]+list(map(int,input().split())) c=list(map(int,input().split())) child=[[]for i in range(n)] for i in range(1,n): ...
Title: Coloring a Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a rooted tree with *n* vertices. The vertices are numbered from 1 to *n*, the root is the vertex number 1. Each vertex has a color, let's denote the color of vertex *v* by *c**v*. Initially *c**v*<==<=0. ...
```python def dfs(node,color): ans=0 if (color!=c[node]): color=c[node] ans+=1 for i in child[node]: ans+=dfs(i,color) return ans n=int(input()) parent=[0]+list(map(int,input().split())) c=list(map(int,input().split())) child=[[]for i in range(n)] for i in rang...
-1
160
A
Twins
PROGRAMMING
900
[ "greedy", "sortings" ]
null
null
Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very well know what it's like. Now let's imagine a typical morning in your family. You haven't w...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of coins. The second line contains a sequence of *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=100) — the coins' values. All numbers are separated with spaces.
In the single line print the single number — the minimum needed number of coins.
[ "2\n3 3\n", "3\n2 1 2\n" ]
[ "2\n", "2\n" ]
In the first sample you will have to take 2 coins (you and your twin have sums equal to 6, 0 correspondingly). If you take 1 coin, you get sums 3, 3. If you take 0 coins, you get sums 0, 6. Those variants do not satisfy you as your sum should be strictly more that your twins' sum. In the second sample one coin isn't e...
500
[ { "input": "2\n3 3", "output": "2" }, { "input": "3\n2 1 2", "output": "2" }, { "input": "1\n5", "output": "1" }, { "input": "5\n4 2 2 2 2", "output": "3" }, { "input": "7\n1 10 1 2 1 1 1", "output": "1" }, { "input": "5\n3 2 3 3 1", "output": "3" ...
1,693,844,363
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include<iostream> #include<bits/stdc++.h> using namespace std; int main(){ int a; cin >> a; int B[a]; int sum = 0, sum2 = 0, count = 0; for(int i = 0; i < a; i++){ cin >> B[i]; sum+=B[i]; } sum = sum / 2; sort(B, B + a); for(int j = a - 1; j >= 0; j--){...
Title: Twins Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very w...
```python #include<iostream> #include<bits/stdc++.h> using namespace std; int main(){ int a; cin >> a; int B[a]; int sum = 0, sum2 = 0, count = 0; for(int i = 0; i < a; i++){ cin >> B[i]; sum+=B[i]; } sum = sum / 2; sort(B, B + a); for(int j = a - 1; j >...
-1
614
A
Link/Cut Tree
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
Programmer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is now studying the *expose* procedure. Unfortunately, Rostislav is unable to understand the definition of this procedure, so he decided to ask programmer Serezha to help him. Serezha agre...
The first line of the input contains three space-separated integers *l*, *r* and *k* (1<=≤<=*l*<=≤<=*r*<=≤<=1018, 2<=≤<=*k*<=≤<=109).
Print all powers of number *k*, that lie within range from *l* to *r* in the increasing order. If there are no such numbers, print "-1" (without the quotes).
[ "1 10 2\n", "2 4 5\n" ]
[ "1 2 4 8 ", "-1" ]
Note to the first sample: numbers 2<sup class="upper-index">0</sup> = 1, 2<sup class="upper-index">1</sup> = 2, 2<sup class="upper-index">2</sup> = 4, 2<sup class="upper-index">3</sup> = 8 lie within the specified range. The number 2<sup class="upper-index">4</sup> = 16 is greater then 10, thus it shouldn't be printed.
500
[ { "input": "1 10 2", "output": "1 2 4 8 " }, { "input": "2 4 5", "output": "-1" }, { "input": "18102 43332383920 28554", "output": "28554 815330916 " }, { "input": "19562 31702689720 17701", "output": "313325401 " }, { "input": "11729 55221128400 313", "output...
1,650,155,557
2,147,483,647
PyPy 3
OK
TESTS
44
92
0
ss = [int(i) for i in input().split(" ")] l = ss[0] r = ss[1] k = ss[2] ans = [] res = 1 while res <= r: if l <= res <= r: ans.append(res) res *= k if len(ans) == 0: print("-1") else: print(" ".join([str(i) for i in ans]));
Title: Link/Cut Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: Programmer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is now studying the *expose* procedure. Unfortunately, Rostislav is unable to understand ...
```python ss = [int(i) for i in input().split(" ")] l = ss[0] r = ss[1] k = ss[2] ans = [] res = 1 while res <= r: if l <= res <= r: ans.append(res) res *= k if len(ans) == 0: print("-1") else: print(" ".join([str(i) for i in ans])); ```
3
785
A
Anton and Polyhedrons
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Anton's favourite geometric figures are regular polyhedrons. Note that there are five kinds of regular polyhedrons: - Tetrahedron. Tetrahedron has 4 triangular faces. - Cube. Cube has 6 square faces. - Octahedron. Octahedron has 8 triangular faces. - Dodecahedron. Dodecahedron has 12 pentagonal faces. - Icosahed...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of polyhedrons in Anton's collection. Each of the following *n* lines of the input contains a string *s**i* — the name of the *i*-th polyhedron in Anton's collection. The string can look like this: - "Tetrahedron" (withou...
Output one number — the total number of faces in all the polyhedrons in Anton's collection.
[ "4\nIcosahedron\nCube\nTetrahedron\nDodecahedron\n", "3\nDodecahedron\nOctahedron\nOctahedron\n" ]
[ "42\n", "28\n" ]
In the first sample Anton has one icosahedron, one cube, one tetrahedron and one dodecahedron. Icosahedron has 20 faces, cube has 6 faces, tetrahedron has 4 faces and dodecahedron has 12 faces. In total, they have 20 + 6 + 4 + 12 = 42 faces.
500
[ { "input": "4\nIcosahedron\nCube\nTetrahedron\nDodecahedron", "output": "42" }, { "input": "3\nDodecahedron\nOctahedron\nOctahedron", "output": "28" }, { "input": "25\nIcosahedron\nOctahedron\nTetrahedron\nDodecahedron\nCube\nIcosahedron\nOctahedron\nCube\nTetrahedron\nIcosahedron\nIcosa...
1,676,323,393
2,147,483,647
Python 3
OK
TESTS
30
280
0
num = int(input()) dec_form = {'tetrahedron':4,'cube':6,'octahedron':8,'dodecahedron':12,'icosahedron':20} sumation = 0 for i in range(num): form = input().lower() sumation += dec_form.get(form) print(sumation)
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 num = int(input()) dec_form = {'tetrahedron':4,'cube':6,'octahedron':8,'dodecahedron':12,'icosahedron':20} sumation = 0 for i in range(num): form = input().lower() sumation += dec_form.get(form) print(sumation) ```
3
160
A
Twins
PROGRAMMING
900
[ "greedy", "sortings" ]
null
null
Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very well know what it's like. Now let's imagine a typical morning in your family. You haven't w...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of coins. The second line contains a sequence of *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=100) — the coins' values. All numbers are separated with spaces.
In the single line print the single number — the minimum needed number of coins.
[ "2\n3 3\n", "3\n2 1 2\n" ]
[ "2\n", "2\n" ]
In the first sample you will have to take 2 coins (you and your twin have sums equal to 6, 0 correspondingly). If you take 1 coin, you get sums 3, 3. If you take 0 coins, you get sums 0, 6. Those variants do not satisfy you as your sum should be strictly more that your twins' sum. In the second sample one coin isn't e...
500
[ { "input": "2\n3 3", "output": "2" }, { "input": "3\n2 1 2", "output": "2" }, { "input": "1\n5", "output": "1" }, { "input": "5\n4 2 2 2 2", "output": "3" }, { "input": "7\n1 10 1 2 1 1 1", "output": "1" }, { "input": "5\n3 2 3 3 1", "output": "3" ...
1,690,381,975
2,147,483,647
PyPy 3
OK
TESTS
29
184
0
n = int(input()) coins = list(map(int, input().split())) coins.sort(reverse=True) total = sum(coins) s = 0 need = n for i in range(n): s += coins[i] each = total - s if s > each: need = i + 1 break print(need)
Title: Twins Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very w...
```python n = int(input()) coins = list(map(int, input().split())) coins.sort(reverse=True) total = sum(coins) s = 0 need = n for i in range(n): s += coins[i] each = total - s if s > each: need = i + 1 break print(need) ```
3
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,632,835,414
2,147,483,647
Python 3
OK
TESTS
35
124
6,758,400
def product(data: list): prodc = 1 for x in data: prodc *= x return prodc data = product(list(map(int, [x.strip() for x in input().split(" ")]))) print(data//2)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python def product(data: list): prodc = 1 for x in data: prodc *= x return prodc data = product(list(map(int, [x.strip() for x in input().split(" ")]))) print(data//2) ```
3.956411
118
A
String Task
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
Petya started to attend programming lessons. On the first lesson his task was to write a simple program. The program was supposed to do the following: in the given string, consisting if uppercase and lowercase Latin letters, it: - deletes all the vowels, - inserts a character "." before each consonant, - replaces ...
The first line represents input string of Petya's program. This string only consists of uppercase and lowercase Latin letters and its length is from 1 to 100, inclusive.
Print the resulting string. It is guaranteed that this string is not empty.
[ "tour\n", "Codeforces\n", "aBAcAba\n" ]
[ ".t.r\n", ".c.d.f.r.c.s\n", ".b.c.b\n" ]
none
500
[ { "input": "tour", "output": ".t.r" }, { "input": "Codeforces", "output": ".c.d.f.r.c.s" }, { "input": "aBAcAba", "output": ".b.c.b" }, { "input": "obn", "output": ".b.n" }, { "input": "wpwl", "output": ".w.p.w.l" }, { "input": "ggdvq", "output": "...
1,697,953,967
2,147,483,647
PyPy 3-64
OK
TESTS
42
92
0
s = input() s_list = list(s.lower()) index = 0 new_list = [] # list comprehension ensure that # the letters counted starts from the first letter for letter in s_list[::]: if letter == "a": s_list.remove(letter) elif letter == "o": s_list.remove(letter) elif letter == "y": s_list.remove(l...
Title: String Task Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya started to attend programming lessons. On the first lesson his task was to write a simple program. The program was supposed to do the following: in the given string, consisting if uppercase and lowercase Latin letters...
```python s = input() s_list = list(s.lower()) index = 0 new_list = [] # list comprehension ensure that # the letters counted starts from the first letter for letter in s_list[::]: if letter == "a": s_list.remove(letter) elif letter == "o": s_list.remove(letter) elif letter == "y": s_lis...
3
0
none
none
none
0
[ "none" ]
null
null
From beginning till end, this message has been waiting to be conveyed. For a given unordered multiset of *n* lowercase English letters ("multi" means that a letter may appear more than once), we treat all letters as strings of length 1, and repeat the following operation *n*<=-<=1 times: - Remove any two elements *s...
The first and only line of input contains a non-negative integer *k* (0<=≤<=*k*<=≤<=100<=000) — the required minimum cost.
Output a non-empty string of no more than 100<=000 lowercase English letters — any multiset satisfying the requirements, concatenated to be a string. Note that the printed string doesn't need to be the final concatenated string. It only needs to represent an unordered multiset of letters.
[ "12\n", "3\n" ]
[ "abababab\n", "codeforces\n" ]
For the multiset {'a', 'b', 'a', 'b', 'a', 'b', 'a', 'b'}, one of the ways to complete the process is as follows: - {"ab", "a", "b", "a", "b", "a", "b"}, with a cost of 0; - {"aba", "b", "a", "b", "a", "b"}, with a cost of 1; - {"abab", "a", "b", "a", "b"}, with a cost of 1; - {"abab", "ab", "a", "b"}, with a cost...
0
[ { "input": "12", "output": "abababab" }, { "input": "3", "output": "codeforces" }, { "input": "0", "output": "o" }, { "input": "2", "output": "aabb" }, { "input": "5", "output": "aaabbcc" }, { "input": "10", "output": "aaaaa" }, { "input": ...
1,504,278,641
5,741
Python 3
TIME_LIMIT_EXCEEDED
PRETESTS
8
1,000
0
import math def trianglular(k, s): for n1 in range(s): for n2 in range(s): for n3 in range(s): if k == n1*(n1+1)//2 + n2*(n2+1)//2 + n3*(n3+1)//2: return n1, n2, n3 k = int(input()) s = int(math.sqrt(k)) + 2 if k==0: print("a") elif k==1: print("aa") elif k==2: print("aabb") else: n1, n...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: From beginning till end, this message has been waiting to be conveyed. For a given unordered multiset of *n* lowercase English letters ("multi" means that a letter may appear more than once), we treat all letters as strings of le...
```python import math def trianglular(k, s): for n1 in range(s): for n2 in range(s): for n3 in range(s): if k == n1*(n1+1)//2 + n2*(n2+1)//2 + n3*(n3+1)//2: return n1, n2, n3 k = int(input()) s = int(math.sqrt(k)) + 2 if k==0: print("a") elif k==1: print("aa") elif k==2: print("aabb") els...
0
960
A
Check the string
PROGRAMMING
1,200
[ "implementation" ]
null
null
A has a string consisting of some number of lowercase English letters 'a'. He gives it to his friend B who appends some number of letters 'b' to the end of this string. Since both A and B like the characters 'a' and 'b', they have made sure that at this point, at least one 'a' and one 'b' exist in the string. B now gi...
The first and only line consists of a string $S$ ($ 1 \le |S| \le 5\,000 $). It is guaranteed that the string will only consist of the lowercase English letters 'a', 'b', 'c'.
Print "YES" or "NO", according to the condition.
[ "aaabccc\n", "bbacc\n", "aabc\n" ]
[ "YES\n", "NO\n", "YES\n" ]
Consider first example: the number of 'c' is equal to the number of 'a'. Consider second example: although the number of 'c' is equal to the number of the 'b', the order is not correct. Consider third example: the number of 'c' is equal to the number of 'b'.
500
[ { "input": "aaabccc", "output": "YES" }, { "input": "bbacc", "output": "NO" }, { "input": "aabc", "output": "YES" }, { "input": "aabbcc", "output": "YES" }, { "input": "aaacccbb", "output": "NO" }, { "input": "abc", "output": "YES" }, { "in...
1,595,757,507
2,147,483,647
Python 3
OK
TESTS
55
109
6,963,200
from itertools import * z=["a","b","c"] z=list(permutations(z,2)) k=input() for i in z:k=k.replace("".join(i),str(i[0]+" "+i[1])) k=k.split() if len(k)!=3:print("NO") elif "a" not in k[0] or "b" not in k[1] or "c" not in k[2] :print("NO") else: if len(k[0])==len(k[2]) or len(k[1])==len(k[2]):print("YES") ...
Title: Check the string Time Limit: None seconds Memory Limit: None megabytes Problem Description: A has a string consisting of some number of lowercase English letters 'a'. He gives it to his friend B who appends some number of letters 'b' to the end of this string. Since both A and B like the characters 'a' and 'b...
```python from itertools import * z=["a","b","c"] z=list(permutations(z,2)) k=input() for i in z:k=k.replace("".join(i),str(i[0]+" "+i[1])) k=k.split() if len(k)!=3:print("NO") elif "a" not in k[0] or "b" not in k[1] or "c" not in k[2] :print("NO") else: if len(k[0])==len(k[2]) or len(k[1])==len(k[2]):prin...
3
990
A
Commentary Boxes
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Berland Football Cup starts really soon! Commentators from all over the world come to the event. Organizers have already built $n$ commentary boxes. $m$ regional delegations will come to the Cup. Every delegation should get the same number of the commentary boxes. If any box is left unoccupied then the delegations wil...
The only line contains four integer numbers $n$, $m$, $a$ and $b$ ($1 \le n, m \le 10^{12}$, $1 \le a, b \le 100$), where $n$ is the initial number of the commentary boxes, $m$ is the number of delegations to come, $a$ is the fee to build a box and $b$ is the fee to demolish a box.
Output the minimal amount of burles organizers should pay to satisfy all the delegations (i.e. to make the number of the boxes be divisible by $m$). It is allowed that the final number of the boxes is equal to $0$.
[ "9 7 3 8\n", "2 7 3 7\n", "30 6 17 19\n" ]
[ "15\n", "14\n", "0\n" ]
In the first example organizers can build $5$ boxes to make the total of $14$ paying $3$ burles for the each of them. In the second example organizers can demolish $2$ boxes to make the total of $0$ paying $7$ burles for the each of them. In the third example organizers are already able to distribute all the boxes eq...
0
[ { "input": "9 7 3 8", "output": "15" }, { "input": "2 7 3 7", "output": "14" }, { "input": "30 6 17 19", "output": "0" }, { "input": "500000000001 1000000000000 100 100", "output": "49999999999900" }, { "input": "1000000000000 750000000001 10 100", "output": "...
1,528,726,710
2,147,483,647
Python 3
OK
TESTS
109
93
0
n,m,a,b = map(int,input().split()) r = n % m if(r*b < (m-r)*a): print(r*b) else: print((m-r)*a)
Title: Commentary Boxes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Berland Football Cup starts really soon! Commentators from all over the world come to the event. Organizers have already built $n$ commentary boxes. $m$ regional delegations will come to the Cup. Every delegation shou...
```python n,m,a,b = map(int,input().split()) r = n % m if(r*b < (m-r)*a): print(r*b) else: print((m-r)*a) ```
3
335
F
Buy One, Get One Free
PROGRAMMING
3,000
[ "dp", "greedy" ]
null
null
A nearby pie shop is having a special sale. For each pie you pay full price for, you may select one pie of a strictly lesser value to get for free. Given the prices of all the pies you wish to acquire, determine the minimum total amount you must pay for all of the pies.
Input will begin with an integer *n* (1<=≤<=*n*<=≤<=500000), the number of pies you wish to acquire. Following this is a line with *n* integers, each indicating the cost of a pie. All costs are positive integers not exceeding 109.
Print the minimum cost to acquire all the pies. 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.
[ "6\n3 4 5 3 4 5\n", "5\n5 5 5 5 5\n", "4\n309999 6000 2080 2080\n" ]
[ "14\n", "25\n", "314159\n" ]
In the first test case you can pay for a pie with cost 5 and get a pie with cost 4 for free, then pay for a pie with cost 5 and get a pie with cost 3 for free, then pay for a pie with cost 4 and get a pie with cost 3 for free. In the second test case you have to pay full price for every pie.
3,000
[ { "input": "6\n3 4 5 3 4 5", "output": "14" }, { "input": "5\n5 5 5 5 5", "output": "25" }, { "input": "4\n309999 6000 2080 2080", "output": "314159" }, { "input": "10\n1 1 1 1 1 2 3 4 5 6", "output": "16" }, { "input": "1\n1", "output": "1" }, { "inpu...
1,634,370,850
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
124
307,200
import sys from collections import deque n = int(sys.stdin.readline().strip()) prices = deque( sorted(map(int, sys.stdin.readline().strip().split()), reverse=True) ) res = 0 res_price = 0 while len(prices) > 0 and res <= n: p = prices.popleft() res_price += p if len(prices) > 0: for i in...
Title: Buy One, Get One Free Time Limit: None seconds Memory Limit: None megabytes Problem Description: A nearby pie shop is having a special sale. For each pie you pay full price for, you may select one pie of a strictly lesser value to get for free. Given the prices of all the pies you wish to acquire, determine t...
```python import sys from collections import deque n = int(sys.stdin.readline().strip()) prices = deque( sorted(map(int, sys.stdin.readline().strip().split()), reverse=True) ) res = 0 res_price = 0 while len(prices) > 0 and res <= n: p = prices.popleft() res_price += p if len(prices) > 0: ...
0
9
B
Running Student
PROGRAMMING
1,200
[ "brute force", "geometry", "implementation" ]
B. Running Student
1
64
And again a misfortune fell on Poor Student. He is being late for an exam. Having rushed to a bus stop that is in point (0,<=0), he got on a minibus and they drove along a straight line, parallel to axis *OX*, in the direction of increasing *x*. Poor Student knows the following: - during one run the minibus makes ...
The first line contains three integer numbers: 2<=≤<=*n*<=≤<=100, 1<=≤<=*v**b*,<=*v**s*<=≤<=1000. The second line contains *n* non-negative integers in ascending order: coordinates *x**i* of the bus stop with index *i*. It is guaranteed that *x*1 equals to zero, and *x**n*<=≤<=105. The third line contains the coordinat...
In the only line output the answer to the problem — index of the optimum bus stop.
[ "4 5 2\n0 2 4 6\n4 1\n", "2 1 1\n0 100000\n100000 100000\n" ]
[ "3", "2" ]
As you know, students are a special sort of people, and minibuses usually do not hurry. That's why you should not be surprised, if Student's speed is higher than the speed of the minibus.
0
[ { "input": "4 5 2\n0 2 4 6\n4 1", "output": "3" }, { "input": "2 1 1\n0 100000\n100000 100000", "output": "2" }, { "input": "6 5 1\n0 1 2 3 4 5\n0 0", "output": "2" }, { "input": "4 100 10\n0 118 121 178\n220 220", "output": "4" }, { "input": "4 3 3\n0 6 8 10\n7 -...
1,630,749,635
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
6,963,200
import math [n, vb, vs] = list(map(int, input().split())) arr = list(map(int, input().split())) [xu, yu] = list(map(int, input().split())) optimal_time = None chosen_bus = None for idx, ele in enumerate(arr): time = 0 time += ele*vs + math.pow(ele - xu, 2)*vb if optimal_time == None: ...
Title: Running Student Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: And again a misfortune fell on Poor Student. He is being late for an exam. Having rushed to a bus stop that is in point (0,<=0), he got on a minibus and they drove along a straight line, parallel to axis *OX*, in the direct...
```python import math [n, vb, vs] = list(map(int, input().split())) arr = list(map(int, input().split())) [xu, yu] = list(map(int, input().split())) optimal_time = None chosen_bus = None for idx, ele in enumerate(arr): time = 0 time += ele*vs + math.pow(ele - xu, 2)*vb if optimal_time == None...
0
322
B
Ciel and Flowers
PROGRAMMING
1,600
[ "combinatorics", "math" ]
null
null
Fox Ciel has some flowers: *r* red flowers, *g* green flowers and *b* blue flowers. She wants to use these flowers to make several bouquets. There are 4 types of bouquets: - To make a "red bouquet", it needs 3 red flowers. - To make a "green bouquet", it needs 3 green flowers. - To make a "blue bouquet", it needs 3...
The first line contains three integers *r*, *g* and *b* (0<=≤<=*r*,<=*g*,<=*b*<=≤<=109) — the number of red, green and blue flowers.
Print the maximal number of bouquets Fox Ciel can make.
[ "3 6 9\n", "4 4 4\n", "0 0 0\n" ]
[ "6\n", "4\n", "0\n" ]
In test case 1, we can make 1 red bouquet, 2 green bouquets and 3 blue bouquets. In test case 2, we can make 1 red, 1 green, 1 blue and 1 mixing bouquet.
1,000
[ { "input": "3 6 9", "output": "6" }, { "input": "4 4 4", "output": "4" }, { "input": "0 0 0", "output": "0" }, { "input": "0 3 6", "output": "3" }, { "input": "7 8 9", "output": "7" }, { "input": "8 8 9", "output": "8" }, { "input": "15 3 9...
1,628,828,329
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
154
6,758,400
r, g, b = [int(x) for x in input().split()] mn = min(r, g, b) ans = mn r -= mn g -= mn b -= mn ans += (r // 3 + g // 3 + b // 3) print(ans)
Title: Ciel and Flowers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel has some flowers: *r* red flowers, *g* green flowers and *b* blue flowers. She wants to use these flowers to make several bouquets. There are 4 types of bouquets: - To make a "red bouquet", it needs 3 red fl...
```python r, g, b = [int(x) for x in input().split()] mn = min(r, g, b) ans = mn r -= mn g -= mn b -= mn ans += (r // 3 + g // 3 + b // 3) print(ans) ```
0
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,650,078,137
2,147,483,647
Python 3
OK
TESTS
84
109
0
n=int(input().split(" ")[0]) dls=input().split(" ") bls=list() for i in range(0,n): bls.append(int(dls[i])) for i in bls: for j in bls: for k in bls: y=sorted([i,j,k]) if y[1]-y[0]==y[2]-y[1]==1: print("YES") exit(0) 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().split(" ")[0]) dls=input().split(" ") bls=list() for i in range(0,n): bls.append(int(dls[i])) for i in bls: for j in bls: for k in bls: y=sorted([i,j,k]) if y[1]-y[0]==y[2]-y[1]==1: print("YES") exit(0) print("NO...
3
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,654,718,342
2,147,483,647
PyPy 3
OK
TESTS
40
93
0
s = input() letra_1 = False letra_2 = False letra_3 = False letra_4 = False letra_5 = False for i in s: if letra_1 == False: if i == "h": letra_1 = True elif letra_2 == False: if i == "e": letra_2 = True elif letra_3 == False: if i == "l": letra_3 = True elif le...
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() letra_1 = False letra_2 = False letra_3 = False letra_4 = False letra_5 = False for i in s: if letra_1 == False: if i == "h": letra_1 = True elif letra_2 == False: if i == "e": letra_2 = True elif letra_3 == False: if i == "l": letra_3 = True ...
3.9535
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,619,149,250
2,147,483,647
Python 3
OK
TESTS
22
295
1,024,000
s = input() ans = 0 d = {} d['0'] = "02468" d['2'] = "13579" d['4'] = "02468" d['6'] = "13579" d['8'] = "02468" dt = [0 for _ in range(10)] for i in range(0,len(s)): if i and s[i] in d and s[i-1] in d[s[i]]: ans+= i if s[i] in "048": ans+=1 print(ans)
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 s = input() ans = 0 d = {} d['0'] = "02468" d['2'] = "13579" d['4'] = "02468" d['6'] = "13579" d['8'] = "02468" dt = [0 for _ in range(10)] for i in range(0,len(s)): if i and s[i] in d and s[i-1] in d[s[i]]: ans+= i if s[i] in "048": ans+=1 print(ans) ```
3
281
A
Word Capitalization
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word. Note, that during capitalization all the letters except the first one remains unchanged.
A single line contains a non-empty word. This word consists of lowercase and uppercase English letters. The length of the word will not exceed 103.
Output the given word after capitalization.
[ "ApPLe\n", "konjac\n" ]
[ "ApPLe\n", "Konjac\n" ]
none
500
[ { "input": "ApPLe", "output": "ApPLe" }, { "input": "konjac", "output": "Konjac" }, { "input": "a", "output": "A" }, { "input": "A", "output": "A" }, { "input": "z", "output": "Z" }, { "input": "ABACABA", "output": "ABACABA" }, { "input": "...
1,698,741,451
2,147,483,647
Python 3
OK
TESTS
25
122
0
# Input word = input() # Capitalize the first character capitalized_word = word[0].upper() + word[1:] # Output the capitalized word print(capitalized_word)
Title: Word Capitalization Time Limit: None seconds Memory Limit: None megabytes Problem Description: Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word. Note, that during capitalization all the letters except the first one remains unchanged. Input...
```python # Input word = input() # Capitalize the first character capitalized_word = word[0].upper() + word[1:] # Output the capitalized word print(capitalized_word) ```
3
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,645,502,081
2,147,483,647
Python 3
OK
TESTS
32
92
0
odd=[] even=[] n=int(input()) m=list(map(int,input().split(' '))) for i in range(n): if (m[i]%2)==0: even.append(i+1) else: odd.append(i+1) if len(even)==1: print(even[0]) else: print(odd[0])
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python odd=[] even=[] n=int(input()) m=list(map(int,input().split(' '))) for i in range(n): if (m[i]%2)==0: even.append(i+1) else: odd.append(i+1) if len(even)==1: print(even[0]) else: print(odd[0]) ```
3.977
875
A
Classroom Watch
PROGRAMMING
1,200
[ "brute force", "math" ]
null
null
Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answered Vova that *n* is the answer to the arithmetic task for first-graders. In the textbook, a certain ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=109).
In the first line print one integer *k* — number of different values of *x* satisfying the condition. In next *k* lines print these values in ascending order.
[ "21\n", "20\n" ]
[ "1\n15\n", "0\n" ]
In the first test case *x* = 15 there is only one variant: 15 + 1 + 5 = 21. In the second test case there are no such *x*.
500
[ { "input": "21", "output": "1\n15" }, { "input": "20", "output": "0" }, { "input": "1", "output": "0" }, { "input": "2", "output": "1\n1" }, { "input": "3", "output": "0" }, { "input": "100000001", "output": "2\n99999937\n100000000" }, { "i...
1,678,872,683
2,147,483,647
PyPy 3
OK
TESTS
18
92
0
n = int(input()) li = [x for x in range(max(1, n-99), n) if x + sum(map(int, str(x))) == n] print(len(li)) print(*li)
Title: Classroom Watch Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answe...
```python n = int(input()) li = [x for x in range(max(1, n-99), n) if x + sum(map(int, str(x))) == n] print(len(li)) print(*li) ```
3
716
A
Crazy Computer
PROGRAMMING
800
[ "implementation" ]
null
null
ZS the Coder is coding on a crazy computer. If you don't type in a word for a *c* consecutive seconds, everything you typed disappear! More formally, if you typed a word at second *a* and then the next word at second *b*, then if *b*<=-<=*a*<=≤<=*c*, just the new word is appended to other words on the screen. If *b*<...
The first line contains two integers *n* and *c* (1<=≤<=*n*<=≤<=100<=000,<=1<=≤<=*c*<=≤<=109) — the number of words ZS the Coder typed and the crazy computer delay respectively. The next line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t*1<=&lt;<=*t*2<=&lt;<=...<=&lt;<=*t**n*<=≤<=109), where *t**i* denote...
Print a single positive integer, the number of words that remain on the screen after all *n* words was typed, in other words, at the second *t**n*.
[ "6 5\n1 3 8 14 19 20\n", "6 1\n1 3 5 7 9 10\n" ]
[ "3", "2" ]
The first sample is already explained in the problem statement. For the second sample, after typing the first word at the second 1, it disappears because the next word is typed at the second 3 and 3 - 1 &gt; 1. Similarly, only 1 word will remain at the second 9. Then, a word is typed at the second 10, so there will be...
500
[ { "input": "6 5\n1 3 8 14 19 20", "output": "3" }, { "input": "6 1\n1 3 5 7 9 10", "output": "2" }, { "input": "1 1\n1000000000", "output": "1" }, { "input": "5 5\n1 7 12 13 14", "output": "4" }, { "input": "2 1000000000\n1 1000000000", "output": "2" }, { ...
1,636,025,117
2,147,483,647
Python 3
OK
TESTS
81
109
13,004,800
#link : https://codeforces.com/contest/716/problem/A #time: o(n) n , m = map(int, input().split()) z = list(map(int,input().split())) x = 1 for i in range(1,n): if z[i]-z[i-1] <= m : x+=1 else: x = 1 print(x)
Title: Crazy Computer Time Limit: None seconds Memory Limit: None megabytes Problem Description: ZS the Coder is coding on a crazy computer. If you don't type in a word for a *c* consecutive seconds, everything you typed disappear! More formally, if you typed a word at second *a* and then the next word at second *...
```python #link : https://codeforces.com/contest/716/problem/A #time: o(n) n , m = map(int, input().split()) z = list(map(int,input().split())) x = 1 for i in range(1,n): if z[i]-z[i-1] <= m : x+=1 else: x = 1 print(x) ```
3
448
A
Rewards
PROGRAMMING
800
[ "implementation" ]
null
null
Bizon the Champion is called the Champion for a reason. Bizon the Champion has recently got a present — a new glass cupboard with *n* shelves and he decided to put all his presents there. All the presents can be divided into two types: medals and cups. Bizon the Champion has *a*1 first prize cups, *a*2 second prize c...
The first line contains integers *a*1, *a*2 and *a*3 (0<=≤<=*a*1,<=*a*2,<=*a*3<=≤<=100). The second line contains integers *b*1, *b*2 and *b*3 (0<=≤<=*b*1,<=*b*2,<=*b*3<=≤<=100). The third line contains integer *n* (1<=≤<=*n*<=≤<=100). The numbers in the lines are separated by single spaces.
Print "YES" (without the quotes) if all the rewards can be put on the shelves in the described manner. Otherwise, print "NO" (without the quotes).
[ "1 1 1\n1 1 1\n4\n", "1 1 3\n2 3 4\n2\n", "1 0 0\n1 0 0\n1\n" ]
[ "YES\n", "YES\n", "NO\n" ]
none
500
[ { "input": "1 1 1\n1 1 1\n4", "output": "YES" }, { "input": "1 1 3\n2 3 4\n2", "output": "YES" }, { "input": "1 0 0\n1 0 0\n1", "output": "NO" }, { "input": "0 0 0\n0 0 0\n1", "output": "YES" }, { "input": "100 100 100\n100 100 100\n100", "output": "YES" }, ...
1,635,742,697
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
4,198,400
a = int(input()) a = a+1 a = a+(a%2) print(a) # Mon Nov 01 2021 04:58:17 GMT+0000 (Coordinated Universal Time)
Title: Rewards Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bizon the Champion is called the Champion for a reason. Bizon the Champion has recently got a present — a new glass cupboard with *n* shelves and he decided to put all his presents there. All the presents can be divided into ...
```python a = int(input()) a = a+1 a = a+(a%2) print(a) # Mon Nov 01 2021 04:58:17 GMT+0000 (Coordinated Universal Time) ```
-1
235
A
LCM Challenge
PROGRAMMING
1,600
[ "number theory" ]
null
null
Some days ago, I learned the concept of LCM (least common multiple). I've played with it for several times and I want to make a big number with it. But I also don't want to use many numbers, so I'll choose three positive integers (they don't have to be distinct) which are not greater than *n*. Can you help me to find ...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=106) — the *n* mentioned in the statement.
Print a single integer — the maximum possible LCM of three not necessarily distinct positive integers that are not greater than *n*.
[ "9\n", "7\n" ]
[ "504\n", "210\n" ]
The least common multiple of some positive integers is the least positive integer which is multiple for each of them. The result may become very large, 32-bit integer won't be enough. So using 64-bit integers is recommended. For the last example, we can chose numbers 7, 6, 5 and the LCM of them is 7·6·5 = 210. It is ...
500
[ { "input": "9", "output": "504" }, { "input": "7", "output": "210" }, { "input": "1", "output": "1" }, { "input": "5", "output": "60" }, { "input": "6", "output": "60" }, { "input": "33", "output": "32736" }, { "input": "21", "output": ...
1,655,098,387
2,147,483,647
PyPy 3-64
OK
TESTS
87
216
0
import math a=int(input()) if a==1 or a==2: print(a) exit() if a%2==1: ans=(a-1)*(a-2)*(a) print(ans) else: if a%2==0 and a%3==0: ans=(a-1)*(a-2)*(a-3) print(ans) # print() else: first=(a-1)*(a-2)*(a-3) second=(a)*(a-1)*(a-3) print(max(first,second))
Title: LCM Challenge Time Limit: None seconds Memory Limit: None megabytes Problem Description: Some days ago, I learned the concept of LCM (least common multiple). I've played with it for several times and I want to make a big number with it. But I also don't want to use many numbers, so I'll choose three positive...
```python import math a=int(input()) if a==1 or a==2: print(a) exit() if a%2==1: ans=(a-1)*(a-2)*(a) print(ans) else: if a%2==0 and a%3==0: ans=(a-1)*(a-2)*(a-3) print(ans) # print() else: first=(a-1)*(a-2)*(a-3) second=(a)*(a-1)*(a-3) print(max(first,second)) ```
3
116
A
Tram
PROGRAMMING
800
[ "implementation" ]
null
null
Linear Kingdom has exactly one tram line. It has *n* stops, numbered from 1 to *n* in the order of tram's movement. At the *i*-th stop *a**i* passengers exit the tram, while *b**i* passengers enter it. The tram is empty before it arrives at the first stop. Also, when the tram arrives at the last stop, all passengers ex...
The first line contains a single number *n* (2<=≤<=*n*<=≤<=1000) — the number of the tram's stops. Then *n* lines follow, each contains two integers *a**i* and *b**i* (0<=≤<=*a**i*,<=*b**i*<=≤<=1000) — the number of passengers that exits the tram at the *i*-th stop, and the number of passengers that enter the tram at...
Print a single integer denoting the minimum possible capacity of the tram (0 is allowed).
[ "4\n0 3\n2 5\n4 2\n4 0\n" ]
[ "6\n" ]
For the first example, a capacity of 6 is sufficient: - At the first stop, the number of passengers inside the tram before arriving is 0. Then, 3 passengers enter the tram, and the number of passengers inside the tram becomes 3. - At the second stop, 2 passengers exit the tram (1 passenger remains inside). Then, 5 ...
500
[ { "input": "4\n0 3\n2 5\n4 2\n4 0", "output": "6" }, { "input": "5\n0 4\n4 6\n6 5\n5 4\n4 0", "output": "6" }, { "input": "10\n0 5\n1 7\n10 8\n5 3\n0 5\n3 3\n8 8\n0 6\n10 1\n9 0", "output": "18" }, { "input": "3\n0 1\n1 1\n1 0", "output": "1" }, { "input": "4\n0 1...
1,695,537,792
2,147,483,647
PyPy 3-64
OK
TESTS
71
218
1,945,600
n = int(input()) a = [] k = 0 d = 0 for i in range(n): a = [int(i) for i in input().split()] d += a[1] - a[0] if d > k: k = d print(k)
Title: Tram Time Limit: None seconds Memory Limit: None megabytes Problem Description: Linear Kingdom has exactly one tram line. It has *n* stops, numbered from 1 to *n* in the order of tram's movement. At the *i*-th stop *a**i* passengers exit the tram, while *b**i* passengers enter it. The tram is empty before it ...
```python n = int(input()) a = [] k = 0 d = 0 for i in range(n): a = [int(i) for i in input().split()] d += a[1] - a[0] if d > k: k = d print(k) ```
3
893
B
Beautiful Divisors
PROGRAMMING
1,000
[ "brute force", "implementation" ]
null
null
Recently Luba learned about a special kind of numbers that she calls beautiful numbers. The number is called beautiful iff its binary representation consists of *k*<=+<=1 consecutive ones, and then *k* consecutive zeroes. Some examples of beautiful numbers: - 12 (110); - 1102 (610); - 11110002 (12010); - 1111100...
The only line of input contains one number *n* (1<=≤<=*n*<=≤<=105) — the number Luba has got.
Output one number — the greatest beautiful divisor of Luba's number. It is obvious that the answer always exists.
[ "3\n", "992\n" ]
[ "1\n", "496\n" ]
none
0
[ { "input": "3", "output": "1" }, { "input": "992", "output": "496" }, { "input": "81142", "output": "1" }, { "input": "76920", "output": "120" }, { "input": "2016", "output": "2016" }, { "input": "1", "output": "1" }, { "input": "6", "o...
1,696,152,568
2,147,483,647
PyPy 3-64
OK
TESTS
49
77
0
n = int(input()) l = [1,6,28,120,496,2016,8128,32640] a=[] for i in l: if n%i ==0 : a.append(i) print(a[-1])
Title: Beautiful Divisors Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently Luba learned about a special kind of numbers that she calls beautiful numbers. The number is called beautiful iff its binary representation consists of *k*<=+<=1 consecutive ones, and then *k* consecutive ze...
```python n = int(input()) l = [1,6,28,120,496,2016,8128,32640] a=[] for i in l: if n%i ==0 : a.append(i) print(a[-1]) ```
3
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,653,099,511
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n_games = int(input()) d = {} for i in range(n_games): team = input() if team not in d: d[team] = 1 else: d[team] += 1 t1, t2 = list(d.keys()) if d[t1] > d[t2]: print(t1) else: print(t2)
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python n_games = int(input()) d = {} for i in range(n_games): team = input() if team not in d: d[team] = 1 else: d[team] += 1 t1, t2 = list(d.keys()) if d[t1] > d[t2]: print(t1) else: print(t2) ```
-1
507
C
Guess Your Way Out!
PROGRAMMING
1,700
[ "implementation", "math", "trees" ]
null
null
Amr bought a new video game "Guess Your Way Out!". The goal of the game is to find an exit from the maze that looks like a perfect binary tree of height *h*. The player is initially standing at the root of the tree and the exit from the tree is located at some leaf node. Let's index all the leaf nodes from the left t...
Input consists of two integers *h*,<=*n* (1<=≤<=*h*<=≤<=50, 1<=≤<=*n*<=≤<=2*h*).
Output a single integer representing the number of nodes (excluding the exit node) Amr is going to visit before reaching the exit by following this algorithm.
[ "1 2\n", "2 3\n", "3 6\n", "10 1024\n" ]
[ "2", "5", "10", "2046" ]
A perfect binary tree of height *h* is a binary tree consisting of *h* + 1 levels. Level 0 consists of a single node called root, level *h* consists of 2<sup class="upper-index">*h*</sup> nodes called leaves. Each node that is not a leaf has exactly two children, left and right one. Following picture illustrates the ...
1,500
[ { "input": "1 2", "output": "2" }, { "input": "2 3", "output": "5" }, { "input": "3 6", "output": "10" }, { "input": "10 1024", "output": "2046" }, { "input": "10 577", "output": "1345" }, { "input": "11 550", "output": "408" }, { "input": ...
1,586,422,943
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
0
1,000
1,228,800
h,n=map(int,input().split(" ")) res=0 s=0 while(h!=0): res+=1 if s^(n>(1<<(h-1))): res+=1<<(h) - 1 else: s^=1 if n>1<<(h-1): n-=1<<(h-1) print(res)
Title: Guess Your Way Out! Time Limit: None seconds Memory Limit: None megabytes Problem Description: Amr bought a new video game "Guess Your Way Out!". The goal of the game is to find an exit from the maze that looks like a perfect binary tree of height *h*. The player is initially standing at the root of the tree ...
```python h,n=map(int,input().split(" ")) res=0 s=0 while(h!=0): res+=1 if s^(n>(1<<(h-1))): res+=1<<(h) - 1 else: s^=1 if n>1<<(h-1): n-=1<<(h-1) print(res) ```
0
550
C
Divisibility by Eight
PROGRAMMING
1,500
[ "brute force", "dp", "math" ]
null
null
You are given a non-negative integer *n*, its decimal representation consists of at most 100 digits and doesn't contain leading zeroes. Your task is to determine if it is possible in this case to remove some of the digits (possibly not remove any digit at all) so that the result contains at least one digit, forms a no...
The single line of the input contains a non-negative integer *n*. The representation of number *n* doesn't contain any leading zeroes and its length doesn't exceed 100 digits.
Print "NO" (without quotes), if there is no such way to remove some digits from number *n*. Otherwise, print "YES" in the first line and the resulting number after removing digits from number *n* in the second line. The printed number must be divisible by 8. If there are multiple possible answers, you may print any ...
[ "3454\n", "10\n", "111111\n" ]
[ "YES\n344\n", "YES\n0\n", "NO\n" ]
none
1,000
[ { "input": "3454", "output": "YES\n344" }, { "input": "10", "output": "YES\n0" }, { "input": "111111", "output": "NO" }, { "input": "8996988892", "output": "YES\n8" }, { "input": "5555555555", "output": "NO" }, { "input": "1", "output": "NO" }, ...
1,678,199,227
2,147,483,647
PyPy 3-64
OK
TESTS
73
62
1,740,800
# ﷽ import sys input = lambda: sys.stdin.readline().strip() mod=7+10**9 def solve(): s=input() n=len(s) for i in range(n): for j in range(i+1,n): for k in range(j+1,n): if int(s[i]+s[j]+s[k])%8==0: return int(s[i]+s[j]+s[k]) ...
Title: Divisibility by Eight Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a non-negative integer *n*, its decimal representation consists of at most 100 digits and doesn't contain leading zeroes. Your task is to determine if it is possible in this case to remove some of t...
```python # ﷽ import sys input = lambda: sys.stdin.readline().strip() mod=7+10**9 def solve(): s=input() n=len(s) for i in range(n): for j in range(i+1,n): for k in range(j+1,n): if int(s[i]+s[j]+s[k])%8==0: return int(s[i]+s[j]+s[k])...
3
842
A
Kirill And The Game
PROGRAMMING
1,200
[ "brute force", "two pointers" ]
null
null
Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers — amount of experience and cost. The efficiency of a potion is the ratio of the amount of experience to the cost. Efficiency may be a non-integer number. For each two integer numbers ...
First string contains five integer numbers *l*, *r*, *x*, *y*, *k* (1<=≤<=*l*<=≤<=*r*<=≤<=107, 1<=≤<=*x*<=≤<=*y*<=≤<=107, 1<=≤<=*k*<=≤<=107).
Print "YES" without quotes if a potion with efficiency exactly *k* can be bought in the store and "NO" without quotes otherwise. You can output each of the letters in any register.
[ "1 10 1 10 1\n", "1 5 6 10 1\n" ]
[ "YES", "NO" ]
none
500
[ { "input": "1 10 1 10 1", "output": "YES" }, { "input": "1 5 6 10 1", "output": "NO" }, { "input": "1 1 1 1 1", "output": "YES" }, { "input": "1 1 1 1 2", "output": "NO" }, { "input": "1 100000 1 100000 100000", "output": "YES" }, { "input": "1 100000 ...
1,688,548,858
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
13
62
0
import math def chk(q, p): return math.ceil(p) <= p l, r, x, y, k = [int(x)+0. for x in input().split()] kmin = k*k*x/r kmax = k*k*y/l if kmin <= k and k <= kmax and ((chk(l/kmin, r/kmin) and chk(x*kmin, y*kmin)) or ((chk(l/kmax, r/kmax) and chk(x*kmax, y*kmax)))): print('YES') else: print('NO')
Title: Kirill And The Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers — amount of experience and cost. The efficiency of a potion is the ratio of the...
```python import math def chk(q, p): return math.ceil(p) <= p l, r, x, y, k = [int(x)+0. for x in input().split()] kmin = k*k*x/r kmax = k*k*y/l if kmin <= k and k <= kmax and ((chk(l/kmin, r/kmin) and chk(x*kmin, y*kmin)) or ((chk(l/kmax, r/kmax) and chk(x*kmax, y*kmax)))): print('YES') else: 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,614,091,782
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
2
3,000
307,200
count=0 n=int(input()) for i in range(1,n+1): for j in range(i+1,n+1): if i!=j: for k in range(j+1,n+1): if i==k or j==k: pass else: if max(i,j,k)==i: if i*i==j*j+k*k: ...
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 count=0 n=int(input()) for i in range(1,n+1): for j in range(i+1,n+1): if i!=j: for k in range(j+1,n+1): if i==k or j==k: pass else: if max(i,j,k)==i: if i*i==j*j+k*k: ...
0
34
B
Sale
PROGRAMMING
900
[ "greedy", "sortings" ]
B. Sale
2
256
Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can «buy» any TV sets he wants. Though he's very strong, Bob can carry at most *m* TV set...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*m*<=≤<=*n*<=≤<=100) — amount of TV sets at the sale, and amount of TV sets that Bob can carry. The following line contains *n* space-separated integers *a**i* (<=-<=1000<=≤<=*a**i*<=≤<=1000) — prices of the TV sets.
Output the only number — the maximum sum of money that Bob can earn, given that he can carry at most *m* TV sets.
[ "5 3\n-6 0 35 -2 4\n", "4 2\n7 0 0 -7\n" ]
[ "8\n", "7\n" ]
none
1,000
[ { "input": "5 3\n-6 0 35 -2 4", "output": "8" }, { "input": "4 2\n7 0 0 -7", "output": "7" }, { "input": "6 6\n756 -611 251 -66 572 -818", "output": "1495" }, { "input": "5 5\n976 437 937 788 518", "output": "0" }, { "input": "5 3\n-2 -2 -2 -2 -2", "output": "...
1,696,244,260
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
92
0
m,n = map(int,input().split()) a = list(map(int,input().split())) a.sort() c = 0 for i in range(n) : c += abs(a[i]) print(c)
Title: Sale Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can...
```python m,n = map(int,input().split()) a = list(map(int,input().split())) a.sort() c = 0 for i in range(n) : c += abs(a[i]) print(c) ```
0
556
A
Case of the Zeros and Ones
PROGRAMMING
900
[ "greedy" ]
null
null
Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Consider the following operation: we choose any two adjacent positions in the string, and if one them contains 0, an...
First line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=2·105), the length of the string that Andreid has. The second line contains the string of length *n* consisting only from zeros and ones.
Output the minimum length of the string that may remain after applying the described operations several times.
[ "4\n1100\n", "5\n01010\n", "8\n11101111\n" ]
[ "0\n", "1\n", "6\n" ]
In the first sample test it is possible to change the string like the following: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/10df55364c21c6e8d5da31b6ab6f6294c4fc26b3.png" style="max-width: 100.0%;max-height: 100.0%;"/>. In the second sample test it is possible to change the string like...
250
[ { "input": "4\n1100", "output": "0" }, { "input": "5\n01010", "output": "1" }, { "input": "8\n11101111", "output": "6" }, { "input": "1\n0", "output": "1" }, { "input": "1\n1", "output": "1" }, { "input": "2\n00", "output": "2" }, { "input"...
1,610,639,586
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
11
1,000
819,200
length = int(input()) text = input() while "0" in text and "1" in text: new_text = "" i = 0 while i < len(text): if i >= len(text) - 1: new_text += text[-1] break if text[i] == "0" and text[i+1] == "1": i+=2 elif text[i] == "1" and text[i+1] == "0...
Title: Case of the Zeros and Ones Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Cons...
```python length = int(input()) text = input() while "0" in text and "1" in text: new_text = "" i = 0 while i < len(text): if i >= len(text) - 1: new_text += text[-1] break if text[i] == "0" and text[i+1] == "1": i+=2 elif text[i] == "1" and text[...
0
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,630,510,514
2,147,483,647
Python 3
OK
TESTS
30
154
6,758,400
word = input() b = 0 s = 0 for i in range(len(word)): if word[i].isupper(): b += 1 else: s+=1 if b>s : print(word.upper()) else: print(word.lower())
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python word = input() b = 0 s = 0 for i in range(len(word)): if word[i].isupper(): b += 1 else: s+=1 if b>s : print(word.upper()) else: print(word.lower()) ```
3.948911
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,648,255,277
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n=input() s=0 while(int(n)>9): n=sum(map(int,str(n))) s=s+1 print s
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 n=input() s=0 while(int(n)>9): n=sum(map(int,str(n))) s=s+1 print s ```
-1
3
D
Least Cost Bracket Sequence
PROGRAMMING
2,600
[ "greedy" ]
D. Least Cost Bracket Sequence
1
64
This is yet another problem on regular bracket sequences. A bracket sequence is called regular, if by inserting "+" and "1" into it we get a correct mathematical expression. For example, sequences "(())()", "()" and "(()(()))" are regular, while ")(", "(()" and "(()))(" are not. You have a pattern of a bracket sequenc...
The first line contains a non-empty pattern of even length, consisting of characters "(", ")" and "?". Its length doesn't exceed 5·104. Then there follow *m* lines, where *m* is the number of characters "?" in the pattern. Each line contains two integer numbers *a**i* and *b**i* (1<=≤<=*a**i*,<=<=*b**i*<=≤<=106), where...
Print the cost of the optimal regular bracket sequence in the first line, and the required sequence in the second. Print -1, if there is no answer. If the answer is not unique, print any of them.
[ "(??)\n1 2\n2 8\n" ]
[ "4\n()()\n" ]
none
0
[ { "input": "(??)\n1 2\n2 8", "output": "4\n()()" }, { "input": "??\n1 1\n1 1", "output": "2\n()" }, { "input": "(???\n1 1\n1 1\n1 1", "output": "3\n(())" }, { "input": "(??)\n2 1\n1 1", "output": "2\n()()" }, { "input": "(???)?\n3 3\n3 1\n3 3\n2 3", "output": ...
1,540,698,464
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
216
0
s = input() l = len(s) f = list() pm = dict() q = 0 for i in range(l): f.append(s[i]) if s[i] == '?': pm[q] = i q = q + 1 vx = dict() vy = dict() for i in range(q): l2 = input().split() vx[i] = int(l2[0]) vy[i] = int(l2[1]) cost = 0 i = 0 while(i<l): if f[i] ...
Title: Least Cost Bracket Sequence Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: This is yet another problem on regular bracket sequences. A bracket sequence is called regular, if by inserting "+" and "1" into it we get a correct mathematical expression. For example, sequences "(())()", "()"...
```python s = input() l = len(s) f = list() pm = dict() q = 0 for i in range(l): f.append(s[i]) if s[i] == '?': pm[q] = i q = q + 1 vx = dict() vy = dict() for i in range(q): l2 = input().split() vx[i] = int(l2[0]) vy[i] = int(l2[1]) cost = 0 i = 0 while(i<l): ...
0
228
A
Is your horseshoe on the other hoof?
PROGRAMMING
800
[ "implementation" ]
null
null
Valera the Horse is going to the party with friends. He has been following the fashion trends for a while, and he knows that it is very popular to wear all horseshoes of different color. Valera has got four horseshoes left from the last year, but maybe some of them have the same color. In this case he needs to go to th...
The first line contains four space-separated integers *s*1,<=*s*2,<=*s*3,<=*s*4 (1<=≤<=*s*1,<=*s*2,<=*s*3,<=*s*4<=≤<=109) — the colors of horseshoes Valera has. Consider all possible colors indexed with integers.
Print a single integer — the minimum number of horseshoes Valera needs to buy.
[ "1 7 3 3\n", "7 7 7 7\n" ]
[ "1\n", "3\n" ]
none
500
[ { "input": "1 7 3 3", "output": "1" }, { "input": "7 7 7 7", "output": "3" }, { "input": "81170865 673572653 756938629 995577259", "output": "0" }, { "input": "3491663 217797045 522540872 715355328", "output": "0" }, { "input": "251590420 586975278 916631563 58697...
1,687,787,744
2,147,483,647
PyPy 3-64
OK
TESTS
34
122
0
a, b, c, d = map(int, input().split(" ")) v = [a] cnt = 0 if b not in v: v.append(b) else: cnt += 1 if c not in v: v.append(c) else: cnt += 1 if d not in v: v.append(d) else: cnt += 1 print(cnt)
Title: Is your horseshoe on the other hoof? Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera the Horse is going to the party with friends. He has been following the fashion trends for a while, and he knows that it is very popular to wear all horseshoes of different color. Valera has ...
```python a, b, c, d = map(int, input().split(" ")) v = [a] cnt = 0 if b not in v: v.append(b) else: cnt += 1 if c not in v: v.append(c) else: cnt += 1 if d not in v: v.append(d) else: cnt += 1 print(cnt) ```
3
43
B
Letter
PROGRAMMING
1,100
[ "implementation", "strings" ]
B. Letter
2
256
Vasya decided to write an anonymous letter cutting the letters out of a newspaper heading. He knows heading *s*1 and text *s*2 that he wants to send. Vasya can use every single heading letter no more than once. Vasya doesn't have to cut the spaces out of the heading — he just leaves some blank space to mark them. Help ...
The first line contains a newspaper heading *s*1. The second line contains the letter text *s*2. *s*1 и *s*2 are non-empty lines consisting of spaces, uppercase and lowercase Latin letters, whose lengths do not exceed 200 symbols. The uppercase and lowercase letters should be differentiated. Vasya does not cut spaces o...
If Vasya can write the given anonymous letter, print YES, otherwise print NO
[ "Instead of dogging Your footsteps it disappears but you dont notice anything\nwhere is your dog\n", "Instead of dogging Your footsteps it disappears but you dont notice anything\nYour dog is upstears\n", "Instead of dogging your footsteps it disappears but you dont notice anything\nYour dog is upstears\n", "...
[ "NO\n", "YES\n", "NO\n", "YES\n" ]
none
1,000
[ { "input": "Instead of dogging Your footsteps it disappears but you dont notice anything\nwhere is your dog", "output": "NO" }, { "input": "Instead of dogging Your footsteps it disappears but you dont notice anything\nYour dog is upstears", "output": "YES" }, { "input": "Instead of doggi...
1,687,064,175
2,147,483,647
PyPy 3
OK
TESTS
30
184
0
def main(): dict = {} first = input() second = input() for char in first: if char != ' ': if char not in dict: dict[char] = 1 else: dict[char] += 1 not_found = False for char in second: if char != ' ': if char no...
Title: Letter Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya decided to write an anonymous letter cutting the letters out of a newspaper heading. He knows heading *s*1 and text *s*2 that he wants to send. Vasya can use every single heading letter no more than once. Vasya doesn't have to...
```python def main(): dict = {} first = input() second = input() for char in first: if char != ' ': if char not in dict: dict[char] = 1 else: dict[char] += 1 not_found = False for char in second: if char != ' ': ...
3.954
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,611,337,794
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
0
a=input() b=sum([i.islower() for i in a]) c=sum([i.isupper() for i in a]) if(b>c): print(a.lower()) else: print(a.upper())
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python a=input() b=sum([i.islower() for i in a]) c=sum([i.isupper() for i in a]) if(b>c): print(a.lower()) else: print(a.upper()) ```
0
336
B
Vasily the Bear and Fly
PROGRAMMING
1,900
[ "math" ]
null
null
One beautiful day Vasily the bear painted 2*m* circles of the same radius *R* on a coordinate plane. Circles with numbers from 1 to *m* had centers at points (2*R*<=-<=*R*,<=0), (4*R*<=-<=*R*,<=0), ..., (2*Rm*<=-<=*R*,<=0), respectively. Circles with numbers from *m*<=+<=1 to 2*m* had centers at points (2*R*<=-<=*R*,<=...
The first line contains two integers *m*,<=*R* (1<=≤<=*m*<=≤<=105, 1<=≤<=*R*<=≤<=10).
In a single line print a single real number — the answer to the problem. The answer will be considered correct if its absolute or relative error doesn't exceed 10<=-<=6.
[ "1 1\n", "2 2\n" ]
[ "2.0000000000\n", "5.4142135624\n" ]
<img class="tex-graphics" src="https://espresso.codeforces.com/9fe384073741e20965ddc4bf162afd3a604b6b39.png" style="max-width: 100.0%;max-height: 100.0%;"/> Figure to the second sample
1,000
[ { "input": "1 1", "output": "2.0000000000" }, { "input": "2 2", "output": "5.4142135624" }, { "input": "100000 3", "output": "200002.4853316681" }, { "input": "2344 5", "output": "7817.4790439982" }, { "input": "999 10", "output": "6668.3010410807" }, { ...
1,376,484,316
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
1
92
0
import math m,R=map(int,input().split()) cord=math.sqrt(2*(R**2)) li=0 unit=int(2*R) x=(m)*(m/2) for i in range(m): li+=2*R*m li+=(cord*(m-1)) if(i==0 or i==m-1): if(m==1): continue ans+=cord*(m-2) else: if(m==1): continue li+=cor...
Title: Vasily the Bear and Fly Time Limit: None seconds Memory Limit: None megabytes Problem Description: One beautiful day Vasily the bear painted 2*m* circles of the same radius *R* on a coordinate plane. Circles with numbers from 1 to *m* had centers at points (2*R*<=-<=*R*,<=0), (4*R*<=-<=*R*,<=0), ..., (2*Rm*<=...
```python import math m,R=map(int,input().split()) cord=math.sqrt(2*(R**2)) li=0 unit=int(2*R) x=(m)*(m/2) for i in range(m): li+=2*R*m li+=(cord*(m-1)) if(i==0 or i==m-1): if(m==1): continue ans+=cord*(m-2) else: if(m==1): continue ...
-1
729
A
Interview with Oleg
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
Polycarp has interviewed Oleg and has written the interview down without punctuation marks and spaces to save time. Thus, the interview is now a string *s* consisting of *n* lowercase English letters. There is a filler word ogo in Oleg's speech. All words that can be obtained from ogo by adding go several times to the...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100) — the length of the interview. The second line contains the string *s* of length *n*, consisting of lowercase English letters.
Print the interview text after the replacement of each of the fillers with "***". It is allowed for the substring "***" to have several consecutive occurences.
[ "7\naogogob\n", "13\nogogmgogogogo\n", "9\nogoogoogo\n" ]
[ "a***b\n", "***gmg***\n", "*********\n" ]
The first sample contains one filler word ogogo, so the interview for printing is "a***b". The second sample contains two fillers ogo and ogogogo. Thus, the interview is transformed to "***gmg***".
500
[ { "input": "7\naogogob", "output": "a***b" }, { "input": "13\nogogmgogogogo", "output": "***gmg***" }, { "input": "9\nogoogoogo", "output": "*********" }, { "input": "32\nabcdefogoghijklmnogoopqrstuvwxyz", "output": "abcdef***ghijklmn***opqrstuvwxyz" }, { "input":...
1,582,974,666
2,147,483,647
Python 3
OK
TESTS
48
124
0
n, s = int(input()) // 2, input() while n: s = s.replace('og' * n + 'o', '***') n -= 1 print(s)
Title: Interview with Oleg Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp has interviewed Oleg and has written the interview down without punctuation marks and spaces to save time. Thus, the interview is now a string *s* consisting of *n* lowercase English letters. There is a fi...
```python n, s = int(input()) // 2, input() while n: s = s.replace('og' * n + 'o', '***') n -= 1 print(s) ```
3
96
A
Football
PROGRAMMING
900
[ "implementation", "strings" ]
A. Football
2
256
Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A zero corresponds to players of one team; a one corresponds to players of another team. If...
The first input line contains a non-empty string consisting of characters "0" and "1", which represents players. The length of the string does not exceed 100 characters. There's at least one player from each team present on the field.
Print "YES" if the situation is dangerous. Otherwise, print "NO".
[ "001001\n", "1000000001\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "001001", "output": "NO" }, { "input": "1000000001", "output": "YES" }, { "input": "00100110111111101", "output": "YES" }, { "input": "11110111111111111", "output": "YES" }, { "input": "01", "output": "NO" }, { "input": "10100101", "outp...
1,666,886,127
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
92
0
s=input() if s.count("0000000")==1 or s.count("1111111")==1: print("YES") else: print("NO")
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A...
```python s=input() if s.count("0000000")==1 or s.count("1111111")==1: print("YES") else: print("NO") ```
0
761
B
Dasha and friends
PROGRAMMING
1,300
[ "brute force", "implementation", "math" ]
null
null
Running with barriers on the circle track is very popular in the country where Dasha lives, so no wonder that on her way to classes she saw the following situation: The track is the circle with length *L*, in distinct points of which there are *n* barriers. Athlete always run the track in counterclockwise direction if...
The first line contains two integers *n* and *L* (1<=≤<=*n*<=≤<=50, *n*<=≤<=*L*<=≤<=100) — the number of barriers on a track and its length. The second line contains *n* distinct integers in the ascending order — the distance from Kefa's start to each barrier in the order of its appearance. All integers are in the ra...
Print "YES" (without quotes), if Kefa and Sasha ran the coinciding tracks (it means that the position of all barriers coincides, if they start running from the same points on the track). Otherwise print "NO" (without quotes).
[ "3 8\n2 4 6\n1 5 7\n", "4 9\n2 3 5 8\n0 1 3 6\n", "2 4\n1 3\n1 2\n" ]
[ "YES\n", "YES\n", "NO\n" ]
The first test is analyzed in the statement.
1,000
[ { "input": "3 8\n2 4 6\n1 5 7", "output": "YES" }, { "input": "4 9\n2 3 5 8\n0 1 3 6", "output": "YES" }, { "input": "2 4\n1 3\n1 2", "output": "NO" }, { "input": "5 9\n0 2 5 6 7\n1 3 6 7 8", "output": "YES" }, { "input": "5 60\n7 26 27 40 59\n14 22 41 42 55", ...
1,570,186,081
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
109
0
n,l= map(int,input().split()) a= list(map(int,input().split())) b= list(map(int,input().split())) l11= [a[i+1]-a[i] for i in range(n-1)] a1= [a[-1]]+ a[:n-1] l1= [abs(a1[i+1]-a1[i]) for i in range(n-1)] l2= [b[i+1]- b[i] for i in range(n-1)] if l1==l2 or l11==l2: print("YES") else: print("NO")
Title: Dasha and friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: Running with barriers on the circle track is very popular in the country where Dasha lives, so no wonder that on her way to classes she saw the following situation: The track is the circle with length *L*, in distinc...
```python n,l= map(int,input().split()) a= list(map(int,input().split())) b= list(map(int,input().split())) l11= [a[i+1]-a[i] for i in range(n-1)] a1= [a[-1]]+ a[:n-1] l1= [abs(a1[i+1]-a1[i]) for i in range(n-1)] l2= [b[i+1]- b[i] for i in range(n-1)] if l1==l2 or l11==l2: print("YES") else: print...
0
709
A
Juicer
PROGRAMMING
900
[ "implementation" ]
null
null
Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To be put in the juicer the orange must have size not exceeding *b*, so if Kolya sees an orange ...
The first line of the input contains three integers *n*, *b* and *d* (1<=≤<=*n*<=≤<=100<=000, 1<=≤<=*b*<=≤<=*d*<=≤<=1<=000<=000) — the number of oranges, the maximum size of the orange that fits in the juicer and the value *d*, which determines the condition when the waste section should be emptied. The second line co...
Print one integer — the number of times Kolya will have to empty the waste section.
[ "2 7 10\n5 6\n", "1 5 10\n7\n", "3 10 10\n5 7 7\n", "1 1 1\n1\n" ]
[ "1\n", "0\n", "1\n", "0\n" ]
In the first sample, Kolya will squeeze the juice from two oranges and empty the waste section afterwards. In the second sample, the orange won't fit in the juicer so Kolya will have no juice at all.
500
[ { "input": "2 7 10\n5 6", "output": "1" }, { "input": "1 5 10\n7", "output": "0" }, { "input": "3 10 10\n5 7 7", "output": "1" }, { "input": "1 1 1\n1", "output": "0" }, { "input": "2 951637 951638\n44069 951637", "output": "1" }, { "input": "50 100 12...
1,632,042,231
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
124
14,233,600
n,b,d=map(int,input().split()) a=list(map(int,input().split())) d1=0 k=0 for i in range(n): if a[i]<b: d1+=a[i] if d1>d: k+=1 d1=0 print(k)
Title: Juicer Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To b...
```python n,b,d=map(int,input().split()) a=list(map(int,input().split())) d1=0 k=0 for i in range(n): if a[i]<b: d1+=a[i] if d1>d: k+=1 d1=0 print(k) ```
0
915
A
Garden
PROGRAMMING
900
[ "implementation" ]
null
null
Luba thinks about watering her garden. The garden can be represented as a segment of length *k*. Luba has got *n* buckets, the *i*-th bucket allows her to water some continuous subsegment of garden of length exactly *a**i* each hour. Luba can't water any parts of the garden that were already watered, also she can't wat...
The first line of input contains two integer numbers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=100) — the number of buckets and the length of the garden, respectively. The second line of input contains *n* integer numbers *a**i* (1<=≤<=*a**i*<=≤<=100) — the length of the segment that can be watered by the *i*-th bucket in one ...
Print one integer number — the minimum number of hours required to water the garden.
[ "3 6\n2 3 5\n", "6 7\n1 2 3 4 5 6\n" ]
[ "2\n", "7\n" ]
In the first test the best option is to choose the bucket that allows to water the segment of length 3. We can't choose the bucket that allows to water the segment of length 5 because then we can't water the whole garden. In the second test we can choose only the bucket that allows us to water the segment of length 1.
0
[ { "input": "3 6\n2 3 5", "output": "2" }, { "input": "6 7\n1 2 3 4 5 6", "output": "7" }, { "input": "5 97\n1 10 50 97 2", "output": "1" }, { "input": "5 97\n1 10 50 100 2", "output": "97" }, { "input": "100 100\n2 46 24 18 86 90 31 38 84 49 58 28 15 80 14 24 87 5...
1,592,331,956
2,147,483,647
Python 3
OK
TESTS
83
109
0
n, k = map(int, input().split()) a = list(map(int, input().split())) cur = 0; for i in range(n): if (k % a[i] == 0 and a[i] > cur): cur = a[i] if (cur == 0): print(k+1) else: print(k//cur)
Title: Garden Time Limit: None seconds Memory Limit: None megabytes Problem Description: Luba thinks about watering her garden. The garden can be represented as a segment of length *k*. Luba has got *n* buckets, the *i*-th bucket allows her to water some continuous subsegment of garden of length exactly *a**i* each ...
```python n, k = map(int, input().split()) a = list(map(int, input().split())) cur = 0; for i in range(n): if (k % a[i] == 0 and a[i] > cur): cur = a[i] if (cur == 0): print(k+1) else: print(k//cur) ```
3
114
A
Cifera
PROGRAMMING
1,000
[ "math" ]
null
null
When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousand and "tma tmyschaya" (which literally means "the tma of tmas") used to stand for a million...
The first input line contains integer number *k*, the second line contains integer number *l* (2<=≤<=*k*,<=*l*<=≤<=231<=-<=1).
You should print in the first line of the output "YES", if the number belongs to the set petriciumus cifera and otherwise print "NO". If the number belongs to the set, then print on the seconds line the only number — the importance of number *l*.
[ "5\n25\n", "3\n8\n" ]
[ "YES\n1\n", "NO\n" ]
none
500
[ { "input": "5\n25", "output": "YES\n1" }, { "input": "3\n8", "output": "NO" }, { "input": "123\n123", "output": "YES\n0" }, { "input": "99\n970300", "output": "NO" }, { "input": "1000\n6666666", "output": "NO" }, { "input": "59\n3571", "output": "N...
1,668,085,909
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
154
0
k=int(input()) l=int(input()) imp=0 while(l%k==0): l/=k imp+=1 if imp>0 and l==1: print("YES") print(imp) else: print("NO")
Title: Cifera Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousa...
```python k=int(input()) l=int(input()) imp=0 while(l%k==0): l/=k imp+=1 if imp>0 and l==1: print("YES") print(imp) else: print("NO") ```
0
82
A
Double Cola
PROGRAMMING
1,100
[ "implementation", "math" ]
A. Double Cola
1
256
Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resulting two Sheldons go to the end of the queue. Then the next in the queue (Leonard) buys a can, d...
The input data consist of a single integer *n* (1<=≤<=*n*<=≤<=109). It is guaranteed that the pretests check the spelling of all the five names, that is, that they contain all the five possible answers.
Print the single line — the name of the person who drinks the *n*-th can of cola. The cans are numbered starting from 1. Please note that you should spell the names like this: "Sheldon", "Leonard", "Penny", "Rajesh", "Howard" (without the quotes). In that order precisely the friends are in the queue initially.
[ "1\n", "6\n", "1802\n" ]
[ "Sheldon\n", "Sheldon\n", "Penny\n" ]
none
500
[ { "input": "1", "output": "Sheldon" }, { "input": "6", "output": "Sheldon" }, { "input": "1802", "output": "Penny" }, { "input": "1", "output": "Sheldon" }, { "input": "2", "output": "Leonard" }, { "input": "3", "output": "Penny" }, { "inpu...
1,554,604,042
2,147,483,647
Python 3
OK
TESTS
41
124
0
def f(v): if v <= 5: return v else: return f((v - 4) // 2) print(["Sheldon", "Leonard", "Penny", "Rajesh", "Howard"][f(int(input())) - 1])
Title: Double Cola Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resultin...
```python def f(v): if v <= 5: return v else: return f((v - 4) // 2) print(["Sheldon", "Leonard", "Penny", "Rajesh", "Howard"][f(int(input())) - 1]) ```
3.938
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,647,476,921
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
409,600
import re print("YES") if re.match(r"h.*e.*l.*l.*o",input()) 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 import re print("YES") if re.match(r"h.*e.*l.*l.*o",input()) else print("NO") ```
0
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,679,254,149
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
124
0
def makeList (input): strList= list(input.split(" ")) intList = [int(x) for x in strList] return intList inpt1 = input() inpt2 = input() list1 = makeList(inpt1) list2 = makeList(inpt2) flag = list1[0] for i in list2: count=0 while i>0: count+=1 i=i//10 if count>list1[1]: flag -=1 pri...
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 def makeList (input): strList= list(input.split(" ")) intList = [int(x) for x in strList] return intList inpt1 = input() inpt2 = input() list1 = makeList(inpt1) list2 = makeList(inpt2) flag = list1[0] for i in list2: count=0 while i>0: count+=1 i=i//10 if count>list1[1]: fl...
0
922
D
Robot Vacuum Cleaner
PROGRAMMING
1,800
[ "greedy", "sortings" ]
null
null
Pushok the dog has been chasing Imp for a few hours already. Fortunately, Imp knows that Pushok is afraid of a robot vacuum cleaner. While moving, the robot generates a string *t* consisting of letters 's' and 'h', that produces a lot of noise. We define noise of string *t* as the number of occurrences of string "sh...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of strings in robot's memory. Next *n* lines contain the strings *t*1,<=*t*2,<=...,<=*t**n*, one per line. It is guaranteed that the strings are non-empty, contain only English letters 's' and 'h' and their total length does not exceed 105.
Print a single integer — the maxumum possible noise Imp can achieve by changing the order of the strings.
[ "4\nssh\nhs\ns\nhhhs\n", "2\nh\ns\n" ]
[ "18\n", "1\n" ]
The optimal concatenation in the first sample is *ssshhshhhs*.
1,500
[ { "input": "4\nssh\nhs\ns\nhhhs", "output": "18" }, { "input": "2\nh\ns", "output": "1" }, { "input": "6\nh\ns\nhhh\nh\nssssss\ns", "output": "40" }, { "input": "1\ns", "output": "0" }, { "input": "10\nsshshss\nhssssssssh\nhhhhhh\nhhhs\nhshhh\nhhhhshsh\nhh\nh\nshs...
1,666,420,730
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
3
46
0
n = int(input()) a = [] for i in range(n): x = input() s, h = 0, 0 for c in x: if c == 's': s += 1 else: h += 1 a.append([s-h, -s, x]) a.sort(reverse=True) b = [] for sc, ss, st in a: b.append(st) word = ''.join(b) #print(a) allh = word.co...
Title: Robot Vacuum Cleaner Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pushok the dog has been chasing Imp for a few hours already. Fortunately, Imp knows that Pushok is afraid of a robot vacuum cleaner. While moving, the robot generates a string *t* consisting of letters 's' and '...
```python n = int(input()) a = [] for i in range(n): x = input() s, h = 0, 0 for c in x: if c == 's': s += 1 else: h += 1 a.append([s-h, -s, x]) a.sort(reverse=True) b = [] for sc, ss, st in a: b.append(st) word = ''.join(b) #print(a) allh...
0
805
A
Fake NP
PROGRAMMING
1,000
[ "greedy", "math" ]
null
null
Tavak and Seyyed are good friends. Seyyed is very funny and he told Tavak to solve the following problem instead of longest-path. You are given *l* and *r*. For all integers from *l* to *r*, inclusive, we wrote down all of their integer divisors except 1. Find the integer that we wrote down the maximum number of times...
The first line contains two integers *l* and *r* (2<=≤<=*l*<=≤<=*r*<=≤<=109).
Print single integer, the integer that appears maximum number of times in the divisors. If there are multiple answers, print any of them.
[ "19 29\n", "3 6\n" ]
[ "2\n", "3\n" ]
Definition of a divisor: [https://www.mathsisfun.com/definitions/divisor-of-an-integer-.html](https://www.mathsisfun.com/definitions/divisor-of-an-integer-.html) The first example: from 19 to 29 these numbers are divisible by 2: {20, 22, 24, 26, 28}. The second example: from 3 to 6 these numbers are divisible by 3: {...
500
[ { "input": "19 29", "output": "2" }, { "input": "3 6", "output": "2" }, { "input": "39 91", "output": "2" }, { "input": "76 134", "output": "2" }, { "input": "93 95", "output": "2" }, { "input": "17 35", "output": "2" }, { "input": "94 95",...
1,620,205,002
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
24
62
0
''' t = int(input()) while t > 0: n = int(input()) l = list(map(int,input().split())) t -= 1 ''' l, r = map(int,input().split()) print(2)
Title: Fake NP Time Limit: None seconds Memory Limit: None megabytes Problem Description: Tavak and Seyyed are good friends. Seyyed is very funny and he told Tavak to solve the following problem instead of longest-path. You are given *l* and *r*. For all integers from *l* to *r*, inclusive, we wrote down all of the...
```python ''' t = int(input()) while t > 0: n = int(input()) l = list(map(int,input().split())) t -= 1 ''' l, r = map(int,input().split()) print(2) ```
0
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,516,488,287
2,147,483,647
Python 3
OK
TESTS
40
124
5,632,000
n = input() z= input() if z==n[::-1]: 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 n = input() z= input() if z==n[::-1]: print ("YES") else: print ("NO") ```
3.95851
1,009
D
Relatively Prime Graph
PROGRAMMING
1,700
[ "brute force", "constructive algorithms", "graphs", "greedy", "math" ]
null
null
Let's call an undirected graph $G = (V, E)$ relatively prime if and only if for each edge $(v, u) \in E$  $GCD(v, u) = 1$ (the greatest common divisor of $v$ and $u$ is $1$). If there is no edge between some pair of vertices $v$ and $u$ then the value of $GCD(v, u)$ doesn't matter. The vertices are numbered from $1$ to...
The only line contains two integers $n$ and $m$ ($1 \le n, m \le 10^5$) — the number of vertices and the number of edges.
If there exists no valid graph with the given number of vertices and edges then output "Impossible". Otherwise print the answer in the following format: The first line should contain the word "Possible". The $i$-th of the next $m$ lines should contain the $i$-th edge $(v_i, u_i)$ of the resulting graph ($1 \le v_i, ...
[ "5 6\n", "6 12\n" ]
[ "Possible\n2 5\n3 2\n5 1\n3 4\n4 1\n5 4\n", "Impossible\n" ]
Here is the representation of the graph from the first example: <img class="tex-graphics" src="https://espresso.codeforces.com/7a1353a992545456c007e3071fa0a06fe46fc64e.png" style="max-width: 100.0%;max-height: 100.0%;"/>
0
[ { "input": "5 6", "output": "Possible\n2 1\n3 1\n4 1\n5 1\n3 2\n5 2" }, { "input": "6 12", "output": "Impossible" }, { "input": "572 99643", "output": "Possible\n2 1\n3 1\n4 1\n5 1\n6 1\n7 1\n8 1\n9 1\n10 1\n11 1\n12 1\n13 1\n14 1\n15 1\n16 1\n17 1\n18 1\n19 1\n20 1\n21 1\n22 1\n23 1...
1,531,758,091
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
1,871
6,758,400
def gcd(a, b): if a < b: return gcd(b,a) if b <= 0: return a return gcd(a-b, b) n,m = [int(_) for _ in input().split()] edges = [] for i in range(1, n+1): for j in range(i+1, n+1): #print ("%d %d %d" % (i,j , gcd(i,j))) if gcd(i,j) == 1: edges.append((i,j...
Title: Relatively Prime Graph Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's call an undirected graph $G = (V, E)$ relatively prime if and only if for each edge $(v, u) \in E$  $GCD(v, u) = 1$ (the greatest common divisor of $v$ and $u$ is $1$). If there is no edge between some pair...
```python def gcd(a, b): if a < b: return gcd(b,a) if b <= 0: return a return gcd(a-b, b) n,m = [int(_) for _ in input().split()] edges = [] for i in range(1, n+1): for j in range(i+1, n+1): #print ("%d %d %d" % (i,j , gcd(i,j))) if gcd(i,j) == 1: edges.a...
0
609
A
USB Flash Drives
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
Sean is trying to save a large file to a USB flash drive. He has *n* USB flash drives with capacities equal to *a*1,<=*a*2,<=...,<=*a**n* megabytes. The file size is equal to *m* megabytes. Find the minimum number of USB flash drives needed to write Sean's file, if he can split the file between drives.
The first line contains positive integer *n* (1<=≤<=*n*<=≤<=100) — the number of USB flash drives. The second line contains positive integer *m* (1<=≤<=*m*<=≤<=105) — the size of Sean's file. Each of the next *n* lines contains positive integer *a**i* (1<=≤<=*a**i*<=≤<=1000) — the sizes of USB flash drives in megabyt...
Print the minimum number of USB flash drives to write Sean's file, if he can split the file between drives.
[ "3\n5\n2\n1\n3\n", "3\n6\n2\n3\n2\n", "2\n5\n5\n10\n" ]
[ "2\n", "3\n", "1\n" ]
In the first example Sean needs only two USB flash drives — the first and the third. In the second example Sean needs all three USB flash drives. In the third example Sean needs only one USB flash drive and he can use any available USB flash drive — the first or the second.
0
[ { "input": "3\n5\n2\n1\n3", "output": "2" }, { "input": "3\n6\n2\n3\n2", "output": "3" }, { "input": "2\n5\n5\n10", "output": "1" }, { "input": "5\n16\n8\n1\n3\n4\n9", "output": "2" }, { "input": "10\n121\n10\n37\n74\n56\n42\n39\n6\n68\n8\n100", "output": "2" ...
1,604,431,284
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
93
0
n=int(input())#n is size of list m=int(input())#m is the size of disc summ = 0 a = [] a.sort(reverse=True) for i in range(0,n): a.append(int(input())) for i in range(0,n): summ = summ + a[i] if summ >= m: print(i+1) break
Title: USB Flash Drives Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sean is trying to save a large file to a USB flash drive. He has *n* USB flash drives with capacities equal to *a*1,<=*a*2,<=...,<=*a**n* megabytes. The file size is equal to *m* megabytes. Find the minimum number of...
```python n=int(input())#n is size of list m=int(input())#m is the size of disc summ = 0 a = [] a.sort(reverse=True) for i in range(0,n): a.append(int(input())) for i in range(0,n): summ = summ + a[i] if summ >= m: print(i+1) break ```
0
119
A
Epic Game
PROGRAMMING
800
[ "implementation" ]
null
null
Simon and Antisimon play a game. Initially each player receives one fixed positive integer that doesn't change throughout the game. Simon receives number *a* and Antisimon receives number *b*. They also have a heap of *n* stones. The players take turns to make a move and Simon starts. During a move a player should take...
The only string contains space-separated integers *a*, *b* and *n* (1<=≤<=*a*,<=*b*,<=*n*<=≤<=100) — the fixed numbers Simon and Antisimon have received correspondingly and the initial number of stones in the pile.
If Simon wins, print "0" (without the quotes), otherwise print "1" (without the quotes).
[ "3 5 9\n", "1 1 100\n" ]
[ "0", "1" ]
The greatest common divisor of two non-negative integers *a* and *b* is such maximum positive integer *k*, that *a* is divisible by *k* without remainder and similarly, *b* is divisible by *k* without remainder. Let *gcd*(*a*, *b*) represent the operation of calculating the greatest common divisor of numbers *a* and *b...
500
[ { "input": "3 5 9", "output": "0" }, { "input": "1 1 100", "output": "1" }, { "input": "23 12 16", "output": "1" }, { "input": "95 26 29", "output": "1" }, { "input": "73 32 99", "output": "1" }, { "input": "1 1 1", "output": "0" }, { "inpu...
1,540,964,828
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
218
0
a,b,n=map(int,input().split()) x=0 d=0 while a!=0 and b!=0: if a>b: a=a%b else: b=b%a x=(a+b) while n>0: n=n-x d=d+1 if d%2==0: print(1) else: print(0)
Title: Epic Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Simon and Antisimon play a game. Initially each player receives one fixed positive integer that doesn't change throughout the game. Simon receives number *a* and Antisimon receives number *b*. They also have a heap of *n* sto...
```python a,b,n=map(int,input().split()) x=0 d=0 while a!=0 and b!=0: if a>b: a=a%b else: b=b%a x=(a+b) while n>0: n=n-x d=d+1 if d%2==0: print(1) else: print(0) ```
0
348
A
Mafia
PROGRAMMING
1,600
[ "binary search", "math", "sortings" ]
null
null
One day *n* friends gathered together to play "Mafia". During each round of the game some player must be the supervisor and other *n*<=-<=1 people take part in the game. For each person we know in how many rounds he wants to be a player, not the supervisor: the *i*-th person wants to play *a**i* rounds. What is the min...
The first line contains integer *n* (3<=≤<=*n*<=≤<=105). The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the *i*-th number in the list is the number of rounds the *i*-th person wants to play.
In a single line print a single integer — the minimum number of game rounds the friends need to let the *i*-th person play at least *a**i* rounds. 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.
[ "3\n3 2 2\n", "4\n2 2 2 2\n" ]
[ "4\n", "3\n" ]
You don't need to know the rules of "Mafia" to solve this problem. If you're curious, it's a game Russia got from the Soviet times: http://en.wikipedia.org/wiki/Mafia_(party_game).
500
[ { "input": "3\n3 2 2", "output": "4" }, { "input": "4\n2 2 2 2", "output": "3" }, { "input": "7\n9 7 7 8 8 7 8", "output": "9" }, { "input": "10\n13 12 10 13 13 14 10 10 12 12", "output": "14" }, { "input": "10\n94 96 91 95 99 94 96 92 95 99", "output": "106" ...
1,381,336,560
2,147,483,647
Python 3
OK
TESTS
34
186
9,625,600
n = int(input()) numbers = input().split() num = [int(x) for x in numbers] total = sum(num) max_num = max(num) rounds = int((total + n - 2) / (n - 1)) print(max(max_num, rounds))
Title: Mafia Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day *n* friends gathered together to play "Mafia". During each round of the game some player must be the supervisor and other *n*<=-<=1 people take part in the game. For each person we know in how many rounds he wants to be a...
```python n = int(input()) numbers = input().split() num = [int(x) for x in numbers] total = sum(num) max_num = max(num) rounds = int((total + n - 2) / (n - 1)) print(max(max_num, rounds)) ```
3
337
A
Puzzles
PROGRAMMING
900
[ "greedy" ]
null
null
The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, as wikipedia states, is a tiling puzzle that requires the assembly of numerous small, often od...
The first line contains space-separated integers *n* and *m* (2<=≤<=*n*<=≤<=*m*<=≤<=50). The second line contains *m* space-separated integers *f*1,<=*f*2,<=...,<=*f**m* (4<=≤<=*f**i*<=≤<=1000) — the quantities of pieces in the puzzles sold in the shop.
Print a single integer — the least possible difference the teacher can obtain.
[ "4 6\n10 12 10 7 5 22\n" ]
[ "5\n" ]
Sample 1. The class has 4 students. The shop sells 6 puzzles. If Ms. Manana buys the first four puzzles consisting of 10, 12, 10 and 7 pieces correspondingly, then the difference between the sizes of the largest and the smallest puzzle will be equal to 5. It is impossible to obtain a smaller difference. Note that the t...
500
[ { "input": "4 6\n10 12 10 7 5 22", "output": "5" }, { "input": "2 2\n4 4", "output": "0" }, { "input": "2 10\n4 5 6 7 8 9 10 11 12 12", "output": "0" }, { "input": "4 5\n818 136 713 59 946", "output": "759" }, { "input": "3 20\n446 852 783 313 549 965 40 88 86 617...
1,699,182,174
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
62
0
n,m=map(int,input().split()) list=list(map(int,input().split())) list.sort() print(list[n-1]-list[0])
Title: Puzzles Time Limit: None seconds Memory Limit: None megabytes Problem Description: The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, a...
```python n,m=map(int,input().split()) list=list(map(int,input().split())) list.sort() print(list[n-1]-list[0]) ```
0
723
A
The New Year: Meeting Friends
PROGRAMMING
800
[ "implementation", "math", "sortings" ]
null
null
There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They plan to celebrate the New Year together, so they need to meet at one point. What is the minimum total distance they...
The first line of the input contains three distinct integers *x*1, *x*2 and *x*3 (1<=≤<=*x*1,<=*x*2,<=*x*3<=≤<=100) — the coordinates of the houses of the first, the second and the third friends respectively.
Print one integer — the minimum total distance the friends need to travel in order to meet together.
[ "7 1 4\n", "30 20 10\n" ]
[ "6\n", "20\n" ]
In the first sample, friends should meet at the point 4. Thus, the first friend has to travel the distance of 3 (from the point 7 to the point 4), the second friend also has to travel the distance of 3 (from the point 1 to the point 4), while the third friend should not go anywhere because he lives at the point 4.
500
[ { "input": "7 1 4", "output": "6" }, { "input": "30 20 10", "output": "20" }, { "input": "1 4 100", "output": "99" }, { "input": "100 1 91", "output": "99" }, { "input": "1 45 100", "output": "99" }, { "input": "1 2 3", "output": "2" }, { "...
1,678,945,766
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
15
0
#new year problem x1=int(input("enter x1")) x2=int(input("enter x2")) x3=int(input("enter x3")) k1=x3>x1>x2 k2=x3>x2>x1 k3=x1>x2>x3 k4=x1>x3>x2 k5=x2>x3>x1 k6=x1>x2>x3 if k1: print("total distance=",x3-x2) if k2: print("total distance=",x3-x1) if k3: print("total distance=",x1-x3) if k4: ...
Title: The New Year: Meeting Friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They ...
```python #new year problem x1=int(input("enter x1")) x2=int(input("enter x2")) x3=int(input("enter x3")) k1=x3>x1>x2 k2=x3>x2>x1 k3=x1>x2>x3 k4=x1>x3>x2 k5=x2>x3>x1 k6=x1>x2>x3 if k1: print("total distance=",x3-x2) if k2: print("total distance=",x3-x1) if k3: print("total distance=",x1-x3)...
-1
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,492,341,144
2,147,483,647
Python 3
OK
TESTS
81
124
5,529,600
n = int(input()) answer = [0, 0, 0] for i in range(n): x, y, z = [int(x) for x in input().split()] answer[0] = answer[0] + x answer[1] = answer[1] + y answer[2] = answer[2] + z if answer == [0, 0, 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()) answer = [0, 0, 0] for i in range(n): x, y, z = [int(x) for x in input().split()] answer[0] = answer[0] + x answer[1] = answer[1] + y answer[2] = answer[2] + z if answer == [0, 0, 0]: print('YES') else: print('NO') ```
3.9587
556
A
Case of the Zeros and Ones
PROGRAMMING
900
[ "greedy" ]
null
null
Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Consider the following operation: we choose any two adjacent positions in the string, and if one them contains 0, an...
First line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=2·105), the length of the string that Andreid has. The second line contains the string of length *n* consisting only from zeros and ones.
Output the minimum length of the string that may remain after applying the described operations several times.
[ "4\n1100\n", "5\n01010\n", "8\n11101111\n" ]
[ "0\n", "1\n", "6\n" ]
In the first sample test it is possible to change the string like the following: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/10df55364c21c6e8d5da31b6ab6f6294c4fc26b3.png" style="max-width: 100.0%;max-height: 100.0%;"/>. In the second sample test it is possible to change the string like...
250
[ { "input": "4\n1100", "output": "0" }, { "input": "5\n01010", "output": "1" }, { "input": "8\n11101111", "output": "6" }, { "input": "1\n0", "output": "1" }, { "input": "1\n1", "output": "1" }, { "input": "2\n00", "output": "2" }, { "input"...
1,623,120,033
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
77
0
strr = input() while True: if '10' in strr: strr = strr.replace('10', '') elif '01' in strr: strr = strr.replace('01', '') else: break print(len(strr))
Title: Case of the Zeros and Ones Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Cons...
```python strr = input() while True: if '10' in strr: strr = strr.replace('10', '') elif '01' in strr: strr = strr.replace('01', '') else: break print(len(strr)) ```
0
630
B
Moore's Law
PROGRAMMING
1,200
[ "math" ]
null
null
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time. Moore's law is the observation that the number of transistors in a dense integrated circuit doubles approximately ev...
The only line of the input contains a pair of integers *n* (1000<=≤<=*n*<=≤<=10 000) and *t* (0<=≤<=*t*<=≤<=2 000 000 000) — the number of transistors in the initial time and the number of seconds passed since the initial time.
Output one number — the estimate of the number of transistors in a dence integrated circuit in *t* seconds since the initial time. The relative error of your answer should not be greater than 10<=-<=6.
[ "1000 1000000\n" ]
[ "1011.060722383550382782399454922040\n" ]
none
0
[ { "input": "1000 1000000", "output": "1011.060722383550382782399454922040" }, { "input": "1000 0", "output": "1000" }, { "input": "1000 1", "output": "1000.000011000" }, { "input": "1000 2", "output": "1000.000022000000121000" }, { "input": "10000 3", "output"...
1,693,176,225
2,147,483,647
PyPy 3-64
OK
TESTS
10
62
0
n, t = [int(x) for x in input().split()] tasa = 1.000000011 incremento = tasa**t print(n*incremento)
Title: Moore's Law Time Limit: None seconds Memory Limit: None megabytes Problem Description: The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time. Moore's law is the ...
```python n, t = [int(x) for x in input().split()] tasa = 1.000000011 incremento = tasa**t print(n*incremento) ```
3
46
C
Hamsters and Tigers
PROGRAMMING
1,600
[ "two pointers" ]
C. Hamsters and Tigers
2
256
Today there is going to be an unusual performance at the circus — hamsters and tigers will perform together! All of them stand in circle along the arena edge and now the trainer faces a difficult task: he wants to swap the animals' positions so that all the hamsters stood together and all the tigers also stood together...
The first line contains number *n* (2<=≤<=*n*<=≤<=1000) which indicates the total number of animals in the arena. The second line contains the description of the animals' positions. The line consists of *n* symbols "H" and "T". The "H"s correspond to hamsters and the "T"s correspond to tigers. It is guaranteed that at ...
Print the single number which is the minimal number of swaps that let the trainer to achieve his goal.
[ "3\nHTH\n", "9\nHTHTHTHHT\n" ]
[ "0\n", "2\n" ]
In the first example we shouldn't move anybody because the animals of each species already stand apart from the other species. In the second example you may swap, for example, the tiger in position 2 with the hamster in position 5 and then — the tiger in position 9 with the hamster in position 7.
0
[ { "input": "3\nHTH", "output": "0" }, { "input": "9\nHTHTHTHHT", "output": "2" }, { "input": "2\nTH", "output": "0" }, { "input": "4\nHTTH", "output": "0" }, { "input": "4\nHTHT", "output": "1" }, { "input": "7\nTTTHTTT", "output": "0" }, { ...
1,692,175,651
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
0
def max_beauty_string(n, k, s): max_beauty = 0 left = 0 max_count = 0 counts = [0, 0] # counts[0] for 'a', counts[1] for 'b' for right in range(n): counts[ord(s[right]) - ord('a')] += 1 max_count = max(max_count, counts[0], counts[1]) while right - left + 1 - m...
Title: Hamsters and Tigers Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Today there is going to be an unusual performance at the circus — hamsters and tigers will perform together! All of them stand in circle along the arena edge and now the trainer faces a difficult task: he wants to swap ...
```python def max_beauty_string(n, k, s): max_beauty = 0 left = 0 max_count = 0 counts = [0, 0] # counts[0] for 'a', counts[1] for 'b' for right in range(n): counts[ord(s[right]) - ord('a')] += 1 max_count = max(max_count, counts[0], counts[1]) while right - le...
-1
16
B
Burglar and Matches
PROGRAMMING
900
[ "greedy", "implementation", "sortings" ]
B. Burglar and Matches
0
64
A burglar got into a matches warehouse and wants to steal as many matches as possible. In the warehouse there are *m* containers, in the *i*-th container there are *a**i* matchboxes, and each matchbox contains *b**i* matches. All the matchboxes are of the same size. The burglar's rucksack can hold *n* matchboxes exactl...
The first line of the input contains integer *n* (1<=≤<=*n*<=≤<=2·108) and integer *m* (1<=≤<=*m*<=≤<=20). The *i*<=+<=1-th line contains a pair of numbers *a**i* and *b**i* (1<=≤<=*a**i*<=≤<=108,<=1<=≤<=*b**i*<=≤<=10). All the input numbers are integer.
Output the only number — answer to the problem.
[ "7 3\n5 10\n2 5\n3 6\n", "3 3\n1 3\n2 2\n3 1\n" ]
[ "62\n", "7\n" ]
none
0
[ { "input": "7 3\n5 10\n2 5\n3 6", "output": "62" }, { "input": "3 3\n1 3\n2 2\n3 1", "output": "7" }, { "input": "1 1\n1 2", "output": "2" }, { "input": "1 2\n1 9\n1 6", "output": "9" }, { "input": "1 10\n1 1\n1 9\n1 3\n1 9\n1 7\n1 10\n1 4\n1 7\n1 3\n1 1", "ou...
1,669,806,267
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
156
0
def start(): d={} s=set() c=0 n,m=map(int,input().split()) for i in range(m): a,b=map(int,input().split()) if b in s: d[b]+=a else: d[b]=a s=sorted(d.items())[::-1] for i in s: if n==0: print(c) re...
Title: Burglar and Matches Time Limit: 0 seconds Memory Limit: 64 megabytes Problem Description: A burglar got into a matches warehouse and wants to steal as many matches as possible. In the warehouse there are *m* containers, in the *i*-th container there are *a**i* matchboxes, and each matchbox contains *b**i* mat...
```python def start(): d={} s=set() c=0 n,m=map(int,input().split()) for i in range(m): a,b=map(int,input().split()) if b in s: d[b]+=a else: d[b]=a s=sorted(d.items())[::-1] for i in s: if n==0: print(c) ...
0
758
A
Holiday Of Equality
PROGRAMMING
800
[ "implementation", "math" ]
null
null
In Berland it is the holiday of equality. In honor of the holiday the king decided to equalize the welfare of all citizens in Berland by the expense of the state treasury. Totally in Berland there are *n* citizens, the welfare of each of them is estimated as the integer in *a**i* burles (burle is the currency in Berl...
The first line contains the integer *n* (1<=≤<=*n*<=≤<=100) — the number of citizens in the kingdom. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n*, where *a**i* (0<=≤<=*a**i*<=≤<=106) — the welfare of the *i*-th citizen.
In the only line print the integer *S* — the minimum number of burles which are had to spend.
[ "5\n0 1 2 3 4\n", "5\n1 1 0 1 1\n", "3\n1 3 1\n", "1\n12\n" ]
[ "10", "1", "4", "0" ]
In the first example if we add to the first citizen 4 burles, to the second 3, to the third 2 and to the fourth 1, then the welfare of all citizens will equal 4. In the second example it is enough to give one burle to the third citizen. In the third example it is necessary to give two burles to the first and the thi...
500
[ { "input": "5\n0 1 2 3 4", "output": "10" }, { "input": "5\n1 1 0 1 1", "output": "1" }, { "input": "3\n1 3 1", "output": "4" }, { "input": "1\n12", "output": "0" }, { "input": "3\n1 2 3", "output": "3" }, { "input": "14\n52518 718438 358883 462189 853...
1,681,378,144
2,147,483,647
Python 3
OK
TESTS
41
46
0
input() a=list(map(int,input().split())) print(sum(max(a)-i for i in a))
Title: Holiday Of Equality Time Limit: None seconds Memory Limit: None megabytes Problem Description: In Berland it is the holiday of equality. In honor of the holiday the king decided to equalize the welfare of all citizens in Berland by the expense of the state treasury. Totally in Berland there are *n* citizens...
```python input() a=list(map(int,input().split())) print(sum(max(a)-i for i in a)) ```
3
963
A
Alternating Sum
PROGRAMMING
1,800
[ "math", "number theory" ]
null
null
You are given two integers $a$ and $b$. Moreover, you are given a sequence $s_0, s_1, \dots, s_{n}$. All values in $s$ are integers $1$ or $-1$. It's known that sequence is $k$-periodic and $k$ divides $n+1$. In other words, for each $k \leq i \leq n$ it's satisfied that $s_{i} = s_{i - k}$. Find out the non-negative ...
The first line contains four integers $n, a, b$ and $k$ $(1 \leq n \leq 10^{9}, 1 \leq a, b \leq 10^{9}, 1 \leq k \leq 10^{5})$. The second line contains a sequence of length $k$ consisting of characters '+' and '-'. If the $i$-th character (0-indexed) is '+', then $s_{i} = 1$, otherwise $s_{i} = -1$. Note that onl...
Output a single integer — value of given expression modulo $10^{9} + 9$.
[ "2 2 3 3\n+-+\n", "4 1 5 1\n-\n" ]
[ "7\n", "999999228\n" ]
In the first example: $(\sum \limits_{i=0}^{n} s_{i} a^{n - i} b^{i})$ = $2^{2} 3^{0} - 2^{1} 3^{1} + 2^{0} 3^{2}$ = 7 In the second example: $(\sum \limits_{i=0}^{n} s_{i} a^{n - i} b^{i}) = -1^{4} 5^{0} - 1^{3} 5^{1} - 1^{2} 5^{2} - 1^{1} 5^{3} - 1^{0} 5^{4} = -781 \equiv 999999228 \pmod{10^{9} + 9}$.
500
[ { "input": "2 2 3 3\n+-+", "output": "7" }, { "input": "4 1 5 1\n-", "output": "999999228" }, { "input": "1 1 4 2\n-+", "output": "3" }, { "input": "3 1 4 4\n+--+", "output": "45" }, { "input": "5 1 1 6\n++---+", "output": "0" }, { "input": "5 2 2 6\n+...
1,537,813,595
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
6
1,000
204,800
n,a,b,k=[int(x) for x in input().split()] s=list(input()) p=[] for x in range(n+1): p.append(1 if s[x%k] == '+' else -1) suma=0 for x in range(n+1): suma+=p[x]*(a**(n-x))*(b**x) print(suma%(1000000009))
Title: Alternating Sum Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two integers $a$ and $b$. Moreover, you are given a sequence $s_0, s_1, \dots, s_{n}$. All values in $s$ are integers $1$ or $-1$. It's known that sequence is $k$-periodic and $k$ divides $n+1$. In other w...
```python n,a,b,k=[int(x) for x in input().split()] s=list(input()) p=[] for x in range(n+1): p.append(1 if s[x%k] == '+' else -1) suma=0 for x in range(n+1): suma+=p[x]*(a**(n-x))*(b**x) print(suma%(1000000009)) ```
0
464
C
Substitutes in Number
PROGRAMMING
2,100
[ "dp" ]
null
null
Andrew and Eugene are playing a game. Initially, Andrew has string *s*, consisting of digits. Eugene sends Andrew multiple queries of type "*d**i*<=→<=*t**i*", that means "replace all digits *d**i* in string *s* with substrings equal to *t**i*". For example, if *s*<==<=123123, then query "2<=→<=00" transforms *s* to 10...
The first line contains string *s* (1<=≤<=|*s*|<=≤<=105), consisting of digits — the string before processing all the requests. The second line contains a single integer *n* (0<=≤<=*n*<=≤<=105) — the number of queries. The next *n* lines contain the descriptions of the queries. The *i*-th query is described by string...
Print a single integer — remainder of division of the resulting number by 1000000007 (109<=+<=7).
[ "123123\n1\n2-&gt;00\n", "123123\n1\n3-&gt;\n", "222\n2\n2-&gt;0\n0-&gt;7\n", "1000000008\n0\n" ]
[ "10031003\n", "1212\n", "777\n", "1\n" ]
Note that the leading zeroes are not removed from string *s* after the replacement (you can see it in the third sample).
1,500
[ { "input": "123123\n1\n2->00", "output": "10031003" }, { "input": "123123\n1\n3->", "output": "1212" }, { "input": "222\n2\n2->0\n0->7", "output": "777" }, { "input": "1000000008\n0", "output": "1" }, { "input": "100\n5\n1->301\n0->013\n1->013\n0->103\n0->103", ...
1,410,369,152
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
10
140
102,400
__author__ = 'hamed1soleimani' data = input() n = int(input()) for i in range(n): query = input() data = data.replace(query[0], query[3:]) print(int(data) % 1000000007)
Title: Substitutes in Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andrew and Eugene are playing a game. Initially, Andrew has string *s*, consisting of digits. Eugene sends Andrew multiple queries of type "*d**i*<=→<=*t**i*", that means "replace all digits *d**i* in string *s* w...
```python __author__ = 'hamed1soleimani' data = input() n = int(input()) for i in range(n): query = input() data = data.replace(query[0], query[3:]) print(int(data) % 1000000007) ```
-1
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,645,981,344
2,147,483,647
Python 3
OK
TESTS
81
92
0
n = int(input()) forces = [] for i in range(n): forces.append(list(map(int,input().split()))) x,y,z = 0,0,0 x = [i[0] for i in forces] y = [i[1] for i in forces] z = [i[2] for i in forces] if sum(x) == 0 and sum(y) == 0 and sum(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()) forces = [] for i in range(n): forces.append(list(map(int,input().split()))) x,y,z = 0,0,0 x = [i[0] for i in forces] y = [i[1] for i in forces] z = [i[2] for i in forces] if sum(x) == 0 and sum(y) == 0 and sum(z) == 0: print("YES") else: print("NO") ```
3.977
761
D
Dasha and Very Difficult Problem
PROGRAMMING
1,700
[ "binary search", "brute force", "constructive algorithms", "greedy", "sortings" ]
null
null
Dasha logged into the system and began to solve problems. One of them is as follows: Given two sequences *a* and *b* of length *n* each you need to write a sequence *c* of length *n*, the *i*-th element of which is calculated as follows: *c**i*<==<=*b**i*<=-<=*a**i*. About sequences *a* and *b* we know that their ele...
The first line contains three integers *n*, *l*, *r* (1<=≤<=*n*<=≤<=105,<=1<=≤<=*l*<=≤<=*r*<=≤<=109) — the length of the sequence and boundaries of the segment where the elements of sequences *a* and *b* are. The next line contains *n* integers *a*1,<=<=*a*2,<=<=...,<=<=*a**n* (*l*<=≤<=*a**i*<=≤<=*r*) — the elements o...
If there is no the suitable sequence *b*, then in the only line print "-1". Otherwise, in the only line print *n* integers — the elements of any suitable sequence *b*.
[ "5 1 5\n1 1 1 1 1\n3 1 5 4 2\n", "4 2 9\n3 4 8 9\n3 2 1 4\n", "6 1 5\n1 1 1 1 1 1\n2 3 5 4 1 6\n" ]
[ "3 1 5 4 2 ", "2 2 2 9 ", "-1\n" ]
Sequence *b* which was found in the second sample is suitable, because calculated sequence *c* = [2 - 3, 2 - 4, 2 - 8, 9 - 9] = [ - 1,  - 2,  - 6, 0] (note that *c*<sub class="lower-index">*i*</sub> = *b*<sub class="lower-index">*i*</sub> - *a*<sub class="lower-index">*i*</sub>) has compressed sequence equals to *p* = ...
2,000
[ { "input": "5 1 5\n1 1 1 1 1\n3 1 5 4 2", "output": "3 1 5 4 2 " }, { "input": "4 2 9\n3 4 8 9\n3 2 1 4", "output": "2 2 2 9 " }, { "input": "6 1 5\n1 1 1 1 1 1\n2 3 5 4 1 6", "output": "-1" }, { "input": "5 1 7\n1 4 4 6 5\n5 2 1 4 3", "output": "2 2 1 6 4 " }, { ...
1,529,237,758
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
78
0
n, l, r = map(int, input().split(' ')) a = list(map(int, input().split(' '))) c = list(map(int, input().split(' '))) d = dict(zip(c, range(n))) b = [0]*n ckeys = sorted(d, reverse=True) possible = True curr = r curr_diff = r - a[d[ckeys[0]]] b[d[ckeys[0]]] = r for ck in ckeys[1:]: curr_diff -= 1 next_b = a[d[ck]] ...
Title: Dasha and Very Difficult Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dasha logged into the system and began to solve problems. One of them is as follows: Given two sequences *a* and *b* of length *n* each you need to write a sequence *c* of length *n*, the *i*-th elemen...
```python n, l, r = map(int, input().split(' ')) a = list(map(int, input().split(' '))) c = list(map(int, input().split(' '))) d = dict(zip(c, range(n))) b = [0]*n ckeys = sorted(d, reverse=True) possible = True curr = r curr_diff = r - a[d[ckeys[0]]] b[d[ckeys[0]]] = r for ck in ckeys[1:]: curr_diff -= 1 next_b =...
0
916
A
Jamie and Alarm Snooze
PROGRAMMING
900
[ "brute force", "implementation", "math" ]
null
null
Jamie loves sleeping. One day, he decides that he needs to wake up at exactly *hh*:<=*mm*. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every *x* minutes until *hh*:<=*mm* is reached, and only then he will wake up. He ...
The first line contains a single integer *x* (1<=≤<=*x*<=≤<=60). The second line contains two two-digit integers, *hh* and *mm* (00<=≤<=*hh*<=≤<=23,<=00<=≤<=*mm*<=≤<=59).
Print the minimum number of times he needs to press the button.
[ "3\n11 23\n", "5\n01 07\n" ]
[ "2\n", "0\n" ]
In the first sample, Jamie needs to wake up at 11:23. So, he can set his alarm at 11:17. He would press the snooze button when the alarm rings at 11:17 and at 11:20. In the second sample, Jamie can set his alarm at exactly at 01:07 which is lucky.
500
[ { "input": "3\n11 23", "output": "2" }, { "input": "5\n01 07", "output": "0" }, { "input": "34\n09 24", "output": "3" }, { "input": "2\n14 37", "output": "0" }, { "input": "14\n19 54", "output": "9" }, { "input": "42\n15 44", "output": "12" }, ...
1,619,872,488
2,147,483,647
PyPy 3
OK
TESTS
254
108
0
x = int(input()) a,b = map(int,input().split()) c = 0 while '7' not in str(a) and '7' not in str(b): b = b - x if a < 0: a+= 24 if b < 0: b += 60 a -= 1 #print(a,b) c += 1 print(c)
Title: Jamie and Alarm Snooze Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jamie loves sleeping. One day, he decides that he needs to wake up at exactly *hh*:<=*mm*. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will the...
```python x = int(input()) a,b = map(int,input().split()) c = 0 while '7' not in str(a) and '7' not in str(b): b = b - x if a < 0: a+= 24 if b < 0: b += 60 a -= 1 #print(a,b) c += 1 print(c) ```
3
754
A
Lesha and array splitting
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "implementation" ]
null
null
One spring day on his way to university Lesha found an array *A*. Lesha likes to split arrays into several parts. This time Lesha decided to split the array *A* into several, possibly one, new arrays so that the sum of elements in each of the new arrays is not zero. One more condition is that if we place the new arrays...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in the array *A*. The next line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=103<=≤<=*a**i*<=≤<=103) — the elements of the array *A*.
If it is not possible to split the array *A* and satisfy all the constraints, print single line containing "NO" (without quotes). Otherwise in the first line print "YES" (without quotes). In the next line print single integer *k* — the number of new arrays. In each of the next *k* lines print two integers *l**i* and *...
[ "3\n1 2 -3\n", "8\n9 -12 3 4 -4 -10 7 3\n", "1\n0\n", "4\n1 2 3 -5\n" ]
[ "YES\n2\n1 2\n3 3\n", "YES\n2\n1 2\n3 8\n", "NO\n", "YES\n4\n1 1\n2 2\n3 3\n4 4\n" ]
none
500
[ { "input": "3\n1 2 -3", "output": "YES\n3\n1 1\n2 2\n3 3" }, { "input": "8\n9 -12 3 4 -4 -10 7 3", "output": "YES\n8\n1 1\n2 2\n3 3\n4 4\n5 5\n6 6\n7 7\n8 8" }, { "input": "1\n0", "output": "NO" }, { "input": "4\n1 2 3 -5", "output": "YES\n4\n1 1\n2 2\n3 3\n4 4" }, { ...
1,638,156,683
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
n=int(input()) s=list(map(int,input().split())) ans='NO' x1,x2=0,0 if(n>1): for i in range(0,n): if(s[i]+s[i+1]!=0): ans='YES' x1,x2=s[i],s[i+1] break if(ans=='YES' or ( n==1 and s[0]!=0)): print(ans) print('1') print(x1,x2) else: print(ans)...
Title: Lesha and array splitting Time Limit: None seconds Memory Limit: None megabytes Problem Description: One spring day on his way to university Lesha found an array *A*. Lesha likes to split arrays into several parts. This time Lesha decided to split the array *A* into several, possibly one, new arrays so that t...
```python n=int(input()) s=list(map(int,input().split())) ans='NO' x1,x2=0,0 if(n>1): for i in range(0,n): if(s[i]+s[i+1]!=0): ans='YES' x1,x2=s[i],s[i+1] break if(ans=='YES' or ( n==1 and s[0]!=0)): print(ans) print('1') print(x1,x2) else: ...
0
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,652,764,711
2,147,483,647
Python 3
OK
TESTS
30
92
4,505,600
s=input() l1=[] l2=[] for i in s: if ord(i) in range(65,91): l1.append(i) elif ord(i) in range(97,123): l2.append(i) if len(l1)>len(l2): print(s.upper()) else: print(s.lower())
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python s=input() l1=[] l2=[] for i in s: if ord(i) in range(65,91): l1.append(i) elif ord(i) in range(97,123): l2.append(i) if len(l1)>len(l2): print(s.upper()) else: print(s.lower()) ```
3.968608
189
A
Cut Ribbon
PROGRAMMING
1,300
[ "brute force", "dp" ]
null
null
Polycarpus has a ribbon, its length is *n*. He wants to cut the ribbon in a way that fulfils the following two conditions: - After the cutting each ribbon piece should have length *a*, *b* or *c*. - After the cutting the number of ribbon pieces should be maximum. Help Polycarpus and find the number of ribbon piece...
The first line contains four space-separated integers *n*, *a*, *b* and *c* (1<=≤<=*n*,<=*a*,<=*b*,<=*c*<=≤<=4000) — the length of the original ribbon and the acceptable lengths of the ribbon pieces after the cutting, correspondingly. The numbers *a*, *b* and *c* can coincide.
Print a single number — the maximum possible number of ribbon pieces. It is guaranteed that at least one correct ribbon cutting exists.
[ "5 5 3 2\n", "7 5 5 2\n" ]
[ "2\n", "2\n" ]
In the first example Polycarpus can cut the ribbon in such way: the first piece has length 2, the second piece has length 3. In the second example Polycarpus can cut the ribbon in such way: the first piece has length 5, the second piece has length 2.
500
[ { "input": "5 5 3 2", "output": "2" }, { "input": "7 5 5 2", "output": "2" }, { "input": "4 4 4 4", "output": "1" }, { "input": "1 1 1 1", "output": "1" }, { "input": "4000 1 2 3", "output": "4000" }, { "input": "4000 3 4 5", "output": "1333" }, ...
1,678,793,135
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
217
3,788,800
n, a, b, c = map(int, input().split()) ans = 1 for x in range(1, n): for y in range(1, n): if (n - (x * a + y * b)) % c == 0 and n - (x * a + y * b) > 0: ans = max(ans, x + y + (n - (x * a + y * b) // c)) for x in range(1, n): for y in range(1, n): if n - (x * a + y * b) == 0...
Title: Cut Ribbon Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus has a ribbon, its length is *n*. He wants to cut the ribbon in a way that fulfils the following two conditions: - After the cutting each ribbon piece should have length *a*, *b* or *c*. - After the cutting the...
```python n, a, b, c = map(int, input().split()) ans = 1 for x in range(1, n): for y in range(1, n): if (n - (x * a + y * b)) % c == 0 and n - (x * a + y * b) > 0: ans = max(ans, x + y + (n - (x * a + y * b) // c)) for x in range(1, n): for y in range(1, n): if n - (x * a + y...
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,669,198,712
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
61
409,600
import re chars = ["h", "e", "l", "o"] s = input() for c in chars: s = re.sub(f"{c}+", c, s) print("YES" if bool(re.findall("hello", s)) else "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 import re chars = ["h", "e", "l", "o"] s = input() for c in chars: s = re.sub(f"{c}+", c, s) print("YES" if bool(re.findall("hello", s)) else "NO") ```
0
3
D
Least Cost Bracket Sequence
PROGRAMMING
2,600
[ "greedy" ]
D. Least Cost Bracket Sequence
1
64
This is yet another problem on regular bracket sequences. A bracket sequence is called regular, if by inserting "+" and "1" into it we get a correct mathematical expression. For example, sequences "(())()", "()" and "(()(()))" are regular, while ")(", "(()" and "(()))(" are not. You have a pattern of a bracket sequenc...
The first line contains a non-empty pattern of even length, consisting of characters "(", ")" and "?". Its length doesn't exceed 5·104. Then there follow *m* lines, where *m* is the number of characters "?" in the pattern. Each line contains two integer numbers *a**i* and *b**i* (1<=≤<=*a**i*,<=<=*b**i*<=≤<=106), where...
Print the cost of the optimal regular bracket sequence in the first line, and the required sequence in the second. Print -1, if there is no answer. If the answer is not unique, print any of them.
[ "(??)\n1 2\n2 8\n" ]
[ "4\n()()\n" ]
none
0
[ { "input": "(??)\n1 2\n2 8", "output": "4\n()()" }, { "input": "??\n1 1\n1 1", "output": "2\n()" }, { "input": "(???\n1 1\n1 1\n1 1", "output": "3\n(())" }, { "input": "(??)\n2 1\n1 1", "output": "2\n()()" }, { "input": "(???)?\n3 3\n3 1\n3 3\n2 3", "output": ...
1,655,405,704
2,147,483,647
PyPy 3-64
OK
TESTS
80
592
14,336,000
# stop tleing or ill murder ntarsis import math import heapq from sys import stdin INF = int(1e18) s = list(stdin.readline().strip()) depth = 0 pq = [] cost = 0 for i in range(len(s)): if s[i] == '(': depth += 1 elif s[i] == ')': depth -= 1 else: # this is question...
Title: Least Cost Bracket Sequence Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: This is yet another problem on regular bracket sequences. A bracket sequence is called regular, if by inserting "+" and "1" into it we get a correct mathematical expression. For example, sequences "(())()", "()"...
```python # stop tleing or ill murder ntarsis import math import heapq from sys import stdin INF = int(1e18) s = list(stdin.readline().strip()) depth = 0 pq = [] cost = 0 for i in range(len(s)): if s[i] == '(': depth += 1 elif s[i] == ')': depth -= 1 else: # this i...
3.597188
411
A
Password Check
PROGRAMMING
800
[ "*special", "implementation" ]
null
null
You have probably registered on Internet sites many times. And each time you should enter your invented password. Usually the registration form automatically checks the password's crypt resistance. If the user's password isn't complex enough, a message is displayed. Today your task is to implement such an automatic che...
The first line contains a non-empty sequence of characters (at most 100 characters). Each character is either a large English letter, or a small English letter, or a digit, or one of characters: "!", "?", ".", ",", "_".
If the password is complex enough, print message "Correct" (without the quotes), otherwise print message "Too weak" (without the quotes).
[ "abacaba\n", "X12345\n", "CONTEST_is_STARTED!!11\n" ]
[ "Too weak\n", "Too weak\n", "Correct\n" ]
none
0
[ { "input": "abacaba", "output": "Too weak" }, { "input": "X12345", "output": "Too weak" }, { "input": "CONTEST_is_STARTED!!11", "output": "Correct" }, { "input": "1zA__", "output": "Correct" }, { "input": "1zA_", "output": "Too weak" }, { "input": "zA_...
1,630,093,439
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
39
62
6,963,200
def isLongEnough(password): if len(password) >= 5: return True else: return False def hasUpperCase(password): if password.islower(): return False else: return True def hasLowerCase(password): if password.isupper(): return False else: return True ...
Title: Password Check Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have probably registered on Internet sites many times. And each time you should enter your invented password. Usually the registration form automatically checks the password's crypt resistance. If the user's password...
```python def isLongEnough(password): if len(password) >= 5: return True else: return False def hasUpperCase(password): if password.islower(): return False else: return True def hasLowerCase(password): if password.isupper(): return False else: re...
0
994
A
Fingerprints
PROGRAMMING
800
[ "implementation" ]
null
null
You are locked in a room with a door that has a keypad with 10 keys corresponding to digits from 0 to 9. To escape from the room, you need to enter a correct code. You also have a sequence of digits. Some keys on the keypad have fingerprints. You believe the correct code is the longest not necessarily contiguous subse...
The first line contains two integers $n$ and $m$ ($1 \le n, m \le 10$) representing the number of digits in the sequence you have and the number of keys on the keypad that have fingerprints. The next line contains $n$ distinct space-separated integers $x_1, x_2, \ldots, x_n$ ($0 \le x_i \le 9$) representing the sequen...
In a single line print a space-separated sequence of integers representing the code. If the resulting sequence is empty, both printing nothing and printing a single line break is acceptable.
[ "7 3\n3 5 7 1 6 2 8\n1 2 7\n", "4 4\n3 4 1 0\n0 1 7 9\n" ]
[ "7 1 2\n", "1 0\n" ]
In the first example, the only digits with fingerprints are $1$, $2$ and $7$. All three of them appear in the sequence you know, $7$ first, then $1$ and then $2$. Therefore the output is 7 1 2. Note that the order is important, and shall be the same as the order in the original sequence. In the second example digits $...
500
[ { "input": "7 3\n3 5 7 1 6 2 8\n1 2 7", "output": "7 1 2" }, { "input": "4 4\n3 4 1 0\n0 1 7 9", "output": "1 0" }, { "input": "9 4\n9 8 7 6 5 4 3 2 1\n2 4 6 8", "output": "8 6 4 2" }, { "input": "10 5\n3 7 1 2 4 6 9 0 5 8\n4 3 0 7 9", "output": "3 7 4 9 0" }, { "...
1,563,675,160
2,147,483,647
Python 3
OK
TESTS
31
109
0
#import sys #sys.stdin = open("input.in","r") #sys.stdout = open("test.out","w") m,n = map(int, input().split()) a= input().split() c= input().split() for i in a: if i in c: print(i, end = ' ')
Title: Fingerprints Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are locked in a room with a door that has a keypad with 10 keys corresponding to digits from 0 to 9. To escape from the room, you need to enter a correct code. You also have a sequence of digits. Some keys on the keyp...
```python #import sys #sys.stdin = open("input.in","r") #sys.stdout = open("test.out","w") m,n = map(int, input().split()) a= input().split() c= input().split() for i in a: if i in c: print(i, end = ' ') ```
3
608
A
Saitama Destroys Hotel
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Saitama accidentally destroyed a hotel again. To repay the hotel company, Genos has volunteered to operate an elevator in one of its other hotels. The elevator is special — it starts on the top floor, can only move down, and has infinite capacity. Floors are numbered from 0 to *s* and elevator initially starts on floor...
The first line of input contains two integers *n* and *s* (1<=≤<=*n*<=≤<=100, 1<=≤<=*s*<=≤<=1000) — the number of passengers and the number of the top floor respectively. The next *n* lines each contain two space-separated integers *f**i* and *t**i* (1<=≤<=*f**i*<=≤<=*s*, 1<=≤<=*t**i*<=≤<=1000) — the floor and the tim...
Print a single integer — the minimum amount of time in seconds needed to bring all the passengers to floor 0.
[ "3 7\n2 1\n3 8\n5 2\n", "5 10\n2 77\n3 33\n8 21\n9 12\n10 64\n" ]
[ "11\n", "79\n" ]
In the first sample, it takes at least 11 seconds to bring all passengers to floor 0. Here is how this could be done: 1. Move to floor 5: takes 2 seconds. 2. Pick up passenger 3. 3. Move to floor 3: takes 2 seconds. 4. Wait for passenger 2 to arrive: takes 4 seconds. 5. Pick up passenger 2. 6. Go to floor 2: take...
500
[ { "input": "3 7\n2 1\n3 8\n5 2", "output": "11" }, { "input": "5 10\n2 77\n3 33\n8 21\n9 12\n10 64", "output": "79" }, { "input": "1 1000\n1000 1000", "output": "2000" }, { "input": "1 1\n1 1", "output": "2" }, { "input": "1 1000\n1 1", "output": "1000" }, ...
1,582,052,249
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
7
139
1,433,600
[n,top]=list(map(int,input().strip().split())) floor=[top] l={} total=0 for i in range(n): m=list(map(int,input().strip().split())) floor.append(m[0]) l[m[0]]=m[1] floor.sort() floor=floor[::-1] time=[0] for i in range(1,n+1): time.append(l[floor[i]]) for i in range(n): diff=floor[i]-f...
Title: Saitama Destroys Hotel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Saitama accidentally destroyed a hotel again. To repay the hotel company, Genos has volunteered to operate an elevator in one of its other hotels. The elevator is special — it starts on the top floor, can only mo...
```python [n,top]=list(map(int,input().strip().split())) floor=[top] l={} total=0 for i in range(n): m=list(map(int,input().strip().split())) floor.append(m[0]) l[m[0]]=m[1] floor.sort() floor=floor[::-1] time=[0] for i in range(1,n+1): time.append(l[floor[i]]) for i in range(n): diff=...
0
935
A
Fafa and his Company
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Fafa owns a company that works on huge projects. There are *n* employees in Fafa's company. Whenever the company has a new project to start working on, Fafa has to divide the tasks of this project among all the employees. Fafa finds doing this every time is very tiring for him. So, he decided to choose the best *l* em...
The input consists of a single line containing a positive integer *n* (2<=≤<=*n*<=≤<=105) — the number of employees in Fafa's company.
Print a single integer representing the answer to the problem.
[ "2\n", "10\n" ]
[ "1\n", "3\n" ]
In the second sample Fafa has 3 ways: - choose only 1 employee as a team leader with 9 employees under his responsibility. - choose 2 employees as team leaders with 4 employees under the responsibility of each of them. - choose 5 employees as team leaders with 1 employee under the responsibility of each of them.
500
[ { "input": "2", "output": "1" }, { "input": "10", "output": "3" }, { "input": "3", "output": "1" }, { "input": "4", "output": "2" }, { "input": "6", "output": "3" }, { "input": "13", "output": "1" }, { "input": "100000", "output": "35" ...
1,651,777,025
2,147,483,647
Python 3
OK
TESTS
33
61
0
a = int(input()) b = 0 for i in range(1, a): if (a - i) % i == 0: b += 1 print(b)
Title: Fafa and his Company Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fafa owns a company that works on huge projects. There are *n* employees in Fafa's company. Whenever the company has a new project to start working on, Fafa has to divide the tasks of this project among all the emp...
```python a = int(input()) b = 0 for i in range(1, a): if (a - i) % i == 0: b += 1 print(b) ```
3
141
A
Amusing Joke
PROGRAMMING
800
[ "implementation", "sortings", "strings" ]
null
null
So, the New Year holidays are over. Santa Claus and his colleagues can take a rest and have guests at last. When two "New Year and Christmas Men" meet, thear assistants cut out of cardboard the letters from the guest's name and the host's name in honor of this event. Then the hung the letters above the main entrance. O...
The input file consists of three lines: the first line contains the guest's name, the second line contains the name of the residence host and the third line contains letters in a pile that were found at the door in the morning. All lines are not empty and contain only uppercase Latin letters. The length of each line do...
Print "YES" without the quotes, if the letters in the pile could be permuted to make the names of the "New Year and Christmas Men". Otherwise, print "NO" without the quotes.
[ "SANTACLAUS\nDEDMOROZ\nSANTAMOROZDEDCLAUS\n", "PAPAINOEL\nJOULUPUKKI\nJOULNAPAOILELUPUKKI\n", "BABBONATALE\nFATHERCHRISTMAS\nBABCHRISTMASBONATALLEFATHER\n" ]
[ "YES\n", "NO\n", "NO\n" ]
In the first sample the letters written in the last line can be used to write the names and there won't be any extra letters left. In the second sample letter "P" is missing from the pile and there's an extra letter "L". In the third sample there's an extra letter "L".
500
[ { "input": "SANTACLAUS\nDEDMOROZ\nSANTAMOROZDEDCLAUS", "output": "YES" }, { "input": "PAPAINOEL\nJOULUPUKKI\nJOULNAPAOILELUPUKKI", "output": "NO" }, { "input": "BABBONATALE\nFATHERCHRISTMAS\nBABCHRISTMASBONATALLEFATHER", "output": "NO" }, { "input": "B\nA\nAB", "output": ...
1,692,255,666
2,147,483,647
PyPy 3-64
OK
TESTS
54
124
0
a=input() b=input() c=input() f=a+b res1=' '.join(sorted(f)) res2=' '.join(sorted(c)) if res1==res2: print('YES') else: print('NO')
Title: Amusing Joke Time Limit: None seconds Memory Limit: None megabytes Problem Description: So, the New Year holidays are over. Santa Claus and his colleagues can take a rest and have guests at last. When two "New Year and Christmas Men" meet, thear assistants cut out of cardboard the letters from the guest's nam...
```python a=input() b=input() c=input() f=a+b res1=' '.join(sorted(f)) res2=' '.join(sorted(c)) if res1==res2: print('YES') else: print('NO') ```
3
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,691,663,951
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
s = input() n = len(s) c = n-2 print(s[0]+str(c)+s[-1])
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 s = input() n = len(s) c = n-2 print(s[0]+str(c)+s[-1]) ```
0
965
A
Paper Airplanes
PROGRAMMING
800
[ "math" ]
null
null
To make a paper airplane, one has to use a rectangular piece of paper. From a sheet of standard size you can make $s$ airplanes. A group of $k$ people decided to make $n$ airplanes each. They are going to buy several packs of paper, each of them containing $p$ sheets, and then distribute the sheets between the people....
The only line contains four integers $k$, $n$, $s$, $p$ ($1 \le k, n, s, p \le 10^4$) — the number of people, the number of airplanes each should make, the number of airplanes that can be made using one sheet and the number of sheets in one pack, respectively.
Print a single integer — the minimum number of packs they should buy.
[ "5 3 2 3\n", "5 3 100 1\n" ]
[ "4\n", "5\n" ]
In the first sample they have to buy $4$ packs of paper: there will be $12$ sheets in total, and giving $2$ sheets to each person is enough to suit everyone's needs. In the second sample they have to buy a pack for each person as they can't share sheets.
500
[ { "input": "5 3 2 3", "output": "4" }, { "input": "5 3 100 1", "output": "5" }, { "input": "10000 10000 1 1", "output": "100000000" }, { "input": "1 1 10000 10000", "output": "1" }, { "input": "300 300 21 23", "output": "196" }, { "input": "300 2 37 51...
1,689,965,007
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
30
0
k, n, s, p = map(int, input().split()) r = k%p r2 = n%s if s > n: if p > k: print(1) elif k > p and r==0: print(k/p) elif k > p and r > 0: print((k//p)+1) elif n > s: if r2>0: if (k*(n//s+1))%p == 0: print((k*(n//s+1))//p) else: ...
Title: Paper Airplanes Time Limit: None seconds Memory Limit: None megabytes Problem Description: To make a paper airplane, one has to use a rectangular piece of paper. From a sheet of standard size you can make $s$ airplanes. A group of $k$ people decided to make $n$ airplanes each. They are going to buy several p...
```python k, n, s, p = map(int, input().split()) r = k%p r2 = n%s if s > n: if p > k: print(1) elif k > p and r==0: print(k/p) elif k > p and r > 0: print((k//p)+1) elif n > s: if r2>0: if (k*(n//s+1))%p == 0: print((k*(n//s+1))//p) else:...
0
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,664,811,225
2,147,483,647
Python 3
OK
TESTS
35
92
0
arr = [int (x) for x in input().split()] m = arr[0] n = arr[1] total = int(m*n / 2) print(total)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python arr = [int (x) for x in input().split()] m = arr[0] n = arr[1] total = int(m*n / 2) print(total) ```
3.977
437
C
The Child and Toy
PROGRAMMING
1,400
[ "graphs", "greedy", "sortings" ]
null
null
On Children's Day, the child got a toy from Delayyy as a present. However, the child is so naughty that he can't wait to destroy the toy. The toy consists of *n* parts and *m* ropes. Each rope links two parts, but every pair of parts is linked by at most one rope. To split the toy, the child must remove all its parts....
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=1000; 0<=≤<=*m*<=≤<=2000). The second line contains *n* integers: *v*1,<=*v*2,<=...,<=*v**n* (0<=≤<=*v**i*<=≤<=105). Then followed *m* lines, each line contains two integers *x**i* and *y**i*, representing a rope from part *x**i* to part *y**i* (1<=≤<=*x**...
Output the minimum total energy the child should spend to remove all *n* parts of the toy.
[ "4 3\n10 20 30 40\n1 4\n1 2\n2 3\n", "4 4\n100 100 100 100\n1 2\n2 3\n2 4\n3 4\n", "7 10\n40 10 20 10 20 80 40\n1 5\n4 7\n4 5\n5 2\n5 7\n6 4\n1 6\n1 3\n4 3\n1 4\n" ]
[ "40\n", "400\n", "160\n" ]
One of the optimal sequence of actions in the first sample is: - First, remove part 3, cost of the action is 20. - Then, remove part 2, cost of the action is 10. - Next, remove part 4, cost of the action is 10. - At last, remove part 1, cost of the action is 0. So the total energy the child paid is 20 + 10 + 10 +...
1,500
[ { "input": "4 3\n10 20 30 40\n1 4\n1 2\n2 3", "output": "40" }, { "input": "4 4\n100 100 100 100\n1 2\n2 3\n2 4\n3 4", "output": "400" }, { "input": "7 10\n40 10 20 10 20 80 40\n1 5\n4 7\n4 5\n5 2\n5 7\n6 4\n1 6\n1 3\n4 3\n1 4", "output": "160" }, { "input": "1 0\n23333", ...
1,608,807,756
2,147,483,647
Python 3
OK
TESTS
29
109
307,200
n, m = map(int, input("").split()) weight_list = list(map(int, input("").split())) vertice_weights = { i: weight_list[i-1] for i in range(1, n+1)} edge_list = [] for i in range(m): start, end = map(int, input("").split()) edge_list.append((start, end)) min_energy = 0 for edge in edge_list: sta...
Title: The Child and Toy Time Limit: None seconds Memory Limit: None megabytes Problem Description: On Children's Day, the child got a toy from Delayyy as a present. However, the child is so naughty that he can't wait to destroy the toy. The toy consists of *n* parts and *m* ropes. Each rope links two parts, but ev...
```python n, m = map(int, input("").split()) weight_list = list(map(int, input("").split())) vertice_weights = { i: weight_list[i-1] for i in range(1, n+1)} edge_list = [] for i in range(m): start, end = map(int, input("").split()) edge_list.append((start, end)) min_energy = 0 for edge in edge_list...
3
450
A
Jzzhu and Children
PROGRAMMING
1,000
[ "implementation" ]
null
null
There are *n* children in Jzzhu's school. Jzzhu is going to give some candies to them. Let's number all the children from 1 to *n*. The *i*-th child wants to get at least *a**i* candies. Jzzhu asks children to line up. Initially, the *i*-th child stands at the *i*-th place of the line. Then Jzzhu start distribution of...
The first line contains two integers *n*,<=*m* (1<=≤<=*n*<=≤<=100; 1<=≤<=*m*<=≤<=100). The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100).
Output a single integer, representing the number of the last child.
[ "5 2\n1 3 1 4 2\n", "6 4\n1 1 2 2 3 3\n" ]
[ "4\n", "6\n" ]
Let's consider the first sample. Firstly child 1 gets 2 candies and go home. Then child 2 gets 2 candies and go to the end of the line. Currently the line looks like [3, 4, 5, 2] (indices of the children in order of the line). Then child 3 gets 2 candies and go home, and then child 4 gets 2 candies and goes to the en...
500
[ { "input": "5 2\n1 3 1 4 2", "output": "4" }, { "input": "6 4\n1 1 2 2 3 3", "output": "6" }, { "input": "7 3\n6 1 5 4 2 3 1", "output": "4" }, { "input": "10 5\n2 7 3 6 2 5 1 3 4 5", "output": "4" }, { "input": "100 1\n1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18...
1,647,754,570
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
43
1,000
0
def Jzhuu(l,m,n): i=0 found=False while True: for i in range(len(l)): if l[i]<m: l[i]=0 else: l[i]=l[i]-m if l.count(0)==n-1: found=True break if found==True: ...
Title: Jzzhu and Children Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* children in Jzzhu's school. Jzzhu is going to give some candies to them. Let's number all the children from 1 to *n*. The *i*-th child wants to get at least *a**i* candies. Jzzhu asks children to line ...
```python def Jzhuu(l,m,n): i=0 found=False while True: for i in range(len(l)): if l[i]<m: l[i]=0 else: l[i]=l[i]-m if l.count(0)==n-1: found=True break if found==Tru...
0
34
B
Sale
PROGRAMMING
900
[ "greedy", "sortings" ]
B. Sale
2
256
Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can «buy» any TV sets he wants. Though he's very strong, Bob can carry at most *m* TV set...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*m*<=≤<=*n*<=≤<=100) — amount of TV sets at the sale, and amount of TV sets that Bob can carry. The following line contains *n* space-separated integers *a**i* (<=-<=1000<=≤<=*a**i*<=≤<=1000) — prices of the TV sets.
Output the only number — the maximum sum of money that Bob can earn, given that he can carry at most *m* TV sets.
[ "5 3\n-6 0 35 -2 4\n", "4 2\n7 0 0 -7\n" ]
[ "8\n", "7\n" ]
none
1,000
[ { "input": "5 3\n-6 0 35 -2 4", "output": "8" }, { "input": "4 2\n7 0 0 -7", "output": "7" }, { "input": "6 6\n756 -611 251 -66 572 -818", "output": "1495" }, { "input": "5 5\n976 437 937 788 518", "output": "0" }, { "input": "5 3\n-2 -2 -2 -2 -2", "output": "...
1,693,512,471
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
4
186
0
import sys # Define constants INF = float('inf') MOD = 10**9 + 7 # Define input functions def read_int(): return int(sys.stdin.readline()) def read_ints(): return list(map(int, sys.stdin.readline().split())) def read_str(): return sys.stdin.readline().strip() def read_strs(): retur...
Title: Sale Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can...
```python import sys # Define constants INF = float('inf') MOD = 10**9 + 7 # Define input functions def read_int(): return int(sys.stdin.readline()) def read_ints(): return list(map(int, sys.stdin.readline().split())) def read_str(): return sys.stdin.readline().strip() def read_strs(): ...
0
735
C
Tennis Championship
PROGRAMMING
1,600
[ "combinatorics", "constructive algorithms", "greedy", "math" ]
null
null
Famous Brazil city Rio de Janeiro holds a tennis tournament and Ostap Bender doesn't want to miss this event. There will be *n* players participating, and the tournament will follow knockout rules from the very first game. That means, that if someone loses a game he leaves the tournament immediately. Organizers are st...
The only line of the input contains a single integer *n* (2<=≤<=*n*<=≤<=1018) — the number of players to participate in the tournament.
Print the maximum number of games in which the winner of the tournament can take part.
[ "2\n", "3\n", "4\n", "10\n" ]
[ "1\n", "2\n", "2\n", "4\n" ]
In all samples we consider that player number 1 is the winner. In the first sample, there would be only one game so the answer is 1. In the second sample, player 1 can consequently beat players 2 and 3. In the third sample, player 1 can't play with each other player as after he plays with players 2 and 3 he can't p...
1,750
[ { "input": "2", "output": "1" }, { "input": "3", "output": "2" }, { "input": "4", "output": "2" }, { "input": "10", "output": "4" }, { "input": "1000", "output": "14" }, { "input": "2500", "output": "15" }, { "input": "690000", "output"...
1,481,819,684
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
62
0
from math import * n = int(input()) print(floor(log(sqrt(5)*n,(1.0+sqrt(5))/2.0) )-2 )
Title: Tennis Championship Time Limit: None seconds Memory Limit: None megabytes Problem Description: Famous Brazil city Rio de Janeiro holds a tennis tournament and Ostap Bender doesn't want to miss this event. There will be *n* players participating, and the tournament will follow knockout rules from the very firs...
```python from math import * n = int(input()) print(floor(log(sqrt(5)*n,(1.0+sqrt(5))/2.0) )-2 ) ```
0
0
none
none
none
0
[ "none" ]
null
null
Theater stage is a rectangular field of size *n*<=×<=*m*. The director gave you the stage's plan which actors will follow. For each cell it is stated in the plan if there would be an actor in this cell or not. You are to place a spotlight on the stage in some good position. The spotlight will project light in one of t...
The first line contains two positive integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1000) — the number of rows and the number of columns in the plan. The next *n* lines contain *m* integers, 0 or 1 each — the description of the plan. Integer 1, means there will be an actor in the corresponding cell, while 0 means the cell ...
Print one integer — the number of good positions for placing the spotlight.
[ "2 4\n0 1 0 0\n1 0 1 0\n", "4 4\n0 0 0 0\n1 0 0 1\n0 1 1 0\n0 1 0 0\n" ]
[ "9\n", "20\n" ]
In the first example the following positions are good: 1. the (1, 1) cell and right direction; 1. the (1, 1) cell and down direction; 1. the (1, 3) cell and left direction; 1. the (1, 3) cell and down direction; 1. the (1, 4) cell and left direction; 1. the (2, 2) cell and left direction; 1. the (2, 2) cell and...
0
[ { "input": "2 4\n0 1 0 0\n1 0 1 0", "output": "9" }, { "input": "4 4\n0 0 0 0\n1 0 0 1\n0 1 1 0\n0 1 0 0", "output": "20" }, { "input": "1 5\n1 1 0 0 0", "output": "3" }, { "input": "2 10\n0 0 0 0 0 0 0 1 0 0\n1 0 0 0 0 0 0 0 0 0", "output": "20" }, { "input": "3 ...
1,676,903,555
2,147,483,647
PyPy 3
OK
TESTS
72
280
15,360,000
import sys, os, io input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline def f(u, v): return u * m + v n, m = map(int, input().split()) a = [] for _ in range(n): a0 = list(map(int, input().split())) for i in a0: a.append(i) v = [(1, 0), (-1, 0), (0, 1), (0, -1)] ans = 0 for i ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Theater stage is a rectangular field of size *n*<=×<=*m*. The director gave you the stage's plan which actors will follow. For each cell it is stated in the plan if there would be an actor in this cell or not. You are to place a ...
```python import sys, os, io input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline def f(u, v): return u * m + v n, m = map(int, input().split()) a = [] for _ in range(n): a0 = list(map(int, input().split())) for i in a0: a.append(i) v = [(1, 0), (-1, 0), (0, 1), (0, -1)] ans =...
3
763
C
Timofey and remoduling
PROGRAMMING
2,600
[ "brute force", "implementation", "math", "number theory" ]
null
null
Little Timofey likes integers a lot. Unfortunately, he is very young and can't work with very big integers, so he does all the operations modulo his favorite prime *m*. Also, Timofey likes to look for arithmetical progressions everywhere. One of his birthday presents was a sequence of distinct integers *a*1,<=*a*2,<=....
The first line contains two integers *m* and *n* (2<=≤<=*m*<=≤<=109<=+<=7, 1<=≤<=*n*<=≤<=105, *m* is prime) — Timofey's favorite prime module and the length of the sequence. The second line contains *n* distinct integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=&lt;<=*m*) — the elements of the sequence.
Print -1 if it is not possible to rearrange the elements of the sequence so that is will be an arithmetical progression modulo *m*. Otherwise, print two integers — the first element of the obtained progression *x* (0<=≤<=*x*<=&lt;<=*m*) and its difference *d* (0<=≤<=*d*<=&lt;<=*m*). If there are multiple answers, pri...
[ "17 5\n0 2 4 13 15\n", "17 5\n0 2 4 13 14\n", "5 3\n1 2 3\n" ]
[ "13 2\n", "-1\n", "3 4\n" ]
none
1,500
[ { "input": "17 5\n0 2 4 13 15", "output": "13 2" }, { "input": "17 5\n0 2 4 13 14", "output": "-1" }, { "input": "5 3\n1 2 3", "output": "3 4" }, { "input": "17 8\n7 9 11 13 15 1 3 5", "output": "1 2" }, { "input": "13 2\n0 11", "output": "0 11" }, { "...
1,689,369,906
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
31
0
print("_RANDOM_GUESS_1689369906.3844302")# 1689369906.384471
Title: Timofey and remoduling Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Timofey likes integers a lot. Unfortunately, he is very young and can't work with very big integers, so he does all the operations modulo his favorite prime *m*. Also, Timofey likes to look for arithmetica...
```python print("_RANDOM_GUESS_1689369906.3844302")# 1689369906.384471 ```
0
70
C
Lucky Tickets
PROGRAMMING
2,200
[ "binary search", "data structures", "sortings", "two pointers" ]
C. Lucky Tickets
1
256
In Walrusland public transport tickets are characterized by two integers: by the number of the series and by the number of the ticket in the series. Let the series number be represented by *a* and the ticket number — by *b*, then a ticket is described by the ordered pair of numbers (*a*,<=*b*). The walruses believe t...
The first line contains three integers *max**x*, *max**y*, *w* (1<=≤<=*max**x*,<=*max**y*<=≤<=105, 1<=≤<=*w*<=≤<=107).
Print on a single line two space-separated numbers, the *x* and the *y*. If there are several possible variants, print any of them. If such *x* and *y* do not exist, print a single number <=-<=1.
[ "2 2 1\n", "132 10 35\n", "5 18 1000\n", "48 132 235\n" ]
[ "1 1", "7 5", "-1\n", "22 111" ]
none
1,500
[ { "input": "2 2 1", "output": "1 1" }, { "input": "132 10 35", "output": "7 5" }, { "input": "5 18 1000", "output": "-1" }, { "input": "48 132 235", "output": "22 111" }, { "input": "119 69 169", "output": "101 9" }, { "input": "49 24 83", "output"...
1,695,109,391
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
11
1,500
20,275,200
import sys from collections import Counter from math import gcd # input MAX_X, MAX_Y, W = 0, 0, 0 # output result = [] # x, y pairs def read_input(): global MAX_X, MAX_Y, W readline = sys.stdin.readline MAX_X, MAX_Y, W = [int(w) for w in readline().split()] def solve(): rev = [int(str(i)[::-1]) for...
Title: Lucky Tickets Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: In Walrusland public transport tickets are characterized by two integers: by the number of the series and by the number of the ticket in the series. Let the series number be represented by *a* and the ticket number — by *b*, ...
```python import sys from collections import Counter from math import gcd # input MAX_X, MAX_Y, W = 0, 0, 0 # output result = [] # x, y pairs def read_input(): global MAX_X, MAX_Y, W readline = sys.stdin.readline MAX_X, MAX_Y, W = [int(w) for w in readline().split()] def solve(): rev = [int(str(i)[...
0
715
D
Create a Maze
PROGRAMMING
3,100
[ "constructive algorithms" ]
null
null
ZS the Coder loves mazes. Your job is to create one so that he can play with it. A maze consists of *n*<=×<=*m* rooms, and the rooms are arranged in *n* rows (numbered from the top to the bottom starting from 1) and *m* columns (numbered from the left to the right starting from 1). The room in the *i*-th row and *j*-th...
The first and only line of the input contains a single integer *T* (1<=≤<=*T*<=≤<=1018), the difficulty of the required maze.
The first line should contain two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=50) — the number of rows and columns of the maze respectively. The next line should contain a single integer *k* (0<=≤<=*k*<=≤<=300) — the number of locked doors in the maze. Then, *k* lines describing locked doors should follow. Each of them...
[ "3\n", "4\n" ]
[ "3 2\n0\n", "4 3\n3\n1 2 2 2\n3 2 3 3\n1 3 2 3" ]
Here are how the sample input and output looks like. The colored arrows denotes all the possible paths while a red cross denotes a locked door. In the first sample case: In the second sample case:
2,500
[ { "input": "3", "output": "4 4\n5\n1 2 2 2\n1 3 2 3\n1 4 2 4\n2 1 2 2\n4 1 4 2" }, { "input": "4", "output": "4 4\n4\n1 2 2 2\n1 3 2 3\n2 1 2 2\n4 1 4 2" }, { "input": "576460752303423488", "output": "48 48\n233\n1 2 2 2\n1 3 2 3\n2 1 2 2\n2 4 2 5\n2 6 3 6\n2 7 3 7\n3 4 3 5\n3 5 4 5\...
1,474,123,917
4,017
Python 3
WRONG_ANSWER
PRETESTS
1
46
0
print("3 2 0");
Title: Create a Maze Time Limit: None seconds Memory Limit: None megabytes Problem Description: ZS the Coder loves mazes. Your job is to create one so that he can play with it. A maze consists of *n*<=×<=*m* rooms, and the rooms are arranged in *n* rows (numbered from the top to the bottom starting from 1) and *m* c...
```python print("3 2 0"); ```
0