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
686
A
Free Ice Cream
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, people start standing in the queue before Kay and Gerda's house even in the night. Each person in the...
The first line contains two space-separated integers *n* and *x* (1<=≤<=*n*<=≤<=1000, 0<=≤<=*x*<=≤<=109). Each of the next *n* lines contains a character '+' or '-', and an integer *d**i*, separated by a space (1<=≤<=*d**i*<=≤<=109). Record "+ *d**i*" in *i*-th line means that a carrier with *d**i* ice cream packs occ...
Print two space-separated integers — number of ice cream packs left after all operations, and number of kids that left the house in distress.
[ "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20\n", "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98\n" ]
[ "22 1\n", "3 2\n" ]
Consider the first sample. 1. Initially Kay and Gerda have 7 packs of ice cream. 1. Carrier brings 5 more, so now they have 12 packs. 1. A kid asks for 10 packs and receives them. There are only 2 packs remaining. 1. Another kid asks for 20 packs. Kay and Gerda do not have them, so the kid goes away distressed. 1....
500
[ { "input": "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20", "output": "22 1" }, { "input": "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98", "output": "3 2" }, { "input": "6 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000", "output": "7000000000 0" }, { ...
1,615,823,070
2,147,483,647
Python 3
OK
TESTS
34
77
307,200
a,b = input().split() a,b =[int(a),int(b)] distress=0 total = b for i in range(a): inp = eval(input()) if total+inp<0: distress = distress + 1 else: total = total+inp print(f'{total} {distress}')
Title: Free Ice Cream Time Limit: None seconds Memory Limit: None megabytes Problem Description: After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, p...
```python a,b = input().split() a,b =[int(a),int(b)] distress=0 total = b for i in range(a): inp = eval(input()) if total+inp<0: distress = distress + 1 else: total = total+inp print(f'{total} {distress}') ```
3
946
A
Partition
PROGRAMMING
800
[ "greedy" ]
null
null
You are given a sequence *a* consisting of *n* integers. You may partition this sequence into two sequences *b* and *c* in such a way that every element belongs exactly to one of these sequences. Let *B* be the sum of elements belonging to *b*, and *C* be the sum of elements belonging to *c* (if some of these sequenc...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in *a*. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (<=-<=100<=≤<=*a**i*<=≤<=100) — the elements of sequence *a*.
Print the maximum possible value of *B*<=-<=*C*, where *B* is the sum of elements of sequence *b*, and *C* is the sum of elements of sequence *c*.
[ "3\n1 -2 0\n", "6\n16 23 16 15 42 8\n" ]
[ "3\n", "120\n" ]
In the first example we may choose *b* = {1, 0}, *c* = { - 2}. Then *B* = 1, *C* =  - 2, *B* - *C* = 3. In the second example we choose *b* = {16, 23, 16, 15, 42, 8}, *c* = {} (an empty sequence). Then *B* = 120, *C* = 0, *B* - *C* = 120.
0
[ { "input": "3\n1 -2 0", "output": "3" }, { "input": "6\n16 23 16 15 42 8", "output": "120" }, { "input": "1\n-1", "output": "1" }, { "input": "100\n-100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -10...
1,576,870,063
2,147,483,647
PyPy 3
OK
TESTS
72
155
0
n=input() l=list(map(int,input().split())) c=0 for i in l: c+=abs(i) print(c)
Title: Partition Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a sequence *a* consisting of *n* integers. You may partition this sequence into two sequences *b* and *c* in such a way that every element belongs exactly to one of these sequences. Let *B* be the sum of eleme...
```python n=input() l=list(map(int,input().split())) c=0 for i in l: c+=abs(i) print(c) ```
3
743
B
Chloe and the sequence
PROGRAMMING
1,200
[ "binary search", "bitmasks", "constructive algorithms", "implementation" ]
null
null
Chloe, the same as Vladik, is a competitive programmer. She didn't have any problems to get to the olympiad like Vladik, but she was confused by the task proposed on the olympiad. Let's consider the following algorithm of generating a sequence of integers. Initially we have a sequence consisting of a single element eq...
The only line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=50, 1<=≤<=*k*<=≤<=2*n*<=-<=1).
Print single integer — the integer at the *k*-th position in the obtained sequence.
[ "3 2\n", "4 8\n" ]
[ "2", "4" ]
In the first sample the obtained sequence is [1, 2, 1, 3, 1, 2, 1]. The number on the second position is 2. In the second sample the obtained sequence is [1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1]. The number on the eighth position is 4.
1,000
[ { "input": "3 2", "output": "2" }, { "input": "4 8", "output": "4" }, { "input": "5 27", "output": "1" }, { "input": "7 44", "output": "3" }, { "input": "15 18432", "output": "12" }, { "input": "20 259676", "output": "3" }, { "input": "30 6...
1,640,961,707
2,147,483,647
PyPy 3-64
OK
TESTS
39
109
0
import math n, k = [int(i) for i in input().split()] c = 0 while k % 2 == 0: k = k//2 c += 1 print(c+1)
Title: Chloe and the sequence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Chloe, the same as Vladik, is a competitive programmer. She didn't have any problems to get to the olympiad like Vladik, but she was confused by the task proposed on the olympiad. Let's consider the following a...
```python import math n, k = [int(i) for i in input().split()] c = 0 while k % 2 == 0: k = k//2 c += 1 print(c+1) ```
3
604
A
Uncowed Forces
PROGRAMMING
1,000
[ "implementation" ]
null
null
Kevin Sun has just finished competing in Codeforces Round #334! The round was 120 minutes long and featured five problems with maximum point values of 500, 1000, 1500, 2000, and 2500, respectively. Despite the challenging tasks, Kevin was uncowed and bulldozed through all of them, distinguishing himself from the herd a...
The first line of the input contains five space-separated integers *m*1, *m*2, *m*3, *m*4, *m*5, where *m**i* (0<=≤<=*m**i*<=≤<=119) is the time of Kevin's last submission for problem *i*. His last submission is always correct and gets accepted. The second line contains five space-separated integers *w*1, *w*2, *w*3, ...
Print a single integer, the value of Kevin's final score.
[ "20 40 60 80 100\n0 1 2 3 4\n1 0\n", "119 119 119 119 119\n0 0 0 0 0\n10 0\n" ]
[ "4900\n", "4930\n" ]
In the second sample, Kevin takes 119 minutes on all of the problems. Therefore, he gets <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/42158dc2bc78cd21fa679530ae9ef8b9ea298d15.png" style="max-width: 100.0%;max-height: 100.0%;"/> of the points on each problem. So his score from solving pro...
500
[ { "input": "20 40 60 80 100\n0 1 2 3 4\n1 0", "output": "4900" }, { "input": "119 119 119 119 119\n0 0 0 0 0\n10 0", "output": "4930" }, { "input": "3 6 13 38 60\n6 10 10 3 8\n9 9", "output": "5088" }, { "input": "21 44 11 68 75\n6 2 4 8 4\n2 8", "output": "4522" }, {...
1,609,238,334
2,147,483,647
Python 3
OK
TESTS
57
155
819,200
import math import os import random import re import sys import functools from operator import itemgetter, attrgetter from collections import Counter if __name__ == '__main__': Y = lambda: list(map(int, input().split())) P = lambda: map(int, input().split()) N = lambda: int(input()) m = ...
Title: Uncowed Forces Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kevin Sun has just finished competing in Codeforces Round #334! The round was 120 minutes long and featured five problems with maximum point values of 500, 1000, 1500, 2000, and 2500, respectively. Despite the challengin...
```python import math import os import random import re import sys import functools from operator import itemgetter, attrgetter from collections import Counter if __name__ == '__main__': Y = lambda: list(map(int, input().split())) P = lambda: map(int, input().split()) N = lambda: int(input()) ...
3
689
A
Mike and Cellphone
PROGRAMMING
1,400
[ "brute force", "constructive algorithms", "implementation" ]
null
null
While swimming at the beach, Mike has accidentally dropped his cellphone into the water. There was no worry as he bought a cheap replacement phone with an old-fashioned keyboard. The keyboard has only ten digital equal-sized keys, located in the following way: Together with his old phone, he lost all his contacts and ...
The first line of the input contains the only integer *n* (1<=≤<=*n*<=≤<=9) — the number of digits in the phone number that Mike put in. The second line contains the string consisting of *n* digits (characters from '0' to '9') representing the number that Mike put in.
If there is no other phone number with the same finger movements and Mike can be sure he is calling the correct number, print "YES" (without quotes) in the only line. Otherwise print "NO" (without quotes) in the first line.
[ "3\n586\n", "2\n09\n", "9\n123456789\n", "3\n911\n" ]
[ "NO\n", "NO\n", "YES\n", "YES\n" ]
You can find the picture clarifying the first sample case in the statement above.
500
[ { "input": "3\n586", "output": "NO" }, { "input": "2\n09", "output": "NO" }, { "input": "9\n123456789", "output": "YES" }, { "input": "3\n911", "output": "YES" }, { "input": "3\n089", "output": "NO" }, { "input": "3\n159", "output": "YES" }, { ...
1,593,075,790
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
4
155
20,172,800
t=[[1,2,3],[4,5,6],[7,8,9],['x',0,'x']] a= int(input()) f=[] s = input() for j in s: if len(f)==0: for u in range(4): if int(j) in t[u]: f.append([u,t[u].index(int(j))]) break else: for u in range(4): ...
Title: Mike and Cellphone Time Limit: None seconds Memory Limit: None megabytes Problem Description: While swimming at the beach, Mike has accidentally dropped his cellphone into the water. There was no worry as he bought a cheap replacement phone with an old-fashioned keyboard. The keyboard has only ten digital equ...
```python t=[[1,2,3],[4,5,6],[7,8,9],['x',0,'x']] a= int(input()) f=[] s = input() for j in s: if len(f)==0: for u in range(4): if int(j) in t[u]: f.append([u,t[u].index(int(j))]) break else: for u in range(4): ...
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,679,735,533
2,147,483,647
Python 3
OK
TESTS
20
46
0
for _ in range(int(input())): s= input() n= len(s) if n> 10: print(s[0] + str(n- 2) + s[-1]) else: print(s)
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 for _ in range(int(input())): s= input() n= len(s) if n> 10: print(s[0] + str(n- 2) + s[-1]) else: print(s) ```
3.977
637
B
Chat Order
PROGRAMMING
1,200
[ "*special", "binary search", "constructive algorithms", "data structures", "sortings" ]
null
null
Polycarp is a big lover of killing time in social networks. A page with a chatlist in his favourite network is made so that when a message is sent to some friend, his friend's chat rises to the very top of the page. The relative order of the other chats doesn't change. If there was no chat with this friend before, then...
The first line contains integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of Polycarpus' messages. Next *n* lines enlist the message recipients in the order in which the messages were sent. The name of each participant is a non-empty sequence of lowercase English letters of length at most 10.
Print all the recipients to who Polycarp talked to in the order of chats with them, from top to bottom.
[ "4\nalex\nivan\nroman\nivan\n", "8\nalina\nmaria\nekaterina\ndarya\ndarya\nekaterina\nmaria\nalina\n" ]
[ "ivan\nroman\nalex\n", "alina\nmaria\nekaterina\ndarya\n" ]
In the first test case Polycarpus first writes to friend by name "alex", and the list looks as follows: 1. alex Then Polycarpus writes to friend by name "ivan" and the list looks as follows: 1. ivan 1. alex Polycarpus writes the third message to friend by name "roman" and the list looks as follows: 1. roman 1...
1,000
[ { "input": "4\nalex\nivan\nroman\nivan", "output": "ivan\nroman\nalex" }, { "input": "8\nalina\nmaria\nekaterina\ndarya\ndarya\nekaterina\nmaria\nalina", "output": "alina\nmaria\nekaterina\ndarya" }, { "input": "1\nwdi", "output": "wdi" }, { "input": "2\nypg\nypg", "outpu...
1,458,420,584
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
12
3,000
13,516,800
N = int(input()) L = [] L_in = [] for i in range(N): L.append(input()) for i in reversed(range(len(L))): if L[i] not in L_in: L_in.append(L[i]) print(L[i])
Title: Chat Order Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp is a big lover of killing time in social networks. A page with a chatlist in his favourite network is made so that when a message is sent to some friend, his friend's chat rises to the very top of the page. The rela...
```python N = int(input()) L = [] L_in = [] for i in range(N): L.append(input()) for i in reversed(range(len(L))): if L[i] not in L_in: L_in.append(L[i]) print(L[i]) ```
0
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,697,987,403
2,147,483,647
Python 3
OK
TESTS
71
92
0
a = int(input()) sm = 0 mx = 0 for i in range(a): a, b = map(int, input().split()) sm += b sm -= a if mx < sm: mx = sm print(mx)
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 a = int(input()) sm = 0 mx = 0 for i in range(a): a, b = map(int, input().split()) sm += b sm -= a if mx < sm: mx = sm print(mx) ```
3
894
A
QAQ
PROGRAMMING
800
[ "brute force", "dp" ]
null
null
"QAQ" is a word to denote an expression of crying. Imagine "Q" as eyes with tears and "A" as a mouth. Now Diamond has given Bort a string consisting of only uppercase English letters of length *n*. There is a great number of "QAQ" in the string (Diamond is so cute!). Bort wants to know how many subsequences "QAQ" are...
The only line contains a string of length *n* (1<=≤<=*n*<=≤<=100). It's guaranteed that the string only contains uppercase English letters.
Print a single integer — the number of subsequences "QAQ" in the string.
[ "QAQAQYSYIOIWIN\n", "QAQQQZZYNOIWIN\n" ]
[ "4\n", "3\n" ]
In the first example there are 4 subsequences "QAQ": "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN".
500
[ { "input": "QAQAQYSYIOIWIN", "output": "4" }, { "input": "QAQQQZZYNOIWIN", "output": "3" }, { "input": "QA", "output": "0" }, { "input": "IAQVAQZLQBQVQFTQQQADAQJA", "output": "24" }, { "input": "QQAAQASGAYAAAAKAKAQIQEAQAIAAIAQQQQQ", "output": "378" }, { ...
1,596,789,536
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
108
7,065,600
from collections import defaultdict n=int(input()) a=list(map(int,input().split())) d=defaultdict(lambda:0) for i in a: d[i]+=1 dp=[-1 for i in range(100001)] dp[0]=0 dp[1]=d[1] for i in range(2,100001): dp[i]=max(dp[i-1],dp[i-2]+d[i]*i) print(dp[100000])
Title: QAQ Time Limit: None seconds Memory Limit: None megabytes Problem Description: "QAQ" is a word to denote an expression of crying. Imagine "Q" as eyes with tears and "A" as a mouth. Now Diamond has given Bort a string consisting of only uppercase English letters of length *n*. There is a great number of "QAQ"...
```python from collections import defaultdict n=int(input()) a=list(map(int,input().split())) d=defaultdict(lambda:0) for i in a: d[i]+=1 dp=[-1 for i in range(100001)] dp[0]=0 dp[1]=d[1] for i in range(2,100001): dp[i]=max(dp[i-1],dp[i-2]+d[i]*i) print(dp[100000]) ```
-1
471
A
MUH and Sticks
PROGRAMMING
1,100
[ "implementation" ]
null
null
Two polar bears Menshykov and Uslada from the St.Petersburg zoo and elephant Horace from the Kiev zoo got six sticks to play with and assess the animals' creativity. Menshykov, Uslada and Horace decided to make either an elephant or a bear from those sticks. They can make an animal from sticks in the following way: -...
The single line contains six space-separated integers *l**i* (1<=≤<=*l**i*<=≤<=9) — the lengths of the six sticks. It is guaranteed that the input is such that you cannot make both animals from the sticks.
If you can make a bear from the given set, print string "Bear" (without the quotes). If you can make an elephant, print string "Elephant" (wıthout the quotes). If you can make neither a bear nor an elephant, print string "Alien" (without the quotes).
[ "4 2 5 4 4 4\n", "4 4 5 4 4 5\n", "1 2 3 4 5 6\n" ]
[ "Bear", "Elephant", "Alien" ]
If you're out of creative ideas, see instructions below which show how to make a bear and an elephant in the first two samples. The stick of length 2 is in red, the sticks of length 4 are in green, the sticks of length 5 are in blue.
500
[ { "input": "4 2 5 4 4 4", "output": "Bear" }, { "input": "4 4 5 4 4 5", "output": "Elephant" }, { "input": "1 2 3 4 5 6", "output": "Alien" }, { "input": "5 5 5 5 5 5", "output": "Elephant" }, { "input": "1 1 1 2 3 5", "output": "Alien" }, { "input": "...
1,498,320,577
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
46
4,608,000
l=list(map(int,input().split(" "))) s=set(l) total=0 if len(s)==1: print("Elephant") elif len(s)==2: for i in s: if l.count(i)==4: total=total+1 if l.count(i)==2: total=total+1 if total==2: print("Elephant") else: print("Alien") elif len(s)==3: for i in s: if l.count(i)==4: total=total+1 if l....
Title: MUH and Sticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two polar bears Menshykov and Uslada from the St.Petersburg zoo and elephant Horace from the Kiev zoo got six sticks to play with and assess the animals' creativity. Menshykov, Uslada and Horace decided to make either an...
```python l=list(map(int,input().split(" "))) s=set(l) total=0 if len(s)==1: print("Elephant") elif len(s)==2: for i in s: if l.count(i)==4: total=total+1 if l.count(i)==2: total=total+1 if total==2: print("Elephant") else: print("Alien") elif len(s)==3: for i in s: if l.count(i)==4: total=total...
0
864
C
Bus
PROGRAMMING
1,500
[ "greedy", "implementation", "math" ]
null
null
A bus moves along the coordinate line *Ox* from the point *x*<==<=0 to the point *x*<==<=*a*. After starting from the point *x*<==<=0, it reaches the point *x*<==<=*a*, immediately turns back and then moves to the point *x*<==<=0. After returning to the point *x*<==<=0 it immediately goes back to the point *x*<==<=*a* ...
The first line contains four integers *a*, *b*, *f*, *k* (0<=&lt;<=*f*<=&lt;<=*a*<=≤<=106, 1<=≤<=*b*<=≤<=109, 1<=≤<=*k*<=≤<=104) — the endpoint of the first bus journey, the capacity of the fuel tank of the bus, the point where the gas station is located, and the required number of journeys.
Print the minimum number of times the bus needs to refuel to make *k* journeys. If it is impossible for the bus to make *k* journeys, print -1.
[ "6 9 2 4\n", "6 10 2 4\n", "6 5 4 3\n" ]
[ "4\n", "2\n", "-1\n" ]
In the first example the bus needs to refuel during each journey. In the second example the bus can pass 10 units of distance without refueling. So the bus makes the whole first journey, passes 4 units of the distance of the second journey and arrives at the point with the gas station. Then it can refuel its tank, fin...
1,500
[ { "input": "6 9 2 4", "output": "4" }, { "input": "6 10 2 4", "output": "2" }, { "input": "6 5 4 3", "output": "-1" }, { "input": "2 2 1 1", "output": "0" }, { "input": "10 4 6 10", "output": "-1" }, { "input": "3 1 1 1", "output": "-1" }, { ...
1,512,648,136
2,896
Python 3
WRONG_ANSWER
TESTS
3
46
5,529,600
a,b,f,k=map(int,input().split()) if k==1: if b<f:print(-1) elif b<a-f:print(-1) else:print(b<a-f) if f>b or (a-f)*2>b or f*2>b:exit(print(-1)) t,tt=0,0 odd=0 tb=b-f if b-f<(a-f)*2:t+=1;b-=f+(a-f)*2 if b<f:t+=1 if tb-f<(a-f)*2: if k&1 and tb<a:odd+=1 tt+=1 tb-=f+(a-f)*2 if tb<f:tt+...
Title: Bus Time Limit: None seconds Memory Limit: None megabytes Problem Description: A bus moves along the coordinate line *Ox* from the point *x*<==<=0 to the point *x*<==<=*a*. After starting from the point *x*<==<=0, it reaches the point *x*<==<=*a*, immediately turns back and then moves to the point *x*<==<=0. ...
```python a,b,f,k=map(int,input().split()) if k==1: if b<f:print(-1) elif b<a-f:print(-1) else:print(b<a-f) if f>b or (a-f)*2>b or f*2>b:exit(print(-1)) t,tt=0,0 odd=0 tb=b-f if b-f<(a-f)*2:t+=1;b-=f+(a-f)*2 if b<f:t+=1 if tb-f<(a-f)*2: if k&1 and tb<a:odd+=1 tt+=1 tb-=f+(a-f)*2 i...
0
440
A
Forgotten Episode
PROGRAMMING
800
[ "implementation" ]
null
null
Polycarpus adores TV series. Right now he is ready to finish watching a season of a popular sitcom "Graph Theory". In total, the season has *n* episodes, numbered with integers from 1 to *n*. Polycarpus watches episodes not one by one but in a random order. He has already watched all the episodes except for one. Which...
The first line of the input contains integer *n* (2<=≤<=*n*<=≤<=100000) — the number of episodes in a season. Assume that the episodes are numbered by integers from 1 to *n*. The second line contains *n*<=-<=1 integer *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=*n*) — the numbers of episodes that Polycarpus has watch...
Print the number of the episode that Polycarpus hasn't watched.
[ "10\n3 8 10 1 7 9 6 5 2\n" ]
[ "4\n" ]
none
500
[ { "input": "10\n3 8 10 1 7 9 6 5 2", "output": "4" }, { "input": "5\n4 3 2 1", "output": "5" }, { "input": "2\n1", "output": "2" }, { "input": "2\n2", "output": "1" }, { "input": "3\n1 2", "output": "3" }, { "input": "3\n1 3", "output": "2" }, ...
1,622,302,885
2,147,483,647
Python 3
OK
TESTS
35
108
9,216,000
n=int(input()) l=set(map(int,input().split())) k=set(range(1,n+1)) k1=k-l print(*k1)
Title: Forgotten Episode Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus adores TV series. Right now he is ready to finish watching a season of a popular sitcom "Graph Theory". In total, the season has *n* episodes, numbered with integers from 1 to *n*. Polycarpus watches episo...
```python n=int(input()) l=set(map(int,input().split())) k=set(range(1,n+1)) k1=k-l print(*k1) ```
3
609
B
The Best Gift
PROGRAMMING
1,100
[ "constructive algorithms", "implementation" ]
null
null
Emily's birthday is next week and Jack has decided to buy a present for her. He knows she loves books so he goes to the local bookshop, where there are *n* books on sale from one of *m* genres. In the bookshop, Jack decides to buy two books of different genres. Based on the genre of books on sale in the shop, find th...
The first line contains two positive integers *n* and *m* (2<=≤<=*n*<=≤<=2·105,<=2<=≤<=*m*<=≤<=10) — the number of books in the bookstore and the number of genres. The second line contains a sequence *a*1,<=*a*2,<=...,<=*a**n*, where *a**i* (1<=≤<=*a**i*<=≤<=*m*) equals the genre of the *i*-th book. It is guaranteed ...
Print the only integer — the number of ways in which Jack can choose books. It is guaranteed that the answer doesn't exceed the value 2·109.
[ "4 3\n2 1 3 1\n", "7 4\n4 2 3 1 2 4 3\n" ]
[ "5\n", "18\n" ]
The answer to the first test sample equals 5 as Sasha can choose: 1. the first and second books, 1. the first and third books, 1. the first and fourth books, 1. the second and third books, 1. the third and fourth books.
0
[ { "input": "4 3\n2 1 3 1", "output": "5" }, { "input": "7 4\n4 2 3 1 2 4 3", "output": "18" }, { "input": "2 2\n1 2", "output": "1" }, { "input": "3 2\n1 2 2", "output": "2" }, { "input": "10 10\n1 2 3 4 5 6 7 8 9 10", "output": "45" }, { "input": "9 2...
1,686,791,258
2,147,483,647
PyPy 3-64
OK
TESTS
42
93
15,974,400
from collections import Counter t=1 n,m = map(int,input().split()) a = Counter(map(int,input().split())) ans = n*(n-1)//2 for i in range(1,m+1): ans -= a[i]*(a[i]-1)//2 print(ans)
Title: The Best Gift Time Limit: None seconds Memory Limit: None megabytes Problem Description: Emily's birthday is next week and Jack has decided to buy a present for her. He knows she loves books so he goes to the local bookshop, where there are *n* books on sale from one of *m* genres. In the bookshop, Jack deci...
```python from collections import Counter t=1 n,m = map(int,input().split()) a = Counter(map(int,input().split())) ans = n*(n-1)//2 for i in range(1,m+1): ans -= a[i]*(a[i]-1)//2 print(ans) ```
3
246
B
Increase and Decrease
PROGRAMMING
1,300
[ "greedy", "math" ]
null
null
Polycarpus has an array, consisting of *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Polycarpus likes it when numbers in an array match. That's why he wants the array to have as many equal numbers as possible. For that Polycarpus performs the following operation multiple times: - he chooses two elements of the array *a**i...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the array size. The second line contains space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (|*a**i*|<=≤<=104) — the original array.
Print a single integer — the maximum number of equal array elements he can get if he performs an arbitrary number of the given operation.
[ "2\n2 1\n", "3\n1 4 1\n" ]
[ "1\n", "3\n" ]
none
1,000
[ { "input": "2\n2 1", "output": "1" }, { "input": "3\n1 4 1", "output": "3" }, { "input": "4\n2 -7 -2 -6", "output": "3" }, { "input": "4\n2 0 -2 -1", "output": "3" }, { "input": "6\n-1 1 0 0 -1 -1", "output": "5" }, { "input": "5\n0 0 0 0 0", "outp...
1,694,789,603
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
import java.util.Scanner; public class IncreaseAndDecrease { public static void main(String[] args) { Scanner s=new Scanner(System.in); int n = s.nextInt(); int sum=0; for (int i=0;i<n;i++) sum+=s.nextInt(); if (sum%n==0) System.out.println(n); else System.out...
Title: Increase and Decrease Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus has an array, consisting of *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Polycarpus likes it when numbers in an array match. That's why he wants the array to have as many equal numbers as possible. For that...
```python import java.util.Scanner; public class IncreaseAndDecrease { public static void main(String[] args) { Scanner s=new Scanner(System.in); int n = s.nextInt(); int sum=0; for (int i=0;i<n;i++) sum+=s.nextInt(); if (sum%n==0) System.out.println(n); else ...
-1
378
A
Playing with Dice
PROGRAMMING
800
[ "brute force" ]
null
null
Two players are playing a game. First each of them writes an integer from 1 to 6, and then a dice is thrown. The player whose written number got closer to the number on the dice wins. If both payers have the same difference, it's a draw. The first player wrote number *a*, the second player wrote number *b*. How many w...
The single line contains two integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=6) — the numbers written on the paper by the first and second player, correspondingly.
Print three integers: the number of ways to throw the dice at which the first player wins, the game ends with a draw or the second player wins, correspondingly.
[ "2 5\n", "2 4\n" ]
[ "3 0 3\n", "2 1 3\n" ]
The dice is a standard cube-shaped six-sided object with each side containing a number from 1 to 6, and where all numbers on all sides are distinct. You can assume that number *a* is closer to number *x* than number *b*, if |*a* - *x*| &lt; |*b* - *x*|.
500
[ { "input": "2 5", "output": "3 0 3" }, { "input": "2 4", "output": "2 1 3" }, { "input": "5 3", "output": "2 1 3" }, { "input": "1 6", "output": "3 0 3" }, { "input": "5 1", "output": "3 1 2" }, { "input": "6 3", "output": "2 0 4" }, { "inp...
1,567,807,878
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
202
2,560,000
a=int(input()) b=int(input()) def win_ways(a,b): a_win=0 b_win=0 draw=0 for i in range(1,7): if abs(a-i)<abs(b-i): a_win+=1 elif abs(a-i)>abs(b-i): b_win+=1 else: draw+=1 output=[a_win,draw,b_win] return output print(win_ways(a,b)) ...
Title: Playing with Dice Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two players are playing a game. First each of them writes an integer from 1 to 6, and then a dice is thrown. The player whose written number got closer to the number on the dice wins. If both payers have the same diff...
```python a=int(input()) b=int(input()) def win_ways(a,b): a_win=0 b_win=0 draw=0 for i in range(1,7): if abs(a-i)<abs(b-i): a_win+=1 elif abs(a-i)>abs(b-i): b_win+=1 else: draw+=1 output=[a_win,draw,b_win] return output print(win_ways(...
-1
129
A
Cookies
PROGRAMMING
900
[ "implementation" ]
null
null
Olga came to visit the twins Anna and Maria and saw that they have many cookies. The cookies are distributed into bags. As there are many cookies, Olga decided that it's no big deal if she steals a bag. However, she doesn't want the sisters to quarrel because of nothing when they divide the cookies. That's why Olga wan...
The first line contains the only integer *n* (1<=≤<=*n*<=≤<=100) — the number of cookie bags Anna and Maria have. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=100) — the number of cookies in the *i*-th bag.
Print in the only line the only number — the sought number of ways. If there are no such ways print 0.
[ "1\n1\n", "10\n1 2 2 3 4 4 4 2 2 2\n", "11\n2 2 2 2 2 2 2 2 2 2 99\n" ]
[ "1\n", "8\n", "1\n" ]
In the first sample Olga should take the only bag so that the twins ended up with the even number of cookies. In the second sample Olga can take any of five bags with two cookies or any of three bags with four cookies — 5 + 3 = 8 ways in total. In the third sample, no matter which bag with two cookies Olga chooses, t...
500
[ { "input": "1\n1", "output": "1" }, { "input": "10\n1 2 2 3 4 4 4 2 2 2", "output": "8" }, { "input": "11\n2 2 2 2 2 2 2 2 2 2 99", "output": "1" }, { "input": "2\n1 1", "output": "0" }, { "input": "2\n2 2", "output": "2" }, { "input": "2\n1 2", "o...
1,510,420,039
2,147,483,647
Python 3
OK
TESTS
52
124
0
n = int(input()) li = [int(num) for num in input().split(' ')] total, ans = 0, 0 for num in li: total += num for num in li: if (total-num) % 2 == 0: ans += 1 print(ans)
Title: Cookies Time Limit: None seconds Memory Limit: None megabytes Problem Description: Olga came to visit the twins Anna and Maria and saw that they have many cookies. The cookies are distributed into bags. As there are many cookies, Olga decided that it's no big deal if she steals a bag. However, she doesn't wan...
```python n = int(input()) li = [int(num) for num in input().split(' ')] total, ans = 0, 0 for num in li: total += num for num in li: if (total-num) % 2 == 0: ans += 1 print(ans) ```
3
8
A
Train and Peter
PROGRAMMING
1,200
[ "strings" ]
A. Train and Peter
1
64
Peter likes to travel by train. He likes it so much that on the train he falls asleep. Once in summer Peter was going by train from city A to city B, and as usual, was sleeping. Then he woke up, started to look through the window and noticed that every railway station has a flag of a particular colour. The boy start...
The input data contains three lines. The first line contains a non-empty string, whose length does not exceed 105, the string consists of lowercase Latin letters — the flags' colours at the stations on the way from A to B. On the way from B to A the train passes the same stations, but in reverse order. The second lin...
Output one of the four words without inverted commas: - «forward» — if Peter could see such sequences only on the way from A to B; - «backward» — if Peter could see such sequences on the way from B to A; - «both» — if Peter could see such sequences both on the way from A to B, and on the way from B to A; - «fanta...
[ "atob\na\nb\n", "aaacaaa\naca\naa\n" ]
[ "forward\n", "both\n" ]
It is assumed that the train moves all the time, so one flag cannot be seen twice. There are no flags at stations A and B.
0
[ { "input": "atob\na\nb", "output": "forward" }, { "input": "aaacaaa\naca\naa", "output": "both" }, { "input": "aaa\naa\naa", "output": "fantasy" }, { "input": "astalavista\nastla\nlavista", "output": "fantasy" }, { "input": "abacabadabacaba\nabacaba\nabacaba", ...
1,664,263,903
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
92
0
all = str(input("")) w1 = str(input("")) w2 = str(input("")) def prob(all, w1, w2): if all.find(w1) < all.find(w2): if all[::-1].find(w1) < all[::-1].find(w2): return "both" return "forward" if all.find(w1) > all.find(w2): if all[::-1].find(w1) > all[::-1].find(w2): ...
Title: Train and Peter Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Peter likes to travel by train. He likes it so much that on the train he falls asleep. Once in summer Peter was going by train from city A to city B, and as usual, was sleeping. Then he woke up, started to look through the...
```python all = str(input("")) w1 = str(input("")) w2 = str(input("")) def prob(all, w1, w2): if all.find(w1) < all.find(w2): if all[::-1].find(w1) < all[::-1].find(w2): return "both" return "forward" if all.find(w1) > all.find(w2): if all[::-1].find(w1) > all[::-1]....
0
381
A
Sereja and Dima
PROGRAMMING
800
[ "greedy", "implementation", "two pointers" ]
null
null
Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. During his turn a player can take one card: either the leftmost card in a row, or the rightmost one. Th...
The first line contains integer *n* (1<=≤<=*n*<=≤<=1000) — the number of cards on the table. The second line contains space-separated numbers on the cards from left to right. The numbers on the cards are distinct integers from 1 to 1000.
On a single line, print two integers. The first number is the number of Sereja's points at the end of the game, the second number is the number of Dima's points at the end of the game.
[ "4\n4 1 2 10\n", "7\n1 2 3 4 5 6 7\n" ]
[ "12 5\n", "16 12\n" ]
In the first sample Sereja will take cards with numbers 10 and 2, so Sereja's sum is 12. Dima will take cards with numbers 4 and 1, so Dima's sum is 5.
500
[ { "input": "4\n4 1 2 10", "output": "12 5" }, { "input": "7\n1 2 3 4 5 6 7", "output": "16 12" }, { "input": "42\n15 29 37 22 16 5 26 31 6 32 19 3 45 36 33 14 25 20 48 7 42 11 24 28 9 18 8 21 47 17 38 40 44 4 35 1 43 39 41 27 12 13", "output": "613 418" }, { "input": "43\n32 ...
1,698,044,657
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
31
0
a=int(input()) b=list(map(int,input().split())) s=0 s1=0 r=0 p=1 l=0 for x in range(a//2): if r==0: if b[len(b)-p]>b[l]: s+=b[len(b)-p] r=1 p+=1 else: s+=b[l] r=1 l+=1 if r==1: if b[len(b)-p]>b[l]: ...
Title: Sereja and Dima Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. Du...
```python a=int(input()) b=list(map(int,input().split())) s=0 s1=0 r=0 p=1 l=0 for x in range(a//2): if r==0: if b[len(b)-p]>b[l]: s+=b[len(b)-p] r=1 p+=1 else: s+=b[l] r=1 l+=1 if r==1: if b[len(b)...
0
387
A
George and Sleep
PROGRAMMING
900
[ "implementation" ]
null
null
George woke up and saw the current time *s* on the digital clock. Besides, George knows that he has slept for time *t*. Help George! Write a program that will, given time *s* and *t*, determine the time *p* when George went to bed. Note that George could have gone to bed yesterday relatively to the current time (see ...
The first line contains current time *s* as a string in the format "hh:mm". The second line contains time *t* in the format "hh:mm" — the duration of George's sleep. It is guaranteed that the input contains the correct time in the 24-hour format, that is, 00<=≤<=*hh*<=≤<=23, 00<=≤<=*mm*<=≤<=59.
In the single line print time *p* — the time George went to bed in the format similar to the format of the time in the input.
[ "05:50\n05:44\n", "00:00\n01:00\n", "00:01\n00:00\n" ]
[ "00:06\n", "23:00\n", "00:01\n" ]
In the first sample George went to bed at "00:06". Note that you should print the time only in the format "00:06". That's why answers "0:06", "00:6" and others will be considered incorrect. In the second sample, George went to bed yesterday. In the third sample, George didn't do to bed at all.
500
[ { "input": "05:50\n05:44", "output": "00:06" }, { "input": "00:00\n01:00", "output": "23:00" }, { "input": "00:01\n00:00", "output": "00:01" }, { "input": "23:59\n23:59", "output": "00:00" }, { "input": "23:44\n23:55", "output": "23:49" }, { "input": "...
1,536,154,776
2,147,483,647
Python 3
OK
TESTS
47
124
307,200
n = [int(k) for k in input().split(':')] m = [int(k) for k in input().split(':')] k = n[0]*60 + n[1] j = m[0]*60 + m[1] def h(x): for s in range(2 - len(x)): x = str(0) + x return x def f(x): a = int(x/60) b = x%60 c = h(str(a))+':'+h(str(b)) return c if k >= j: print(f...
Title: George and Sleep Time Limit: None seconds Memory Limit: None megabytes Problem Description: George woke up and saw the current time *s* on the digital clock. Besides, George knows that he has slept for time *t*. Help George! Write a program that will, given time *s* and *t*, determine the time *p* when Geor...
```python n = [int(k) for k in input().split(':')] m = [int(k) for k in input().split(':')] k = n[0]*60 + n[1] j = m[0]*60 + m[1] def h(x): for s in range(2 - len(x)): x = str(0) + x return x def f(x): a = int(x/60) b = x%60 c = h(str(a))+':'+h(str(b)) return c if k >= j: ...
3
791
A
Bear and Big Brother
PROGRAMMING
800
[ "implementation" ]
null
null
Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or equal to his brother's weight. Limak eats a lot and his weight is tripled after every year, while Bob's we...
The only line of the input contains two integers *a* and *b* (1<=≤<=*a*<=≤<=*b*<=≤<=10) — the weight of Limak and the weight of Bob respectively.
Print one integer, denoting the integer number of years after which Limak will become strictly larger than Bob.
[ "4 7\n", "4 9\n", "1 1\n" ]
[ "2\n", "3\n", "1\n" ]
In the first sample, Limak weighs 4 and Bob weighs 7 initially. After one year their weights are 4·3 = 12 and 7·2 = 14 respectively (one weight is tripled while the other one is doubled). Limak isn't larger than Bob yet. After the second year weights are 36 and 28, so the first weight is greater than the second one. Li...
500
[ { "input": "4 7", "output": "2" }, { "input": "4 9", "output": "3" }, { "input": "1 1", "output": "1" }, { "input": "4 6", "output": "2" }, { "input": "1 10", "output": "6" }, { "input": "1 1", "output": "1" }, { "input": "1 2", "output...
1,698,325,222
2,147,483,647
PyPy 3-64
OK
TESTS
62
62
0
Limak, Bob = map(int, input().split()) years = 0 while Limak <= Bob: years, Limak, Bob = years + 1, Limak * 3, Bob * 2 print(years)
Title: Bear and Big Brother Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or e...
```python Limak, Bob = map(int, input().split()) years = 0 while Limak <= Bob: years, Limak, Bob = years + 1, Limak * 3, Bob * 2 print(years) ```
3
570
B
Simple Game
PROGRAMMING
1,300
[ "constructive algorithms", "games", "greedy", "implementation", "math" ]
null
null
One day Misha and Andrew were playing a very simple game. First, each player chooses an integer in the range from 1 to *n*. Let's assume that Misha chose number *m*, and Andrew chose number *a*. Then, by using a random generator they choose a random integer *c* in the range between 1 and *n* (any integer from 1 to *n*...
The first line contains two integers *n* and *m* (1<=≤<=*m*<=≤<=*n*<=≤<=109) — the range of numbers in the game, and the number selected by Misha respectively.
Print a single number — such value *a*, that probability that Andrew wins is the highest. If there are multiple such values, print the minimum of them.
[ "3 1\n", "4 3\n" ]
[ "2", "2" ]
In the first sample test: Andrew wins if *c* is equal to 2 or 3. The probability that Andrew wins is 2 / 3. If Andrew chooses *a* = 3, the probability of winning will be 1 / 3. If *a* = 1, the probability of winning is 0. In the second sample test: Andrew wins if *c* is equal to 1 and 2. The probability that Andrew wi...
1,000
[ { "input": "3 1", "output": "2" }, { "input": "4 3", "output": "2" }, { "input": "5 5", "output": "4" }, { "input": "10 5", "output": "6" }, { "input": "20 13", "output": "12" }, { "input": "51 1", "output": "2" }, { "input": "100 50", ...
1,638,250,778
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
92
0
from sys import stdin, stdout rd = lambda: list(map(int, stdin.readline().split())) rds = lambda: stdin.readline().rstrip() ii = lambda: int(stdin.readline()) n, m = rd() d1 = m - 1 d2 = n - m if d2 > d1: x = (n+m) // 2 if x == m and x != n: x += 1 else: x = (m+1) // 2 if x == m and x != n: ...
Title: Simple Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Misha and Andrew were playing a very simple game. First, each player chooses an integer in the range from 1 to *n*. Let's assume that Misha chose number *m*, and Andrew chose number *a*. Then, by using a random gen...
```python from sys import stdin, stdout rd = lambda: list(map(int, stdin.readline().split())) rds = lambda: stdin.readline().rstrip() ii = lambda: int(stdin.readline()) n, m = rd() d1 = m - 1 d2 = n - m if d2 > d1: x = (n+m) // 2 if x == m and x != n: x += 1 else: x = (m+1) // 2 if x == m and...
0
450
B
Jzzhu and Sequences
PROGRAMMING
1,300
[ "implementation", "math" ]
null
null
Jzzhu has invented a kind of sequences, they meet the following property: You are given *x* and *y*, please calculate *f**n* modulo 1000000007 (109<=+<=7).
The first line contains two integers *x* and *y* (|*x*|,<=|*y*|<=≤<=109). The second line contains a single integer *n* (1<=≤<=*n*<=≤<=2·109).
Output a single integer representing *f**n* modulo 1000000007 (109<=+<=7).
[ "2 3\n3\n", "0 -1\n2\n" ]
[ "1\n", "1000000006\n" ]
In the first sample, *f*<sub class="lower-index">2</sub> = *f*<sub class="lower-index">1</sub> + *f*<sub class="lower-index">3</sub>, 3 = 2 + *f*<sub class="lower-index">3</sub>, *f*<sub class="lower-index">3</sub> = 1. In the second sample, *f*<sub class="lower-index">2</sub> =  - 1;  - 1 modulo (10<sup class="upper-...
1,000
[ { "input": "2 3\n3", "output": "1" }, { "input": "0 -1\n2", "output": "1000000006" }, { "input": "-9 -11\n12345", "output": "1000000005" }, { "input": "0 0\n1000000000", "output": "0" }, { "input": "-1000000000 1000000000\n2000000000", "output": "1000000000" ...
1,652,690,662
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
171
41,984,000
from statistics import multimode def multiply(a, b): d = 2 #Dimensions mul = [[0 for x in range(d)] for y in range(d)] for i in range(d): for j in range(d): mul[i][j] = 0 for k in range(d): mul[i][j] += a[i][k] * b[k][j] for i in range(d): ...
Title: Jzzhu and Sequences Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jzzhu has invented a kind of sequences, they meet the following property: You are given *x* and *y*, please calculate *f**n* modulo 1000000007 (109<=+<=7). Input Specification: The first line contains two integers...
```python from statistics import multimode def multiply(a, b): d = 2 #Dimensions mul = [[0 for x in range(d)] for y in range(d)] for i in range(d): for j in range(d): mul[i][j] = 0 for k in range(d): mul[i][j] += a[i][k] * b[k][j] for i in range(...
-1
1,004
A
Sonya and Hotels
PROGRAMMING
900
[ "implementation" ]
null
null
Sonya decided that having her own hotel business is the best way of earning money because she can profit and rest wherever she wants. The country where Sonya lives is an endless line. There is a city in each integer coordinate on this line. She has $n$ hotels, where the $i$-th hotel is located in the city with coordin...
The first line contains two integers $n$ and $d$ ($1\leq n\leq 100$, $1\leq d\leq 10^9$) — the number of Sonya's hotels and the needed minimum distance from a new hotel to all others. The second line contains $n$ different integers in strictly increasing order $x_1, x_2, \ldots, x_n$ ($-10^9\leq x_i\leq 10^9$) — coord...
Print the number of cities where Sonya can build a new hotel so that the minimum distance from this hotel to all others is equal to $d$.
[ "4 3\n-3 2 9 16\n", "5 2\n4 8 11 18 19\n" ]
[ "6\n", "5\n" ]
In the first example, there are $6$ possible cities where Sonya can build a hotel. These cities have coordinates $-6$, $5$, $6$, $12$, $13$, and $19$. In the second example, there are $5$ possible cities where Sonya can build a hotel. These cities have coordinates $2$, $6$, $13$, $16$, and $21$.
500
[ { "input": "4 3\n-3 2 9 16", "output": "6" }, { "input": "5 2\n4 8 11 18 19", "output": "5" }, { "input": "10 10\n-67 -59 -49 -38 -8 20 41 59 74 83", "output": "8" }, { "input": "10 10\n0 20 48 58 81 95 111 137 147 159", "output": "9" }, { "input": "100 1\n0 1 2 3...
1,530,809,379
879
Python 3
OK
TESTS
45
124
0
n, d = map(int, input().split()) arr = list(map(int, input().split())) if n == 1: ans = 2 else: s = set() s.add(arr[0] - d) s.add(arr[-1] + d) for i in range(n): if i == 0: if arr[i + 1] - arr[i] - d >= d: s.add(arr[i] + d) elif i == n - 1: if ...
Title: Sonya and Hotels Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sonya decided that having her own hotel business is the best way of earning money because she can profit and rest wherever she wants. The country where Sonya lives is an endless line. There is a city in each integer c...
```python n, d = map(int, input().split()) arr = list(map(int, input().split())) if n == 1: ans = 2 else: s = set() s.add(arr[0] - d) s.add(arr[-1] + d) for i in range(n): if i == 0: if arr[i + 1] - arr[i] - d >= d: s.add(arr[i] + d) elif i == n - 1: ...
3
742
A
Arpa’s hard exam and Mehrdad’s naive cheat
PROGRAMMING
1,000
[ "implementation", "math", "number theory" ]
null
null
There exists an island called Arpa’s land, some beautiful girls live there, as ugly ones do. Mehrdad wants to become minister of Arpa’s land. Arpa has prepared an exam. Exam has only one question, given *n*, print the last digit of 1378*n*. Mehrdad has become quite confused and wants you to help him. Please help, al...
The single line of input contains one integer *n* (0<=<=≤<=<=*n*<=<=≤<=<=109).
Print single integer — the last digit of 1378*n*.
[ "1\n", "2\n" ]
[ "8", "4" ]
In the first example, last digit of 1378<sup class="upper-index">1</sup> = 1378 is 8. In the second example, last digit of 1378<sup class="upper-index">2</sup> = 1378·1378 = 1898884 is 4.
500
[ { "input": "1", "output": "8" }, { "input": "2", "output": "4" }, { "input": "1000", "output": "6" }, { "input": "3", "output": "2" }, { "input": "4", "output": "6" }, { "input": "1000000000", "output": "6" }, { "input": "5", "output": ...
1,661,153,813
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
1,000
0
from sys import stdin,stdout def solve(): n = int(stdin.readline()) ans = 1 for i in range(n): ans = (ans*8)%10 return ans res = solve() stdout.write(str(res))
Title: Arpa’s hard exam and Mehrdad’s naive cheat Time Limit: None seconds Memory Limit: None megabytes Problem Description: There exists an island called Arpa’s land, some beautiful girls live there, as ugly ones do. Mehrdad wants to become minister of Arpa’s land. Arpa has prepared an exam. Exam has only one ques...
```python from sys import stdin,stdout def solve(): n = int(stdin.readline()) ans = 1 for i in range(n): ans = (ans*8)%10 return ans res = solve() stdout.write(str(res)) ```
0
61
A
Ultra-Fast Mathematician
PROGRAMMING
800
[ "implementation" ]
A. Ultra-Fast Mathematician
2
256
Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 1018 numbers in a single second. One day in 230 AD Shapur was trying to find out if any one can possibly do...
There are two lines in each input. Each of them contains a single number. It is guaranteed that the numbers are made from 0 and 1 only and that their length is same. The numbers may start with 0. The length of each number doesn't exceed 100.
Write one line — the corresponding answer. Do not omit the leading 0s.
[ "1010100\n0100101\n", "000\n111\n", "1110\n1010\n", "01110\n01100\n" ]
[ "1110001\n", "111\n", "0100\n", "00010\n" ]
none
500
[ { "input": "1010100\n0100101", "output": "1110001" }, { "input": "000\n111", "output": "111" }, { "input": "1110\n1010", "output": "0100" }, { "input": "01110\n01100", "output": "00010" }, { "input": "011101\n000001", "output": "011100" }, { "input": "...
1,529,943,279
2,147,483,647
Python 3
OK
TESTS
102
93
0
from sys import stdin a = stdin.readline() b = stdin.readline() r ='' for i in range(len(a)-1): r+=str(int(bool(int(a[i])) != bool(int(b[i])))) print(r)
Title: Ultra-Fast Mathematician Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 10...
```python from sys import stdin a = stdin.readline() b = stdin.readline() r ='' for i in range(len(a)-1): r+=str(int(bool(int(a[i])) != bool(int(b[i])))) print(r) ```
3.97675
858
B
Which floor?
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
In a building where Polycarp lives there are equal number of flats on each floor. Unfortunately, Polycarp don't remember how many flats are on each floor, but he remembers that the flats are numbered from 1 from lower to upper floors. That is, the first several flats are on the first floor, the next several flats are o...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=100, 0<=≤<=*m*<=≤<=100), where *n* is the number of the flat you need to restore floor for, and *m* is the number of flats in Polycarp's memory. *m* lines follow, describing the Polycarp's memory: each of these lines contains a pair of integers *k**i*,<=*...
Print the number of the floor in which the *n*-th flat is located, if it is possible to determine it in a unique way. Print -1 if it is not possible to uniquely restore this floor.
[ "10 3\n6 2\n2 1\n7 3\n", "8 4\n3 1\n6 2\n5 2\n2 1\n" ]
[ "4\n", "-1\n" ]
In the first example the 6-th flat is on the 2-nd floor, while the 7-th flat is on the 3-rd, so, the 6-th flat is the last on its floor and there are 3 flats on each floor. Thus, the 10-th flat is on the 4-th floor. In the second example there can be 3 or 4 flats on each floor, so we can't restore the floor for the 8-...
750
[ { "input": "10 3\n6 2\n2 1\n7 3", "output": "4" }, { "input": "8 4\n3 1\n6 2\n5 2\n2 1", "output": "-1" }, { "input": "8 3\n7 2\n6 2\n1 1", "output": "2" }, { "input": "4 2\n8 3\n3 1", "output": "2" }, { "input": "11 4\n16 4\n11 3\n10 3\n15 4", "output": "3" ...
1,505,656,285
2,785
Python 3
RUNTIME_ERROR
PRETESTS
2
46
0
import math def f(m): global h f = True for i in range(len(h)): for j in h[i]: if not(j <= i * m and j > (i - 1) * m ): f = False return f def binary_search(): left, right = 0, 1000 while right - left > 1: middle = (right + left) // 2 ...
Title: Which floor? Time Limit: None seconds Memory Limit: None megabytes Problem Description: In a building where Polycarp lives there are equal number of flats on each floor. Unfortunately, Polycarp don't remember how many flats are on each floor, but he remembers that the flats are numbered from 1 from lower to u...
```python import math def f(m): global h f = True for i in range(len(h)): for j in h[i]: if not(j <= i * m and j > (i - 1) * m ): f = False return f def binary_search(): left, right = 0, 1000 while right - left > 1: middle = (right + le...
-1
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,690,882,512
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
n,m = map(int,input().split()) a = sorted(map(int,input().split()),reverse=True) s = sum(a[:m]) i=m-1 while i>=0: if a[i]<0: s-=a[i] else: break print(s)
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 n,m = map(int,input().split()) a = sorted(map(int,input().split()),reverse=True) s = sum(a[:m]) i=m-1 while i>=0: if a[i]<0: s-=a[i] else: break print(s) ```
0
216
A
Tiling with Hexagons
PROGRAMMING
1,200
[ "implementation", "math" ]
null
null
Several ages ago Berland was a kingdom. The King of Berland adored math. That's why, when he first visited one of his many palaces, he first of all paid attention to the floor in one hall. The floor was tiled with hexagonal tiles. The hall also turned out hexagonal in its shape. The King walked along the perimeter of ...
The first line contains three integers: *a*, *b* and *c* (2<=≤<=*a*,<=*b*,<=*c*<=≤<=1000).
Print a single number — the total number of tiles on the hall floor.
[ "2 3 4\n" ]
[ "18" ]
none
500
[ { "input": "2 3 4", "output": "18" }, { "input": "2 2 2", "output": "7" }, { "input": "7 8 13", "output": "224" }, { "input": "14 7 75", "output": "1578" }, { "input": "201 108 304", "output": "115032" }, { "input": "999 998 996", "output": "298302...
1,483,934,419
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
92
4,608,000
a,b,c = input().split() a,b,c = int(a), int(b), int(c) tiles = 0 while (a!=0 and b!=0 and c!=0): tiles += 2*(a+b+c) - 6 a -= 1 b -= 1 c -= 1 print(tiles)
Title: Tiling with Hexagons Time Limit: None seconds Memory Limit: None megabytes Problem Description: Several ages ago Berland was a kingdom. The King of Berland adored math. That's why, when he first visited one of his many palaces, he first of all paid attention to the floor in one hall. The floor was tiled with ...
```python a,b,c = input().split() a,b,c = int(a), int(b), int(c) tiles = 0 while (a!=0 and b!=0 and c!=0): tiles += 2*(a+b+c) - 6 a -= 1 b -= 1 c -= 1 print(tiles) ```
0
2
B
The least round way
PROGRAMMING
2,000
[ "dp", "math" ]
B. The least round way
2
64
There is a square matrix *n*<=×<=*n*, consisting of non-negative integer numbers. You should find such a way on it that - starts in the upper left cell of the matrix; - each following cell is to the right or down from the current cell; - the way ends in the bottom right cell. Moreover, if we multiply together all...
The first line contains an integer number *n* (2<=≤<=*n*<=≤<=1000), *n* is the size of the matrix. Then follow *n* lines containing the matrix elements (non-negative integer numbers not exceeding 109).
In the first line print the least number of trailing zeros. In the second line print the correspondent way itself.
[ "3\n1 2 3\n4 5 6\n7 8 9\n" ]
[ "0\nDDRR\n" ]
none
0
[ { "input": "3\n1 2 3\n4 5 6\n7 8 9", "output": "0\nDDRR" }, { "input": "2\n7 6\n3 8", "output": "0\nDR" }, { "input": "3\n4 10 5\n10 9 4\n6 5 3", "output": "1\nDRRD" }, { "input": "4\n1 1 9 9\n3 4 7 3\n7 9 1 7\n1 7 1 5", "output": "0\nDDDRRR" }, { "input": "5\n8 3...
1,646,773,837
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
512,000
import sys lines = iter(sys.stdin) n = [int(x) for x in next(lines).split()][0] matrix = [[int(x) for x in next(lines).split()] for _ in range(n)] dp = [[(0, 0) for _ in range(n)] for _ in range(n)] backtrack = [["N" for _ in range(n)] for _ in range(n)] # f(i, j) - the minimum number of zeroes to get from (0, 0) <ex...
Title: The least round way Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: There is a square matrix *n*<=×<=*n*, consisting of non-negative integer numbers. You should find such a way on it that - starts in the upper left cell of the matrix; - each following cell is to the right or down fro...
```python import sys lines = iter(sys.stdin) n = [int(x) for x in next(lines).split()][0] matrix = [[int(x) for x in next(lines).split()] for _ in range(n)] dp = [[(0, 0) for _ in range(n)] for _ in range(n)] backtrack = [["N" for _ in range(n)] for _ in range(n)] # f(i, j) - the minimum number of zeroes to get from ...
0
615
A
Bulbs
PROGRAMMING
800
[ "implementation" ]
null
null
Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is pressed, it turns on all the bulbs it's connected to. Can Vasya light up all the bulbs? I...
The first line of the input contains integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of buttons and the number of bulbs respectively. Each of the next *n* lines contains *x**i* (0<=≤<=*x**i*<=≤<=*m*) — the number of bulbs that are turned on by the *i*-th button, and then *x**i* numbers *y**ij* (1<=≤<=*y**...
If it's possible to turn on all *m* bulbs print "YES", otherwise print "NO".
[ "3 4\n2 1 4\n3 1 3 1\n1 2\n", "3 3\n1 1\n1 2\n1 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample you can press each button once and turn on all the bulbs. In the 2 sample it is impossible to turn on the 3-rd lamp.
500
[ { "input": "3 4\n2 1 4\n3 1 3 1\n1 2", "output": "YES" }, { "input": "3 3\n1 1\n1 2\n1 1", "output": "NO" }, { "input": "3 4\n1 1\n1 2\n1 3", "output": "NO" }, { "input": "1 5\n5 1 2 3 4 5", "output": "YES" }, { "input": "1 5\n5 4 4 1 2 3", "output": "NO" },...
1,647,081,278
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
31
0
n,m=map(int,input().split());s=set() for _ in [0]*n: for i in [*map(int,input().split())]:s.add(i) print('YNEOS'[len(s)<m::2])
Title: Bulbs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is...
```python n,m=map(int,input().split());s=set() for _ in [0]*n: for i in [*map(int,input().split())]:s.add(i) print('YNEOS'[len(s)<m::2]) ```
0
572
A
Arrays
PROGRAMMING
900
[ "sortings" ]
null
null
You are given two arrays *A* and *B* consisting of integers, sorted in non-decreasing order. Check whether it is possible to choose *k* numbers in array *A* and choose *m* numbers in array *B* so that any number chosen in the first array is strictly less than any number chosen in the second array.
The first line contains two integers *n**A*,<=*n**B* (1<=≤<=*n**A*,<=*n**B*<=≤<=105), separated by a space — the sizes of arrays *A* and *B*, correspondingly. The second line contains two integers *k* and *m* (1<=≤<=*k*<=≤<=*n**A*,<=1<=≤<=*m*<=≤<=*n**B*), separated by a space. The third line contains *n**A* numbers *...
Print "YES" (without the quotes), if you can choose *k* numbers in array *A* and *m* numbers in array *B* so that any number chosen in array *A* was strictly less than any number chosen in array *B*. Otherwise, print "NO" (without the quotes).
[ "3 3\n2 1\n1 2 3\n3 4 5\n", "3 3\n3 3\n1 2 3\n3 4 5\n", "5 2\n3 1\n1 1 1 1 1\n2 2\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first sample test you can, for example, choose numbers 1 and 2 from array *A* and number 3 from array *B* (1 &lt; 3 and 2 &lt; 3). In the second sample test the only way to choose *k* elements in the first array and *m* elements in the second one is to choose all numbers in both arrays, but then not all the num...
500
[ { "input": "3 3\n2 1\n1 2 3\n3 4 5", "output": "YES" }, { "input": "3 3\n3 3\n1 2 3\n3 4 5", "output": "NO" }, { "input": "5 2\n3 1\n1 1 1 1 1\n2 2", "output": "YES" }, { "input": "3 5\n1 1\n5 5 5\n5 5 5 5 5", "output": "NO" }, { "input": "1 1\n1 1\n1\n1", "ou...
1,470,112,855
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include <bits/stdc++.h> using namespace std; int main() { long long nA, nB, m, k, a[100001], b[100001]; cin >> nA >> nB; cin >> k >> m; for (int i = 1; i <= nA; i++) { cin >> a[i]; } for (int i = 1; i <= nB; i++) { cin >> b[i]; } if (a[k] < b[nB - m]) { c...
Title: Arrays Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two arrays *A* and *B* consisting of integers, sorted in non-decreasing order. Check whether it is possible to choose *k* numbers in array *A* and choose *m* numbers in array *B* so that any number chosen in the fi...
```python #include <bits/stdc++.h> using namespace std; int main() { long long nA, nB, m, k, a[100001], b[100001]; cin >> nA >> nB; cin >> k >> m; for (int i = 1; i <= nA; i++) { cin >> a[i]; } for (int i = 1; i <= nB; i++) { cin >> b[i]; } if (a[k] < b[nB - m]) { ...
-1
802
G
Fake News (easy)
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
As it's the first of April, Heidi is suspecting that the news she reads today are fake, and she does not want to look silly in front of all the contestants. She knows that a newspiece is fake if it contains heidi as a subsequence. Help Heidi assess whether the given piece is true, but please be discreet about it...
The first and only line of input contains a single nonempty string *s* of length at most 1000 composed of lowercase letters (a-z).
Output YES if the string *s* contains heidi as a subsequence and NO otherwise.
[ "abcheaibcdi\n", "hiedi\n" ]
[ "YES", "NO" ]
A string *s* contains another string *p* as a subsequence if it is possible to delete some characters from *s* and obtain *p*.
0
[ { "input": "abcheaibcdi", "output": "YES" }, { "input": "hiedi", "output": "NO" }, { "input": "ihied", "output": "NO" }, { "input": "diehi", "output": "NO" }, { "input": "deiih", "output": "NO" }, { "input": "iheid", "output": "NO" }, { "in...
1,619,584,632
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
str1 = input() str2 = "heidi" if str1==str2 print("YES") else: print("NO")
Title: Fake News (easy) Time Limit: None seconds Memory Limit: None megabytes Problem Description: As it's the first of April, Heidi is suspecting that the news she reads today are fake, and she does not want to look silly in front of all the contestants. She knows that a newspiece is fake if it contains heidi as a ...
```python str1 = input() str2 = "heidi" if str1==str2 print("YES") else: print("NO") ```
-1
727
A
Transformation: from A to B
PROGRAMMING
1,000
[ "brute force", "dfs and similar", "math" ]
null
null
Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2·*x*); - append the digit 1 to the right of current number (that is, replace the number *x* by 10·*x*<=+<=1). You need to he...
The first line contains two positive integers *a* and *b* (1<=≤<=*a*<=&lt;<=*b*<=≤<=109) — the number which Vasily has and the number he wants to have.
If there is no way to get *b* from *a*, print "NO" (without quotes). Otherwise print three lines. On the first line print "YES" (without quotes). The second line should contain single integer *k* — the length of the transformation sequence. On the third line print the sequence of transformations *x*1,<=*x*2,<=...,<=*x...
[ "2 162\n", "4 42\n", "100 40021\n" ]
[ "YES\n5\n2 4 8 81 162 \n", "NO\n", "YES\n5\n100 200 2001 4002 40021 \n" ]
none
1,000
[ { "input": "2 162", "output": "YES\n5\n2 4 8 81 162 " }, { "input": "4 42", "output": "NO" }, { "input": "100 40021", "output": "YES\n5\n100 200 2001 4002 40021 " }, { "input": "1 111111111", "output": "YES\n9\n1 11 111 1111 11111 111111 1111111 11111111 111111111 " }, ...
1,582,105,869
2,147,483,647
PyPy 3
OK
TESTS
33
155
0
a,b=input().split() a=int(a) b=int(b) f=0 l=[] while(b>a): if (b%2==1): if (b-1)%10==0: l.append(b) b=(b-1)//10 else: print("NO") f=1 break else: l.append(b) b=b//2 if (f==0): if a==b: prin...
Title: Transformation: from A to B Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2·*x*); - app...
```python a,b=input().split() a=int(a) b=int(b) f=0 l=[] while(b>a): if (b%2==1): if (b-1)%10==0: l.append(b) b=(b-1)//10 else: print("NO") f=1 break else: l.append(b) b=b//2 if (f==0): if a==b: ...
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,636,641,226
2,147,483,647
PyPy 3-64
OK
TESTS
32
124
28,467,200
int(input()) b = list(map(int, input().split())) kch = 0 knch = 0 for i in b[0], b[1], b[2]: if i % 2 == 0: kch += 1 else: knch += 1 if knch > kch: for i in range(len(b)): if b[i] % 2 == 0: print(i + 1) exit(0) else: for i in range(len(b)): if b[i] % 2 != 0: print(i + 1) exit(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 int(input()) b = list(map(int, input().split())) kch = 0 knch = 0 for i in b[0], b[1], b[2]: if i % 2 == 0: kch += 1 else: knch += 1 if knch > kch: for i in range(len(b)): if b[i] % 2 == 0: print(i + 1) exit(0) else: for i in range(len(b)): if b[i] % 2 != 0: print(i + 1) ...
3.915976
680
B
Bear and Finding Criminals
PROGRAMMING
1,000
[ "constructive algorithms", "implementation" ]
null
null
There are *n* cities in Bearland, numbered 1 through *n*. Cities are arranged in one long row. The distance between cities *i* and *j* is equal to |*i*<=-<=*j*|. Limak is a police officer. He lives in a city *a*. His job is to catch criminals. It's hard because he doesn't know in which cities criminals are. Though, he...
The first line of the input contains two integers *n* and *a* (1<=≤<=*a*<=≤<=*n*<=≤<=100) — the number of cities and the index of city where Limak lives. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (0<=≤<=*t**i*<=≤<=1). There are *t**i* criminals in the *i*-th city.
Print the number of criminals Limak will catch.
[ "6 3\n1 1 1 0 1 0\n", "5 2\n0 0 0 1 0\n" ]
[ "3\n", "1\n" ]
In the first sample, there are six cities and Limak lives in the third one (blue arrow below). Criminals are in cities marked red. Using the BCD gives Limak the following information: - There is one criminal at distance 0 from the third city — Limak is sure that this criminal is exactly in the third city. - There i...
1,000
[ { "input": "6 3\n1 1 1 0 1 0", "output": "3" }, { "input": "5 2\n0 0 0 1 0", "output": "1" }, { "input": "1 1\n1", "output": "1" }, { "input": "1 1\n0", "output": "0" }, { "input": "9 3\n1 1 1 1 1 1 1 1 0", "output": "8" }, { "input": "9 5\n1 0 1 0 1 0...
1,596,188,650
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
93
6,963,200
a, n = map(int, input().split()) t = list(map(int, input().split())) i, j = n-2, n ans = 1 if t[n-1] == 1 else 0 while i >= 0 or j < a: if i >=0 and j < a: if t[i] == t[j] == 1: ans += 2 else: if t[i] == 1 or t[j] == 1: ans += 1 i -= 1 j += 1 print(an...
Title: Bear and Finding Criminals Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* cities in Bearland, numbered 1 through *n*. Cities are arranged in one long row. The distance between cities *i* and *j* is equal to |*i*<=-<=*j*|. Limak is a police officer. He lives in a city...
```python a, n = map(int, input().split()) t = list(map(int, input().split())) i, j = n-2, n ans = 1 if t[n-1] == 1 else 0 while i >= 0 or j < a: if i >=0 and j < a: if t[i] == t[j] == 1: ans += 2 else: if t[i] == 1 or t[j] == 1: ans += 1 i -= 1 j += 1...
0
87
A
Trains
PROGRAMMING
1,500
[ "implementation", "math" ]
A. Trains
2
256
Vasya the programmer lives in the middle of the Programming subway branch. He has two girlfriends: Dasha and Masha, who live at the different ends of the branch, each one is unaware of the other one's existence. When Vasya has some free time, he goes to one of his girlfriends. He descends into the subway at some time,...
The first line contains two integers *a* and *b* (*a*<=≠<=*b*,<=1<=≤<=*a*,<=*b*<=≤<=106).
Print "Dasha" if Vasya will go to Dasha more frequently, "Masha" if he will go to Masha more frequently, or "Equal" if he will go to both girlfriends with the same frequency.
[ "3 7\n", "5 3\n", "2 3\n" ]
[ "Dasha\n", "Masha\n", "Equal\n" ]
Let's take a look at the third sample. Let the trains start to go at the zero moment of time. It is clear that the moments of the trains' arrival will be periodic with period 6. That's why it is enough to show that if Vasya descends to the subway at a moment of time inside the interval (0, 6], he will go to both girls ...
500
[ { "input": "3 7", "output": "Dasha" }, { "input": "5 3", "output": "Masha" }, { "input": "2 3", "output": "Equal" }, { "input": "31 88", "output": "Dasha" }, { "input": "8 75", "output": "Dasha" }, { "input": "32 99", "output": "Dasha" }, { ...
1,598,268,720
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
41
2,000
151,347,200
def hcfnaive(a,b): if(b==0): return a else: return hcfnaive(b,a%b) a,b=list(map(int,input().split())) c=(a*b)//hcfnaive(a,b) l=[] for i in range(a,c,a): l.append([i,'d']) for i in range(b,c,b): l.append([i,'m']) l.sort() d,m=0,0 for i in range(len(l)): if l[i][1]=...
Title: Trains Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya the programmer lives in the middle of the Programming subway branch. He has two girlfriends: Dasha and Masha, who live at the different ends of the branch, each one is unaware of the other one's existence. When Vasya has some...
```python def hcfnaive(a,b): if(b==0): return a else: return hcfnaive(b,a%b) a,b=list(map(int,input().split())) c=(a*b)//hcfnaive(a,b) l=[] for i in range(a,c,a): l.append([i,'d']) for i in range(b,c,b): l.append([i,'m']) l.sort() d,m=0,0 for i in range(len(l)): i...
0
732
A
Buy a Shovel
PROGRAMMING
800
[ "brute force", "constructive algorithms", "implementation", "math" ]
null
null
Polycarp urgently needs a shovel! He comes to the shop and chooses an appropriate one. The shovel that Policarp chooses is sold for *k* burles. Assume that there is an unlimited number of such shovels in the shop. In his pocket Polycarp has an unlimited number of "10-burle coins" and exactly one coin of *r* burles (1<...
The single line of input contains two integers *k* and *r* (1<=≤<=*k*<=≤<=1000, 1<=≤<=*r*<=≤<=9) — the price of one shovel and the denomination of the coin in Polycarp's pocket that is different from "10-burle coins". Remember that he has an unlimited number of coins in the denomination of 10, that is, Polycarp has e...
Print the required minimum number of shovels Polycarp has to buy so that he can pay for them without any change.
[ "117 3\n", "237 7\n", "15 2\n" ]
[ "9\n", "1\n", "2\n" ]
In the first example Polycarp can buy 9 shovels and pay 9·117 = 1053 burles. Indeed, he can pay this sum by using 10-burle coins and one 3-burle coin. He can't buy fewer shovels without any change. In the second example it is enough for Polycarp to buy one shovel. In the third example Polycarp should buy two shovels ...
500
[ { "input": "117 3", "output": "9" }, { "input": "237 7", "output": "1" }, { "input": "15 2", "output": "2" }, { "input": "1 1", "output": "1" }, { "input": "1 9", "output": "9" }, { "input": "1000 3", "output": "1" }, { "input": "1000 1", ...
1,687,468,311
2,147,483,647
Python 3
OK
TESTS
54
46
0
k,r=map(int,input().split()) s=1 while (k*s)%10!=r and (k*s)%10!=0: s+=1 print(s)
Title: Buy a Shovel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp urgently needs a shovel! He comes to the shop and chooses an appropriate one. The shovel that Policarp chooses is sold for *k* burles. Assume that there is an unlimited number of such shovels in the shop. In his ...
```python k,r=map(int,input().split()) s=1 while (k*s)%10!=r and (k*s)%10!=0: s+=1 print(s) ```
3
343
C
Read Time
PROGRAMMING
1,900
[ "binary search", "greedy", "two pointers" ]
null
null
Mad scientist Mike does not use slow hard disks. His modification of a hard drive has not one, but *n* different heads that can read data in parallel. When viewed from the side, Mike's hard drive is an endless array of tracks. The tracks of the array are numbered from left to right with integers, starting with 1. In t...
The first line of the input contains two space-separated integers *n*, *m* (1<=≤<=*n*,<=*m*<=≤<=105) — the number of disk heads and the number of tracks to read, accordingly. The second line contains *n* distinct integers *h**i* in ascending order (1<=≤<=*h**i*<=≤<=1010, *h**i*<=&lt;<=*h**i*<=+<=1) — the initial positi...
Print a single number — the minimum time required, in seconds, to read all the needed tracks.
[ "3 4\n2 5 6\n1 3 6 8\n", "3 3\n1 2 3\n1 2 3\n", "1 2\n165\n142 200\n" ]
[ "2\n", "0\n", "81\n" ]
The first test coincides with the figure. In this case the given tracks can be read in 2 seconds in the following way: 1. during the first second move the 1-st head to the left and let it stay there; 1. move the second head to the left twice; 1. move the third head to the right twice (note that the 6-th track has ...
1,500
[ { "input": "3 4\n2 5 6\n1 3 6 8", "output": "2" }, { "input": "3 3\n1 2 3\n1 2 3", "output": "0" }, { "input": "1 2\n165\n142 200", "output": "81" }, { "input": "1 2\n5000000000\n1 10000000000", "output": "14999999998" }, { "input": "2 4\n3 12\n1 7 8 14", "out...
1,532,904,249
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
1,000
11,366,400
def can(d,a,b): d1=d mi=a[-1] ma=a[-1] x=len(a)-1 y=len(b)-1 while x>=0 and y>=0: if b[y]<=mi: if abs(b[y]-ma)<=d1: x-=1 if x==-1: break ma=a[x] else: y-=1 ...
Title: Read Time Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mad scientist Mike does not use slow hard disks. His modification of a hard drive has not one, but *n* different heads that can read data in parallel. When viewed from the side, Mike's hard drive is an endless array of track...
```python def can(d,a,b): d1=d mi=a[-1] ma=a[-1] x=len(a)-1 y=len(b)-1 while x>=0 and y>=0: if b[y]<=mi: if abs(b[y]-ma)<=d1: x-=1 if x==-1: break ma=a[x] else: y-=1 ...
0
298
A
Snow Footprints
PROGRAMMING
1,300
[ "greedy", "implementation" ]
null
null
There is a straight snowy road, divided into *n* blocks. The blocks are numbered from 1 to *n* from left to right. If one moves from the *i*-th block to the (*i*<=+<=1)-th block, he will leave a right footprint on the *i*-th block. Similarly, if one moves from the *i*-th block to the (*i*<=-<=1)-th block, he will leave...
The first line of the input contains integer *n* (3<=≤<=*n*<=≤<=1000). The second line contains the description of the road — the string that consists of *n* characters. Each character will be either "." (a block without footprint), or "L" (a block with a left footprint), "R" (a block with a right footprint). It's gu...
Print two space-separated integers — the values of *s* and *t*. If there are several possible solutions you can print any of them.
[ "9\n..RRLL...\n", "11\n.RRRLLLLL..\n" ]
[ "3 4\n", "7 5\n" ]
The first test sample is the one in the picture.
500
[ { "input": "11\n.RRRLLLLL..", "output": "7 5" }, { "input": "4\n.RL.", "output": "3 2" }, { "input": "3\n.L.", "output": "2 1" }, { "input": "3\n.R.", "output": "2 3" } ]
1,625,436,924
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
2
1,000
0
n = int(input()) path = input() s = 0 t = 0 i = 0 while True: if path[i] == '.': i += 1 if path[i] == 'R' and path[i-1] == '.': i += 1 s = i if path[i] == 'R' and path[i+1] == 'R': i += 1 if path[i] == 'R' and path[i+1] == 'L': t = i break print(s, t+1, se...
Title: Snow Footprints Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is a straight snowy road, divided into *n* blocks. The blocks are numbered from 1 to *n* from left to right. If one moves from the *i*-th block to the (*i*<=+<=1)-th block, he will leave a right footprint on the *...
```python n = int(input()) path = input() s = 0 t = 0 i = 0 while True: if path[i] == '.': i += 1 if path[i] == 'R' and path[i-1] == '.': i += 1 s = i if path[i] == 'R' and path[i+1] == 'R': i += 1 if path[i] == 'R' and path[i+1] == 'L': t = i break print(...
0
784
C
INTERCALC
PROGRAMMING
1,800
[ "*special", "implementation" ]
null
null
DO YOU EXPECT ME TO FIND THIS OUT? WHAT BASE AND/XOR LANGUAGE INCLUDES string? DON'T BYTE OF MORE THAN YOU CAN CHEW YOU CAN ONLY DISTORT THE LARGEST OF MATHEMATICS SO FAR SAYING "ABRACADABRA" WITHOUT A MAGIC AND WON'T DO YOU ANY GOOD THE LAST STACK RUPTURES. ALL DIE. OH, THE EMBARRASSMENT! I HAVE NO ARRAY AND I M...
The first line of input data contains a single integer *n* (1<=≤<=*n*<=≤<=10). The second line of input data contains *n* space-separated integers *a**i* (1<=≤<=*a**i*<=≤<=11).
Output a single integer.
[ "4\n2 5 3 1\n" ]
[ "4\n" ]
none
0
[ { "input": "4\n2 5 3 1", "output": "4" }, { "input": "2\n1 5", "output": "0" }, { "input": "1\n8", "output": "0" }, { "input": "6\n1 1 1 3 2 9", "output": "0" }, { "input": "5\n8 9 3 1 9", "output": "0" }, { "input": "6\n1 5 2 1 7 11", "output": "0...
1,522,517,755
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
93
7,065,600
a=int(input()) b=int(str(input())[-1]) if a>b: print (a) else: print(0)
Title: INTERCALC Time Limit: None seconds Memory Limit: None megabytes Problem Description: DO YOU EXPECT ME TO FIND THIS OUT? WHAT BASE AND/XOR LANGUAGE INCLUDES string? DON'T BYTE OF MORE THAN YOU CAN CHEW YOU CAN ONLY DISTORT THE LARGEST OF MATHEMATICS SO FAR SAYING "ABRACADABRA" WITHOUT A MAGIC AND WON'T DO ...
```python a=int(input()) b=int(str(input())[-1]) if a>b: print (a) else: print(0) ```
0
432
A
Choosing Teams
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. According to the ACM ICPC rules, each person can participate in the world championship at most 5 times. Th...
The first line contains two integers, *n* and *k* (1<=≤<=*n*<=≤<=2000; 1<=≤<=*k*<=≤<=5). The next line contains *n* integers: *y*1,<=*y*2,<=...,<=*y**n* (0<=≤<=*y**i*<=≤<=5), where *y**i* shows the number of times the *i*-th person participated in the ACM ICPC world championship.
Print a single number — the answer to the problem.
[ "5 2\n0 4 5 1 0\n", "6 4\n0 1 2 3 4 5\n", "6 5\n0 0 0 0 0 0\n" ]
[ "1\n", "0\n", "2\n" ]
In the first sample only one team could be made: the first, the fourth and the fifth participants. In the second sample no teams could be created. In the third sample two teams could be created. Any partition into two teams fits.
500
[ { "input": "5 2\n0 4 5 1 0", "output": "1" }, { "input": "6 4\n0 1 2 3 4 5", "output": "0" }, { "input": "6 5\n0 0 0 0 0 0", "output": "2" }, { "input": "3 4\n0 1 0", "output": "1" }, { "input": "3 4\n0 2 0", "output": "0" }, { "input": "6 5\n0 0 0 0 0...
1,674,707,337
2,147,483,647
PyPy 3
OK
TESTS
35
93
1,638,400
from sys import stdin first_line = [int(x) for x in stdin.readline().split()] n= first_line[0] k = first_line[1] listy = [int(x) for x in stdin.readline().split()] eligible = sum(1 for i in listy if i<6-k) answer = eligible//3 print(answer)
Title: Choosing Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. Accordi...
```python from sys import stdin first_line = [int(x) for x in stdin.readline().split()] n= first_line[0] k = first_line[1] listy = [int(x) for x in stdin.readline().split()] eligible = sum(1 for i in listy if i<6-k) answer = eligible//3 print(answer) ```
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,638,659
2,147,483,647
Python 3
OK
TESTS
109
93
0
n, m, a, b = map(int, input().split()) r = n % m print(min(r * b, (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 print(min(r * b, (m - r) * a)) ```
3
710
A
King Moves
PROGRAMMING
800
[ "implementation" ]
null
null
The only king stands on the standard chess board. You are given his position in format "cd", where *c* is the column from 'a' to 'h' and *d* is the row from '1' to '8'. Find the number of moves permitted for the king. Check the king's moves here [https://en.wikipedia.org/wiki/King_(chess)](https://en.wikipedia.org/wik...
The only line contains the king's position in the format "cd", where 'c' is the column from 'a' to 'h' and 'd' is the row from '1' to '8'.
Print the only integer *x* — the number of moves permitted for the king.
[ "e4\n" ]
[ "8\n" ]
none
0
[ { "input": "e4", "output": "8" }, { "input": "a1", "output": "3" }, { "input": "h8", "output": "3" }, { "input": "a4", "output": "5" }, { "input": "g7", "output": "8" }, { "input": "e1", "output": "5" }, { "input": "b2", "output": "8" ...
1,528,565,398
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
s = str(input()) if s =='a1' || s =='a8' || a=='h1' || a =='h8':print('3') elif s[0] =='a' || s[0] == 'h':print('5') elif s[1] =='8' || s[1] =='1':print('5') else:print('8')
Title: King Moves Time Limit: None seconds Memory Limit: None megabytes Problem Description: The only king stands on the standard chess board. You are given his position in format "cd", where *c* is the column from 'a' to 'h' and *d* is the row from '1' to '8'. Find the number of moves permitted for the king. Check...
```python s = str(input()) if s =='a1' || s =='a8' || a=='h1' || a =='h8':print('3') elif s[0] =='a' || s[0] == 'h':print('5') elif s[1] =='8' || s[1] =='1':print('5') else:print('8') ```
-1
525
A
Vitaliy and Pie
PROGRAMMING
1,100
[ "greedy", "hashing", "strings" ]
null
null
After a hard day Vitaly got very hungry and he wants to eat his favorite potato pie. But it's not that simple. Vitaly is in the first room of the house with *n* room located in a line and numbered starting from one from left to right. You can go from the first room to the second room, from the second room to the third ...
The first line of the input contains a positive integer *n* (2<=≤<=*n*<=≤<=105) — the number of rooms in the house. The second line of the input contains string *s* of length 2·*n*<=-<=2. Let's number the elements of the string from left to right, starting from one. The odd positions in the given string *s* contain ...
Print the only integer — the minimum number of keys that Vitaly needs to buy to surely get from room one to room *n*.
[ "3\naAbB\n", "4\naBaCaB\n", "5\nxYyXzZaZ\n" ]
[ "0\n", "3\n", "2\n" ]
none
250
[ { "input": "3\naAbB", "output": "0" }, { "input": "4\naBaCaB", "output": "3" }, { "input": "5\nxYyXzZaZ", "output": "2" }, { "input": "26\naAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyY", "output": "0" }, { "input": "26\nzAyBxCwDvEuFtGsHrIqJpKoLnMmNlOkPjQiRhSg...
1,430,891,382
2,147,483,647
Python 3
OK
TESTS
46
202
409,600
# print ("Enter number of rooms") n = int(input()) # print ("Enter the configuration") a = input() dic = {} tobuy = 0 for i in range((n-1)*2): if (i%2 == 0): # A key (small letter) ch = a[i] dic[ch] = dic.get(ch, 0)+1 # Clever way to either increment or add else: # A door--either ope...
Title: Vitaliy and Pie Time Limit: None seconds Memory Limit: None megabytes Problem Description: After a hard day Vitaly got very hungry and he wants to eat his favorite potato pie. But it's not that simple. Vitaly is in the first room of the house with *n* room located in a line and numbered starting from one from...
```python # print ("Enter number of rooms") n = int(input()) # print ("Enter the configuration") a = input() dic = {} tobuy = 0 for i in range((n-1)*2): if (i%2 == 0): # A key (small letter) ch = a[i] dic[ch] = dic.get(ch, 0)+1 # Clever way to either increment or add else: # A door--...
3
893
C
Rumor
PROGRAMMING
1,300
[ "dfs and similar", "graphs", "greedy" ]
null
null
Vova promised himself that he would never play computer games... But recently Firestorm — a well-known game developing company — published their newest game, World of Farcraft, and it became really popular. Of course, Vova started playing it. Now he tries to solve a quest. The task is to come to a settlement named Ove...
The first line contains two integer numbers *n* and *m* (1<=≤<=*n*<=≤<=105,<=0<=≤<=*m*<=≤<=105) — the number of characters in Overcity and the number of pairs of friends. The second line contains *n* integer numbers *c**i* (0<=≤<=*c**i*<=≤<=109) — the amount of gold *i*-th character asks to start spreading the rumor. ...
Print one number — the minimum amount of gold Vova has to spend in order to finish the quest.
[ "5 2\n2 5 3 4 8\n1 4\n4 5\n", "10 0\n1 2 3 4 5 6 7 8 9 10\n", "10 5\n1 6 2 7 3 8 4 9 5 10\n1 2\n3 4\n5 6\n7 8\n9 10\n" ]
[ "10\n", "55\n", "15\n" ]
In the first example the best decision is to bribe the first character (he will spread the rumor to fourth character, and the fourth one will spread it to fifth). Also Vova has to bribe the second and the third characters, so they know the rumor. In the second example Vova has to bribe everyone. In the third example ...
0
[ { "input": "5 2\n2 5 3 4 8\n1 4\n4 5", "output": "10" }, { "input": "10 0\n1 2 3 4 5 6 7 8 9 10", "output": "55" }, { "input": "10 5\n1 6 2 7 3 8 4 9 5 10\n1 2\n3 4\n5 6\n7 8\n9 10", "output": "15" }, { "input": "1 0\n0", "output": "0" }, { "input": "1 0\n10000000...
1,687,968,001
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
#include <iostream> #include <vector> #include <unordered_map> #include <limits> std::vector<long long> visited; long long mn = std::numeric_limits<long long>::max(); long long dfs(int i, const std::vector<long long>& c, const std::unordered_map<long long, std::vector<long long>>& d) { mn = std::min(c[i ...
Title: Rumor Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vova promised himself that he would never play computer games... But recently Firestorm — a well-known game developing company — published their newest game, World of Farcraft, and it became really popular. Of course, Vova starte...
```python #include <iostream> #include <vector> #include <unordered_map> #include <limits> std::vector<long long> visited; long long mn = std::numeric_limits<long long>::max(); long long dfs(int i, const std::vector<long long>& c, const std::unordered_map<long long, std::vector<long long>>& d) { mn = std...
-1
479
A
Expression
PROGRAMMING
1,000
[ "brute force", "math" ]
null
null
Petya studies in a school and he adores Maths. His class has been studying arithmetic expressions. On the last class the teacher wrote three positive integers *a*, *b*, *c* on the blackboard. The task was to insert signs of operations '+' and '*', and probably brackets between the numbers so that the value of the resul...
The input contains three integers *a*, *b* and *c*, each on a single line (1<=≤<=*a*,<=*b*,<=*c*<=≤<=10).
Print the maximum value of the expression that you can obtain.
[ "1\n2\n3\n", "2\n10\n3\n" ]
[ "9\n", "60\n" ]
none
500
[ { "input": "1\n2\n3", "output": "9" }, { "input": "2\n10\n3", "output": "60" }, { "input": "1\n1\n1", "output": "3" }, { "input": "1\n2\n1", "output": "4" }, { "input": "10\n10\n10", "output": "1000" }, { "input": "5\n1\n3", "output": "20" }, {...
1,694,505,663
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
46
0
a = int(input()) b = int(input()) c = int(input()) num = [a,b,c] d = max(num) answer = max((a+b+c-d)*d , a*b*c , a+b+c) print(answer)
Title: Expression Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya studies in a school and he adores Maths. His class has been studying arithmetic expressions. On the last class the teacher wrote three positive integers *a*, *b*, *c* on the blackboard. The task was to insert signs of ...
```python a = int(input()) b = int(input()) c = int(input()) num = [a,b,c] d = max(num) answer = max((a+b+c-d)*d , a*b*c , a+b+c) print(answer) ```
0
596
A
Wilbur and Swimming Pool
PROGRAMMING
1,100
[ "geometry", "implementation" ]
null
null
After making bad dives into swimming pools, Wilbur wants to build a swimming pool in the shape of a rectangle in his backyard. He has set up coordinate axes, and he wants the sides of the rectangle to be parallel to them. Of course, the area of the rectangle must be positive. Wilbur had all four vertices of the planned...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=4) — the number of vertices that were not erased by Wilbur's friend. Each of the following *n* lines contains two integers *x**i* and *y**i* (<=-<=1000<=≤<=*x**i*,<=*y**i*<=≤<=1000) —the coordinates of the *i*-th vertex that remains. Vertices are...
Print the area of the initial rectangle if it could be uniquely determined by the points remaining. Otherwise, print <=-<=1.
[ "2\n0 0\n1 1\n", "1\n1 1\n" ]
[ "1\n", "-1\n" ]
In the first sample, two opposite corners of the initial rectangle are given, and that gives enough information to say that the rectangle is actually a unit square. In the second sample there is only one vertex left and this is definitely not enough to uniquely define the area.
500
[ { "input": "2\n0 0\n1 1", "output": "1" }, { "input": "1\n1 1", "output": "-1" }, { "input": "1\n-188 17", "output": "-1" }, { "input": "1\n71 -740", "output": "-1" }, { "input": "4\n-56 -858\n-56 -174\n778 -858\n778 -174", "output": "570456" }, { "inp...
1,615,000,736
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
307,200
def solve(): n = int(input()) pairs = [] for _ in range(n): pairs.append(tuple(map(int, input().split()))) pairs.sort() left = min(pairs, key=lambda x: x[0])[0] right = max(pairs, key=lambda x: x[0])[0] top = max(pairs, key=lambda x: x[1])[1] bot = min(pairs, key=lambda x: x[1...
Title: Wilbur and Swimming Pool Time Limit: None seconds Memory Limit: None megabytes Problem Description: After making bad dives into swimming pools, Wilbur wants to build a swimming pool in the shape of a rectangle in his backyard. He has set up coordinate axes, and he wants the sides of the rectangle to be parall...
```python def solve(): n = int(input()) pairs = [] for _ in range(n): pairs.append(tuple(map(int, input().split()))) pairs.sort() left = min(pairs, key=lambda x: x[0])[0] right = max(pairs, key=lambda x: x[0])[0] top = max(pairs, key=lambda x: x[1])[1] bot = min(pairs, key=lam...
0
1,004
B
Sonya and Exhibition
PROGRAMMING
1,300
[ "constructive algorithms", "greedy", "implementation", "math" ]
null
null
Sonya decided to organize an exhibition of flowers. Since the girl likes only roses and lilies, she decided that only these two kinds of flowers should be in this exhibition. There are $n$ flowers in a row in the exhibition. Sonya can put either a rose or a lily in the $i$-th position. Thus each of $n$ positions shoul...
The first line contains two integers $n$ and $m$ ($1\leq n, m\leq 10^3$) — the number of flowers and visitors respectively. Each of the next $m$ lines contains two integers $l_i$ and $r_i$ ($1\leq l_i\leq r_i\leq n$), meaning that $i$-th visitor will visit all flowers from $l_i$ to $r_i$ inclusive.
Print the string of $n$ characters. The $i$-th symbol should be «0» if you want to put a rose in the $i$-th position, otherwise «1» if you want to put a lily. If there are multiple answers, print any.
[ "5 3\n1 3\n2 4\n2 5\n", "6 3\n5 6\n1 4\n4 6\n" ]
[ "01100", "110010" ]
In the first example, Sonya can put roses in the first, fourth, and fifth positions, and lilies in the second and third positions; - in the segment $[1\ldots3]$, there are one rose and two lilies, so the beauty is equal to $1\cdot 2=2$; - in the segment $[2\ldots4]$, there are one rose and two lilies, so the beauty ...
1,000
[ { "input": "5 3\n1 3\n2 4\n2 5", "output": "01010" }, { "input": "6 3\n5 6\n1 4\n4 6", "output": "010101" }, { "input": "10 4\n3 3\n1 6\n9 9\n10 10", "output": "0101010101" }, { "input": "1 1\n1 1", "output": "0" }, { "input": "1000 10\n3 998\n2 1000\n1 999\n2 100...
1,530,815,451
6,951
Python 3
WRONG_ANSWER
PRETESTS
0
93
0
n, m = [int(i) for i in input().split()] a = [0] * (n + 1) for i in range(m): p, q = [int(i) for i in input().split()] cnt = 0 for i in range(p, q + 1): cnt += a[i] if cnt > 0: if a[p] == 0 and a[q] == 0: a[p] = -1 a[q] = -1 if cnt < 0: if a[p] == 0 and a[q] == 0: a[p] = 1 a[q] = 1 else: if a...
Title: Sonya and Exhibition Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sonya decided to organize an exhibition of flowers. Since the girl likes only roses and lilies, she decided that only these two kinds of flowers should be in this exhibition. There are $n$ flowers in a row in the ...
```python n, m = [int(i) for i in input().split()] a = [0] * (n + 1) for i in range(m): p, q = [int(i) for i in input().split()] cnt = 0 for i in range(p, q + 1): cnt += a[i] if cnt > 0: if a[p] == 0 and a[q] == 0: a[p] = -1 a[q] = -1 if cnt < 0: if a[p] == 0 and a[q] == 0: a[p] = 1 a[q] = 1 el...
0
876
A
Trip For Meal
PROGRAMMING
900
[ "math" ]
null
null
Winnie-the-Pooh likes honey very much! That is why he decided to visit his friends. Winnie has got three best friends: Rabbit, Owl and Eeyore, each of them lives in his own house. There are winding paths between each pair of houses. The length of a path between Rabbit's and Owl's houses is *a* meters, between Rabbit's ...
First line contains an integer *n* (1<=≤<=*n*<=≤<=100) — number of visits. Second line contains an integer *a* (1<=≤<=*a*<=≤<=100) — distance between Rabbit's and Owl's houses. Third line contains an integer *b* (1<=≤<=*b*<=≤<=100) — distance between Rabbit's and Eeyore's houses. Fourth line contains an integer *c* ...
Output one number — minimum distance in meters Winnie must go through to have a meal *n* times.
[ "3\n2\n3\n1\n", "1\n2\n3\n5\n" ]
[ "3\n", "0\n" ]
In the first test case the optimal path for Winnie is the following: first have a meal in Rabbit's house, then in Owl's house, then in Eeyore's house. Thus he will pass the distance 2 + 1 = 3. In the second test case Winnie has a meal in Rabbit's house and that is for him. So he doesn't have to walk anywhere at all.
500
[ { "input": "3\n2\n3\n1", "output": "3" }, { "input": "1\n2\n3\n5", "output": "0" }, { "input": "10\n1\n8\n3", "output": "9" }, { "input": "7\n10\n5\n6", "output": "30" }, { "input": "9\n9\n7\n5", "output": "42" }, { "input": "9\n37\n85\n76", "outpu...
1,508,265,360
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
21
62
5,529,600
n=int(input()) a=int(input()) b=int(input()) c=int(input()) if (a==min(a,b,c) or b==min(a,b,c)): print((n-1)*min(a,b,c)) else: print(min(a,b)+(n-2)*min(a,b,c))
Title: Trip For Meal Time Limit: None seconds Memory Limit: None megabytes Problem Description: Winnie-the-Pooh likes honey very much! That is why he decided to visit his friends. Winnie has got three best friends: Rabbit, Owl and Eeyore, each of them lives in his own house. There are winding paths between each pair...
```python n=int(input()) a=int(input()) b=int(input()) c=int(input()) if (a==min(a,b,c) or b==min(a,b,c)): print((n-1)*min(a,b,c)) else: print(min(a,b)+(n-2)*min(a,b,c)) ```
0
796
A
Buying A House
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Zane the wizard had never loved anyone before, until he fell in love with a girl, whose name remains unknown to us. The girl lives in house *m* of a village. There are *n* houses in that village, lining in a straight line from left to right: house 1, house 2, ..., house *n*. The village is also well-structured: house ...
The first line contains three integers *n*, *m*, and *k* (2<=≤<=*n*<=≤<=100, 1<=≤<=*m*<=≤<=*n*, 1<=≤<=*k*<=≤<=100) — the number of houses in the village, the house where the girl lives, and the amount of money Zane has (in dollars), respectively. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=...
Print one integer — the minimum distance, in meters, from the house where the girl Zane likes lives to the house Zane can buy.
[ "5 1 20\n0 27 32 21 19\n", "7 3 50\n62 0 0 0 99 33 22\n", "10 5 100\n1 0 1 0 0 0 0 0 1 1\n" ]
[ "40", "30", "20" ]
In the first sample, with *k* = 20 dollars, Zane can buy only house 5. The distance from house *m* = 1 to house 5 is 10 + 10 + 10 + 10 = 40 meters. In the second sample, Zane can buy houses 6 and 7. It is better to buy house 6 than house 7, since house *m* = 3 and house 6 are only 30 meters away, while house *m* = 3 a...
500
[ { "input": "5 1 20\n0 27 32 21 19", "output": "40" }, { "input": "7 3 50\n62 0 0 0 99 33 22", "output": "30" }, { "input": "10 5 100\n1 0 1 0 0 0 0 0 1 1", "output": "20" }, { "input": "5 3 1\n1 1 0 0 1", "output": "10" }, { "input": "5 5 5\n1 0 5 6 0", "outpu...
1,554,310,755
2,147,483,647
Python 3
OK
TESTS
58
109
0
n,m,k=list(map(int,input().split(" "))) a=list(map(int,input().split(" "))) # print(n,k,m,a) q=1000000000000 for i in range(1,n+1): if(a[i-1]<=k and a[i-1]!=0): distance=abs(m-i) q=min(distance,q) print(q*10)
Title: Buying A House Time Limit: None seconds Memory Limit: None megabytes Problem Description: Zane the wizard had never loved anyone before, until he fell in love with a girl, whose name remains unknown to us. The girl lives in house *m* of a village. There are *n* houses in that village, lining in a straight li...
```python n,m,k=list(map(int,input().split(" "))) a=list(map(int,input().split(" "))) # print(n,k,m,a) q=1000000000000 for i in range(1,n+1): if(a[i-1]<=k and a[i-1]!=0): distance=abs(m-i) q=min(distance,q) print(q*10) ```
3
628
A
Tennis Tournament
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
A tennis tournament with *n* participants is running. The participants are playing by an olympic system, so the winners move on and the losers drop out. The tournament takes place in the following way (below, *m* is the number of the participants of the current round): - let *k* be the maximal power of the number 2 ...
The only line contains three integers *n*,<=*b*,<=*p* (1<=≤<=*n*,<=*b*,<=*p*<=≤<=500) — the number of participants and the parameters described in the problem statement.
Print two integers *x* and *y* — the number of bottles and towels need for the tournament.
[ "5 2 3\n", "8 2 4\n" ]
[ "20 15\n", "35 32\n" ]
In the first example will be three rounds: 1. in the first round will be two matches and for each match 5 bottles of water are needed (two for each of the participants and one for the judge), 1. in the second round will be only one match, so we need another 5 bottles of water, 1. in the third round will also be onl...
0
[ { "input": "5 2 3", "output": "20 15" }, { "input": "8 2 4", "output": "35 32" }, { "input": "10 1 500", "output": "27 5000" }, { "input": "20 500 1", "output": "19019 20" }, { "input": "100 123 99", "output": "24453 9900" }, { "input": "500 1 1", ...
1,455,894,425
425
Python 3
OK
TESTS
38
62
0
n, b, p = [int(x) for x in input().split()] b1, p1 = 0, n*p while n > 1: n1 = 2 << (n.bit_length()-2) b1 += (2*b + 1) * n1 // 2 n -= n1//2 print(b1, p1)
Title: Tennis Tournament Time Limit: None seconds Memory Limit: None megabytes Problem Description: A tennis tournament with *n* participants is running. The participants are playing by an olympic system, so the winners move on and the losers drop out. The tournament takes place in the following way (below, *m* is ...
```python n, b, p = [int(x) for x in input().split()] b1, p1 = 0, n*p while n > 1: n1 = 2 << (n.bit_length()-2) b1 += (2*b + 1) * n1 // 2 n -= n1//2 print(b1, p1) ```
3
577
B
Modulo Sum
PROGRAMMING
1,900
[ "combinatorics", "data structures", "dp", "two pointers" ]
null
null
You are given a sequence of numbers *a*1,<=*a*2,<=...,<=*a**n*, and a number *m*. Check if it is possible to choose a non-empty subsequence *a**i**j* such that the sum of numbers in this subsequence is divisible by *m*.
The first line contains two numbers, *n* and *m* (1<=≤<=*n*<=≤<=106, 2<=≤<=*m*<=≤<=103) — the size of the original sequence and the number such that sum should be divisible by it. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109).
In the single line print either "YES" (without the quotes) if there exists the sought subsequence, or "NO" (without the quotes), if such subsequence doesn't exist.
[ "3 5\n1 2 3\n", "1 6\n5\n", "4 6\n3 1 1 3\n", "6 6\n5 5 5 5 5 5\n" ]
[ "YES\n", "NO\n", "YES\n", "YES\n" ]
In the first sample test you can choose numbers 2 and 3, the sum of which is divisible by 5. In the second sample test the single non-empty subsequence of numbers is a single number 5. Number 5 is not divisible by 6, that is, the sought subsequence doesn't exist. In the third sample test you need to choose two number...
1,250
[ { "input": "3 5\n1 2 3", "output": "YES" }, { "input": "1 6\n5", "output": "NO" }, { "input": "4 6\n3 1 1 3", "output": "YES" }, { "input": "6 6\n5 5 5 5 5 5", "output": "YES" }, { "input": "4 5\n1 1 1 1", "output": "NO" }, { "input": "5 5\n1 1 1 1 1",...
1,644,583,977
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
7
77
512,000
n,m = map(int,input().split()) arr = list(map(int,input().split())) arr= [i%m for i in arr] dp = [[0 for i in range(0,m)]for j in range(n+1)] for i in range(1,n): dp[i][arr[i-1]] = 1 for i in range(1,len(dp)): for j in range(0,m): dp[i][j] = dp[i][j] or dp[i-1][j] ...
Title: Modulo Sum Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a sequence of numbers *a*1,<=*a*2,<=...,<=*a**n*, and a number *m*. Check if it is possible to choose a non-empty subsequence *a**i**j* such that the sum of numbers in this subsequence is divisible by *m*. In...
```python n,m = map(int,input().split()) arr = list(map(int,input().split())) arr= [i%m for i in arr] dp = [[0 for i in range(0,m)]for j in range(n+1)] for i in range(1,n): dp[i][arr[i-1]] = 1 for i in range(1,len(dp)): for j in range(0,m): dp[i][j] = dp[i][j] or dp[i-1][j] ...
0
244
A
Dividing Orange
PROGRAMMING
900
[ "implementation" ]
null
null
One day Ms Swan bought an orange in a shop. The orange consisted of *n*·*k* segments, numbered with integers from 1 to *n*·*k*. There were *k* children waiting for Ms Swan at home. The children have recently learned about the orange and they decided to divide it between them. For that each child took a piece of paper...
The first line contains two integers *n*, *k* (1<=≤<=*n*,<=*k*<=≤<=30). The second line contains *k* space-separated integers *a*1,<=*a*2,<=...,<=*a**k* (1<=≤<=*a**i*<=≤<=*n*·*k*), where *a**i* is the number of the orange segment that the *i*-th child would like to get. It is guaranteed that all numbers *a**i* are dis...
Print exactly *n*·*k* distinct integers. The first *n* integers represent the indexes of the segments the first child will get, the second *n* integers represent the indexes of the segments the second child will get, and so on. Separate the printed numbers with whitespaces. You can print a child's segment indexes in a...
[ "2 2\n4 1\n", "3 1\n2\n" ]
[ "2 4 \n1 3 \n", "3 2 1 \n" ]
none
500
[ { "input": "2 2\n4 1", "output": "2 4 \n1 3 " }, { "input": "3 1\n2", "output": "3 2 1 " }, { "input": "5 5\n25 24 23 22 21", "output": "2 3 1 25 4 \n7 6 8 5 24 \n10 12 9 23 11 \n13 15 14 16 22 \n19 21 20 17 18 " }, { "input": "1 30\n8 22 13 25 10 30 12 27 6 4 7 2 20 16 26 14...
1,608,041,137
2,147,483,647
PyPy 3
OK
TESTS
29
372
1,740,800
inp=list(map(int,input().split())) n,k=inp arr=[] for i in range(k+1): arr.append([]) from collections import Counter a=list(map(int,input().split())) for i in range(len(a)): arr[i+1].append(a[i]) c=Counter(a) j=1 for i in range(1,n*k+1): if c[i]!=0: continue if len(arr[j])==n: ...
Title: Dividing Orange Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Ms Swan bought an orange in a shop. The orange consisted of *n*·*k* segments, numbered with integers from 1 to *n*·*k*. There were *k* children waiting for Ms Swan at home. The children have recently learned a...
```python inp=list(map(int,input().split())) n,k=inp arr=[] for i in range(k+1): arr.append([]) from collections import Counter a=list(map(int,input().split())) for i in range(len(a)): arr[i+1].append(a[i]) c=Counter(a) j=1 for i in range(1,n*k+1): if c[i]!=0: continue if len(arr[j...
3
355
B
Vasya and Public Transport
PROGRAMMING
1,100
[ "greedy", "implementation" ]
null
null
Vasya often uses public transport. The transport in the city is of two types: trolleys and buses. The city has *n* buses and *m* trolleys, the buses are numbered by integers from 1 to *n*, the trolleys are numbered by integers from 1 to *m*. Public transport is not free. There are 4 types of tickets: 1. A ticket fo...
The first line contains four integers *c*1,<=*c*2,<=*c*3,<=*c*4 (1<=≤<=*c*1,<=*c*2,<=*c*3,<=*c*4<=≤<=1000) — the costs of the tickets. The second line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1000) — the number of buses and trolleys Vasya is going to use. The third line contains *n* integers *a**i* (0<=...
Print a single number — the minimum sum of burles Vasya will have to spend on the tickets.
[ "1 3 7 19\n2 3\n2 5\n4 4 4\n", "4 3 2 1\n1 3\n798\n1 2 3\n", "100 100 8 100\n3 5\n7 94 12\n100 1 47 0 42\n" ]
[ "12\n", "1\n", "16\n" ]
In the first sample the profitable strategy is to buy two tickets of the first type (for the first bus), one ticket of the second type (for the second bus) and one ticket of the third type (for all trolleys). It totals to (2·1) + 3 + 7 = 12 burles. In the second sample the profitable strategy is to buy one ticket of t...
1,000
[ { "input": "1 3 7 19\n2 3\n2 5\n4 4 4", "output": "12" }, { "input": "4 3 2 1\n1 3\n798\n1 2 3", "output": "1" }, { "input": "100 100 8 100\n3 5\n7 94 12\n100 1 47 0 42", "output": "16" }, { "input": "3 103 945 1000\n7 9\n34 35 34 35 34 35 34\n0 0 0 0 0 0 0 0 0", "output"...
1,381,802,282
2,147,483,647
Python 3
OK
TESTS
27
46
307,200
import sys # input line_id = 0 for line in sys.stdin: line_id = line_id + 1 line_data = line.split() if line_id <= 2: if line_id == 1: c1 = int(line_data[0]) c2 = int(line_data[1]) c3 = int(line_data[2]) c4 = int(line_data[3]) e...
Title: Vasya and Public Transport Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya often uses public transport. The transport in the city is of two types: trolleys and buses. The city has *n* buses and *m* trolleys, the buses are numbered by integers from 1 to *n*, the trolleys are nu...
```python import sys # input line_id = 0 for line in sys.stdin: line_id = line_id + 1 line_data = line.split() if line_id <= 2: if line_id == 1: c1 = int(line_data[0]) c2 = int(line_data[1]) c3 = int(line_data[2]) c4 = int(line_data[3]) ...
3
255
A
Greg's Workout
PROGRAMMING
800
[ "implementation" ]
null
null
Greg is a beginner bodybuilder. Today the gym coach gave him the training plan. All it had was *n* integers *a*1,<=*a*2,<=...,<=*a**n*. These numbers mean that Greg needs to do exactly *n* exercises today. Besides, Greg should repeat the *i*-th in order exercise *a**i* times. Greg now only does three types of exercise...
The first line contains integer *n* (1<=≤<=*n*<=≤<=20). The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=25) — the number of times Greg repeats the exercises.
Print word "chest" (without the quotes), if the chest gets the most exercise, "biceps" (without the quotes), if the biceps gets the most exercise and print "back" (without the quotes) if the back gets the most exercise. It is guaranteed that the input is such that the answer to the problem is unambiguous.
[ "2\n2 8\n", "3\n5 1 10\n", "7\n3 3 2 7 9 6 8\n" ]
[ "biceps\n", "back\n", "chest\n" ]
In the first sample Greg does 2 chest, 8 biceps and zero back exercises, so the biceps gets the most exercises. In the second sample Greg does 5 chest, 1 biceps and 10 back exercises, so the back gets the most exercises. In the third sample Greg does 18 chest, 12 biceps and 8 back exercises, so the chest gets the mos...
500
[ { "input": "2\n2 8", "output": "biceps" }, { "input": "3\n5 1 10", "output": "back" }, { "input": "7\n3 3 2 7 9 6 8", "output": "chest" }, { "input": "4\n5 6 6 2", "output": "chest" }, { "input": "5\n8 2 2 6 3", "output": "chest" }, { "input": "6\n8 7 ...
1,620,805,993
2,147,483,647
Python 3
OK
TESTS
61
124
6,963,200
def f(n,l): x=["chest","biceps","back"] if n==1: return x[n-1] if n==2: return x[l.index(max(l))] l2=[0,0,0] for i in range(0,n,3): l2[0]+=l[i] for i in range(0,n-1,3): l2[1]+=l[i+1] for i in range(0,n-2,3): l2[2]+=l[i+2] return x[l2.index(max(l2))] n=int(input()) l=list(map(int,inp...
Title: Greg's Workout Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greg is a beginner bodybuilder. Today the gym coach gave him the training plan. All it had was *n* integers *a*1,<=*a*2,<=...,<=*a**n*. These numbers mean that Greg needs to do exactly *n* exercises today. Besides, Greg ...
```python def f(n,l): x=["chest","biceps","back"] if n==1: return x[n-1] if n==2: return x[l.index(max(l))] l2=[0,0,0] for i in range(0,n,3): l2[0]+=l[i] for i in range(0,n-1,3): l2[1]+=l[i+1] for i in range(0,n-2,3): l2[2]+=l[i+2] return x[l2.index(max(l2))] n=int(input()) l=list(m...
3
146
A
Lucky Ticket
PROGRAMMING
800
[ "implementation" ]
null
null
Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya loves tickets very much. As we know, each ticket has a number that is a positive integer. It...
The first line contains an even integer *n* (2<=≤<=*n*<=≤<=50) — the length of the ticket number that needs to be checked. The second line contains an integer whose length equals exactly *n* — the ticket number. The number may contain leading zeros.
On the first line print "YES" if the given ticket number is lucky. Otherwise, print "NO" (without the quotes).
[ "2\n47\n", "4\n4738\n", "4\n4774\n" ]
[ "NO\n", "NO\n", "YES\n" ]
In the first sample the sum of digits in the first half does not equal the sum of digits in the second half (4 ≠ 7). In the second sample the ticket number is not the lucky number.
500
[ { "input": "2\n47", "output": "NO" }, { "input": "4\n4738", "output": "NO" }, { "input": "4\n4774", "output": "YES" }, { "input": "4\n4570", "output": "NO" }, { "input": "6\n477477", "output": "YES" }, { "input": "6\n777777", "output": "YES" }, ...
1,653,761,055
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
length = int(input()) num = int(input()) placehold = num isLucky = True strnum = str(num) if any(c not in '74' for c in strnum): isLucky = False firsthalf = strnum[0:length//2] lasthalf = strnum[length//2:length] firstlist = list(map(int, list(firsthalf))) lastlist = list(map(int, list(lasthalf))) print(firstlist) pr...
Title: Lucky Ticket Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python length = int(input()) num = int(input()) placehold = num isLucky = True strnum = str(num) if any(c not in '74' for c in strnum): isLucky = False firsthalf = strnum[0:length//2] lasthalf = strnum[length//2:length] firstlist = list(map(int, list(firsthalf))) lastlist = list(map(int, list(lasthalf))) print(fir...
0
476
A
Dreamoon and Stairs
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Dreamoon wants to climb up a stair of *n* steps. He can climb 1 or 2 steps at each move. Dreamoon wants the number of moves to be a multiple of an integer *m*. What is the minimal number of moves making him climb to the top of the stairs that satisfies his condition?
The single line contains two space separated integers *n*, *m* (0<=&lt;<=*n*<=≤<=10000,<=1<=&lt;<=*m*<=≤<=10).
Print a single integer — the minimal number of moves being a multiple of *m*. If there is no way he can climb satisfying condition print <=-<=1 instead.
[ "10 2\n", "3 5\n" ]
[ "6\n", "-1\n" ]
For the first sample, Dreamoon could climb in 6 moves with following sequence of steps: {2, 2, 2, 2, 1, 1}. For the second sample, there are only three valid sequence of steps {2, 1}, {1, 2}, {1, 1, 1} with 2, 2, and 3 steps respectively. All these numbers are not multiples of 5.
500
[ { "input": "10 2", "output": "6" }, { "input": "3 5", "output": "-1" }, { "input": "29 7", "output": "21" }, { "input": "2 2", "output": "2" }, { "input": "1 2", "output": "-1" }, { "input": "10000 2", "output": "5000" }, { "input": "10000 ...
1,688,504,492
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
import math n,m = map(int,input().split()) for i in range(math.ceil(n//2),n+1): if i % m == 0: print(i) break else: print(-1)
Title: Dreamoon and Stairs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dreamoon wants to climb up a stair of *n* steps. He can climb 1 or 2 steps at each move. Dreamoon wants the number of moves to be a multiple of an integer *m*. What is the minimal number of moves making him climb ...
```python import math n,m = map(int,input().split()) for i in range(math.ceil(n//2),n+1): if i % m == 0: print(i) break else: print(-1) ```
0
46
A
Ball Game
PROGRAMMING
800
[ "brute force", "implementation" ]
A. Ball Game
2
256
A kindergarten teacher Natalia Pavlovna has invented a new ball game. This game not only develops the children's physique, but also teaches them how to count. The game goes as follows. Kids stand in circle. Let's agree to think of the children as numbered with numbers from 1 to *n* clockwise and the child number 1 is...
The first line contains integer *n* (2<=≤<=*n*<=≤<=100) which indicates the number of kids in the circle.
In the single line print *n*<=-<=1 numbers which are the numbers of children who will get the ball after each throw. Separate the numbers by spaces.
[ "10\n", "3\n" ]
[ "2 4 7 1 6 2 9 7 6\n", "2 1\n" ]
none
0
[ { "input": "10", "output": "2 4 7 1 6 2 9 7 6" }, { "input": "3", "output": "2 1" }, { "input": "4", "output": "2 4 3" }, { "input": "5", "output": "2 4 2 1" }, { "input": "6", "output": "2 4 1 5 4" }, { "input": "7", "output": "2 4 7 4 2 1" }, ...
1,629,203,815
2,147,483,647
Python 3
OK
TESTS
33
124
6,758,400
n = int(input()) a = [i for i in range(1,n+1)]*n b = [] for i in range(n): b.append(a[(i*(i+1)//2)]) print(*b[1:])
Title: Ball Game Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A kindergarten teacher Natalia Pavlovna has invented a new ball game. This game not only develops the children's physique, but also teaches them how to count. The game goes as follows. Kids stand in circle. Let's agree to think...
```python n = int(input()) a = [i for i in range(1,n+1)]*n b = [] for i in range(n): b.append(a[(i*(i+1)//2)]) print(*b[1:]) ```
3.956411
817
A
Treasure Hunt
PROGRAMMING
1,200
[ "implementation", "math", "number theory" ]
null
null
Captain Bill the Hummingbird and his crew recieved an interesting challenge offer. Some stranger gave them a map, potion of teleportation and said that only this potion might help them to reach the treasure. Bottle with potion has two values *x* and *y* written on it. These values define four moves which can be perfo...
The first line contains four integer numbers *x*1,<=*y*1,<=*x*2,<=*y*2 (<=-<=105<=≤<=*x*1,<=*y*1,<=*x*2,<=*y*2<=≤<=105) — positions of Captain Bill the Hummingbird and treasure respectively. The second line contains two integer numbers *x*,<=*y* (1<=≤<=*x*,<=*y*<=≤<=105) — values on the potion bottle.
Print "YES" if it is possible for Captain to reach the treasure using the potion, otherwise print "NO" (without quotes).
[ "0 0 0 6\n2 3\n", "1 1 3 6\n1 5\n" ]
[ "YES\n", "NO\n" ]
In the first example there exists such sequence of moves: 1. <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/7c939890fb4ed35688177327dac981bfa9216c00.png" style="max-width: 100.0%;max-height: 100.0%;"/> — the first type of move 1. <img align="middle" class="tex-formula" src="https://espr...
0
[ { "input": "0 0 0 6\n2 3", "output": "YES" }, { "input": "1 1 3 6\n1 5", "output": "NO" }, { "input": "5 4 6 -10\n1 1", "output": "NO" }, { "input": "6 -3 -7 -7\n1 2", "output": "NO" }, { "input": "2 -5 -8 8\n2 1", "output": "YES" }, { "input": "70 -81...
1,664,058,769
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
16
46
0
x1,y1,x2,y2=map(int,input().split()) x,y=map(int,input().split()) aux = abs(x2-x1) aux2 = abs(y2-y1) aux3 = aux%x aux4 = aux2%y if (aux/x)%2 == (aux2/y)%2: if aux3 == 0 and aux4 == 0: print('YES') else: print('NO')
Title: Treasure Hunt Time Limit: None seconds Memory Limit: None megabytes Problem Description: Captain Bill the Hummingbird and his crew recieved an interesting challenge offer. Some stranger gave them a map, potion of teleportation and said that only this potion might help them to reach the treasure. Bottle with...
```python x1,y1,x2,y2=map(int,input().split()) x,y=map(int,input().split()) aux = abs(x2-x1) aux2 = abs(y2-y1) aux3 = aux%x aux4 = aux2%y if (aux/x)%2 == (aux2/y)%2: if aux3 == 0 and aux4 == 0: print('YES') else: print('NO') ```
0
439
A
Devu, the Singer and Churu, the Joker
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
Devu is a renowned classical singer. He is invited to many big functions/festivals. Recently he was invited to "All World Classical Singing Festival". Other than Devu, comedian Churu was also invited. Devu has provided organizers a list of the songs and required time for singing them. He will sing *n* songs, *i**th* s...
The first line contains two space separated integers *n*, *d* (1<=≤<=*n*<=≤<=100; 1<=≤<=*d*<=≤<=10000). The second line contains *n* space-separated integers: *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=100).
If there is no way to conduct all the songs of Devu, output -1. Otherwise output the maximum number of jokes that Churu can crack in the grand event.
[ "3 30\n2 2 1\n", "3 20\n2 1 1\n" ]
[ "5\n", "-1\n" ]
Consider the first example. The duration of the event is 30 minutes. There could be maximum 5 jokes in the following way: - First Churu cracks a joke in 5 minutes. - Then Devu performs the first song for 2 minutes. - Then Churu cracks 2 jokes in 10 minutes. - Now Devu performs second song for 2 minutes. - Then Ch...
500
[ { "input": "3 30\n2 2 1", "output": "5" }, { "input": "3 20\n2 1 1", "output": "-1" }, { "input": "50 10000\n5 4 10 9 9 6 7 7 7 3 3 7 7 4 7 4 10 10 1 7 10 3 1 4 5 7 2 10 10 10 2 3 4 7 6 1 8 4 7 3 8 8 4 10 1 1 9 2 6 1", "output": "1943" }, { "input": "50 10000\n4 7 15 9 11 12 ...
1,616,138,372
2,147,483,647
Python 3
OK
TESTS
26
77
0
n,m=map(int,input().split()) x=list(map(int,input().split())) if sum(x)+(n-1)*10>m: print(-1) else: m=(m-sum(x))//5 print(m)
Title: Devu, the Singer and Churu, the Joker Time Limit: None seconds Memory Limit: None megabytes Problem Description: Devu is a renowned classical singer. He is invited to many big functions/festivals. Recently he was invited to "All World Classical Singing Festival". Other than Devu, comedian Churu was also invit...
```python n,m=map(int,input().split()) x=list(map(int,input().split())) if sum(x)+(n-1)*10>m: print(-1) else: m=(m-sum(x))//5 print(m) ```
3
839
C
Journey
PROGRAMMING
1,500
[ "dfs and similar", "dp", "graphs", "probabilities", "trees" ]
null
null
There are *n* cities and *n*<=-<=1 roads in the Seven Kingdoms, each road connects two cities and we can reach any city from any other by the roads. Theon and Yara Greyjoy are on a horse in the first city, they are starting traveling through the roads. But the weather is foggy, so they can’t see where the horse brings...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100000) — number of cities. Then *n*<=-<=1 lines follow. The *i*-th line of these lines contains two integers *u**i* and *v**i* (1<=≤<=*u**i*,<=*v**i*<=≤<=*n*, *u**i*<=≠<=*v**i*) — the cities connected by the *i*-th road. It is guaranteed that one can reach ...
Print a number — the expected length of their journey. The journey starts in the city 1. Your answer will be considered correct if its absolute or relative error does not exceed 10<=-<=6. Namely: let's assume that your answer is *a*, and the answer of the jury is *b*. The checker program will consider your answer cor...
[ "4\n1 2\n1 3\n2 4\n", "5\n1 2\n1 3\n3 4\n2 5\n" ]
[ "1.500000000000000\n", "2.000000000000000\n" ]
In the first sample, their journey may end in cities 3 or 4 with equal probability. The distance to city 3 is 1 and to city 4 is 2, so the expected length is 1.5. In the second sample, their journey may end in city 4 or 5. The distance to the both cities is 2, so the expected length is 2.
1,500
[ { "input": "4\n1 2\n1 3\n2 4", "output": "1.500000000000000" }, { "input": "5\n1 2\n1 3\n3 4\n2 5", "output": "2.000000000000000" }, { "input": "70\n1 25\n57 1\n18 1\n65 1\n38 1\n1 41\n1 5\n1 69\n1 3\n31 1\n1 8\n1 9\n53 1\n70 1\n45 1\n1 24\n1 42\n1 30\n1 12\n1 37\n64 1\n1 28\n1 58\n1 22\...
1,587,408,101
2,147,483,647
Python 3
OK
TESTS
40
576
24,678,400
#https://codeforces.com/problemset/problem/839/C from collections import defaultdict class Graph: def __init__(self): self.dict = defaultdict(set) def main(): n_cities = int(input()) g = Graph() s = [] visited = set() for i in range(0,n_cities-1): u, v = (int(j) for j in input().split()) g.d...
Title: Journey Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* cities and *n*<=-<=1 roads in the Seven Kingdoms, each road connects two cities and we can reach any city from any other by the roads. Theon and Yara Greyjoy are on a horse in the first city, they are starting tr...
```python #https://codeforces.com/problemset/problem/839/C from collections import defaultdict class Graph: def __init__(self): self.dict = defaultdict(set) def main(): n_cities = int(input()) g = Graph() s = [] visited = set() for i in range(0,n_cities-1): u, v = (int(j) for j in input().split...
3
385
A
Bear and Raspberry
PROGRAMMING
1,000
[ "brute force", "greedy", "implementation" ]
null
null
The bear decided to store some raspberry for the winter. He cunningly found out the price for a barrel of honey in kilos of raspberry for each of the following *n* days. According to the bear's data, on the *i*-th (1<=≤<=*i*<=≤<=*n*) day, the price for one barrel of honey is going to is *x**i* kilos of raspberry. Unfo...
The first line contains two space-separated integers, *n* and *c* (2<=≤<=*n*<=≤<=100,<=0<=≤<=*c*<=≤<=100), — the number of days and the number of kilos of raspberry that the bear should give for borrowing the barrel. The second line contains *n* space-separated integers *x*1,<=*x*2,<=...,<=*x**n* (0<=≤<=*x**i*<=≤<=100...
Print a single integer — the answer to the problem.
[ "5 1\n5 10 7 3 20\n", "6 2\n100 1 10 40 10 40\n", "3 0\n1 2 3\n" ]
[ "3\n", "97\n", "0\n" ]
In the first sample the bear will lend a honey barrel at day 3 and then sell it for 7. Then the bear will buy a barrel for 3 and return it to the friend. So, the profit is (7 - 3 - 1) = 3. In the second sample bear will lend a honey barrel at day 1 and then sell it for 100. Then the bear buy the barrel for 1 at the da...
500
[ { "input": "5 1\n5 10 7 3 20", "output": "3" }, { "input": "6 2\n100 1 10 40 10 40", "output": "97" }, { "input": "3 0\n1 2 3", "output": "0" }, { "input": "2 0\n2 1", "output": "1" }, { "input": "10 5\n10 1 11 2 12 3 13 4 14 5", "output": "4" }, { "in...
1,390,591,882
2,147,483,647
Python 3
OK
TESTS
32
140
409,600
n, c = map(int, input().split()) pr = list(map(int, input().split())) maxim = 0 for cont in range(0,n-1,1): m = pr[cont]-pr[cont+1]-c if m > maxim: maxim = m print(maxim)
Title: Bear and Raspberry Time Limit: None seconds Memory Limit: None megabytes Problem Description: The bear decided to store some raspberry for the winter. He cunningly found out the price for a barrel of honey in kilos of raspberry for each of the following *n* days. According to the bear's data, on the *i*-th (1...
```python n, c = map(int, input().split()) pr = list(map(int, input().split())) maxim = 0 for cont in range(0,n-1,1): m = pr[cont]-pr[cont+1]-c if m > maxim: maxim = m print(maxim) ```
3
798
A
Mike and palindrome
PROGRAMMING
1,000
[ "brute force", "constructive algorithms", "strings" ]
null
null
Mike has a string *s* consisting of only lowercase English letters. He wants to change exactly one character from the string so that the resulting one is a palindrome. A palindrome is a string that reads the same backward as forward, for example strings "z", "aaa", "aba", "abccba" are palindromes, but strings "codefo...
The first and single line contains string *s* (1<=≤<=|*s*|<=≤<=15).
Print "YES" (without quotes) if Mike can change exactly one character so that the resulting string is palindrome or "NO" (without quotes) otherwise.
[ "abccaa\n", "abbcca\n", "abcda\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
500
[ { "input": "abccaa", "output": "YES" }, { "input": "abbcca", "output": "NO" }, { "input": "abcda", "output": "YES" }, { "input": "kyw", "output": "YES" }, { "input": "fccf", "output": "NO" }, { "input": "mnlm", "output": "YES" }, { "input":...
1,636,989,548
2,147,483,647
Python 3
OK
TESTS
99
61
0
t=input() count=0 n=len(t) if t[::1]==t[::-1]: if n%2==0: print("NO") else: print("YES") else: for i in range(0,n//2): if t[i]!=t[n-1-i]: count=count+1 else: continue if count==1: print("YES") else: print("NO")
Title: Mike and palindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mike has a string *s* consisting of only lowercase English letters. He wants to change exactly one character from the string so that the resulting one is a palindrome. A palindrome is a string that reads the same ...
```python t=input() count=0 n=len(t) if t[::1]==t[::-1]: if n%2==0: print("NO") else: print("YES") else: for i in range(0,n//2): if t[i]!=t[n-1-i]: count=count+1 else: continue if count==1: print("YES") else: pr...
3
161
A
Dress'em in Vests!
PROGRAMMING
1,300
[ "binary search", "brute force", "greedy", "two pointers" ]
null
null
The Two-dimensional kingdom is going through hard times... This morning the Three-Dimensional kingdom declared war on the Two-dimensional one. This (possibly armed) conflict will determine the ultimate owner of the straight line. The Two-dimensional kingdom has a regular army of *n* people. Each soldier registered him...
The first input line contains four integers *n*, *m*, *x* and *y* (1<=≤<=*n*,<=*m*<=≤<=105, 0<=≤<=*x*,<=*y*<=≤<=109) — the number of soldiers, the number of vests and two numbers that specify the soldiers' unpretentiousness, correspondingly. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i...
In the first line print a single integer *k* — the maximum number of soldiers equipped with bulletproof vests. In the next *k* lines print *k* pairs, one pair per line, as "*u**i* *v**i*" (without the quotes). Pair (*u**i*, *v**i*) means that soldier number *u**i* must wear vest number *v**i*. Soldiers and vests are ...
[ "5 3 0 0\n1 2 3 3 4\n1 3 5\n", "3 3 2 2\n1 5 9\n3 5 7\n" ]
[ "2\n1 1\n3 2\n", "3\n1 1\n2 2\n3 3\n" ]
In the first sample you need the vests' sizes to match perfectly: the first soldier gets the first vest (size 1), the third soldier gets the second vest (size 3). This sample allows another answer, which gives the second vest to the fourth soldier instead of the third one. In the second sample the vest size can differ...
1,000
[ { "input": "5 3 0 0\n1 2 3 3 4\n1 3 5", "output": "2\n1 1\n3 2" }, { "input": "3 3 2 2\n1 5 9\n3 5 7", "output": "3\n1 1\n2 2\n3 3" }, { "input": "1 1 0 0\n1\n1", "output": "1\n1 1" }, { "input": "1 1 0 0\n1\n2", "output": "0" }, { "input": "2 3 1 4\n1 5\n1 2 2", ...
1,545,105,359
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
218
0
n, m, x, y = map(int,input().split()) a = list(map(int,input().split())) b = list(map(int,input().split())) c = [] j = 0 for i in range(n): while j < m and b[j] >= a[i] +y: if a[i] - x <= b[j]: j += 1 c += [(i+1, j)] break j += 1 print(len(c)) for i...
Title: Dress'em in Vests! Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Two-dimensional kingdom is going through hard times... This morning the Three-Dimensional kingdom declared war on the Two-dimensional one. This (possibly armed) conflict will determine the ultimate owner of the s...
```python n, m, x, y = map(int,input().split()) a = list(map(int,input().split())) b = list(map(int,input().split())) c = [] j = 0 for i in range(n): while j < m and b[j] >= a[i] +y: if a[i] - x <= b[j]: j += 1 c += [(i+1, j)] break j += 1 print(len(...
0
597
B
Restaurant
PROGRAMMING
1,600
[ "dp", "greedy", "sortings" ]
null
null
A restaurant received *n* orders for the rental. Each rental order reserve the restaurant for a continuous period of time, the *i*-th order is characterized by two time values — the start time *l**i* and the finish time *r**i* (*l**i*<=≤<=*r**i*). Restaurant management can accept and reject orders. What is the maximal...
The first line contains integer number *n* (1<=≤<=*n*<=≤<=5·105) — number of orders. The following *n* lines contain integer values *l**i* and *r**i* each (1<=≤<=*l**i*<=≤<=*r**i*<=≤<=109).
Print the maximal number of orders that can be accepted.
[ "2\n7 11\n4 7\n", "5\n1 2\n2 3\n3 4\n4 5\n5 6\n", "6\n4 8\n1 5\n4 7\n2 5\n1 3\n6 8\n" ]
[ "1\n", "3\n", "2\n" ]
none
1,000
[ { "input": "2\n7 11\n4 7", "output": "1" }, { "input": "5\n1 2\n2 3\n3 4\n4 5\n5 6", "output": "3" }, { "input": "6\n4 8\n1 5\n4 7\n2 5\n1 3\n6 8", "output": "2" }, { "input": "1\n1 1", "output": "1" }, { "input": "2\n4 6\n4 8", "output": "1" }, { "inp...
1,602,161,039
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
93
204,800
n=int(input()) l=[] for i in range(n): s=input() temp=s.split() temp1=[int(i) for i in temp] l.append(temp1) sorted(l,key=lambda x:x[1]) cnt=1 prev=l[0][1] for i in range(1,len(l)): if l[i][0]>prev: cnt=cnt+1 prev=l[i][1] print(cnt)
Title: Restaurant Time Limit: None seconds Memory Limit: None megabytes Problem Description: A restaurant received *n* orders for the rental. Each rental order reserve the restaurant for a continuous period of time, the *i*-th order is characterized by two time values — the start time *l**i* and the finish time *r**...
```python n=int(input()) l=[] for i in range(n): s=input() temp=s.split() temp1=[int(i) for i in temp] l.append(temp1) sorted(l,key=lambda x:x[1]) cnt=1 prev=l[0][1] for i in range(1,len(l)): if l[i][0]>prev: cnt=cnt+1 prev=l[i][1] print(cnt) ```
0
408
A
Line to Cashier
PROGRAMMING
900
[ "implementation" ]
null
null
Little Vasya went to the supermarket to get some groceries. He walked about the supermarket for a long time and got a basket full of products. Now he needs to choose the cashier to pay for the products. There are *n* cashiers at the exit from the supermarket. At the moment the queue for the *i*-th cashier already has ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of cashes in the shop. The second line contains *n* space-separated integers: *k*1,<=*k*2,<=...,<=*k**n* (1<=≤<=*k**i*<=≤<=100), where *k**i* is the number of people in the queue to the *i*-th cashier. The *i*-th of the next *n* lines contains *k**i*...
Print a single integer — the minimum number of seconds Vasya needs to get to the cashier.
[ "1\n1\n1\n", "4\n1 4 3 2\n100\n1 2 2 3\n1 9 1\n7 8\n" ]
[ "20\n", "100\n" ]
In the second test sample, if Vasya goes to the first queue, he gets to the cashier in 100·5 + 15 = 515 seconds. But if he chooses the second queue, he will need 1·5 + 2·5 + 2·5 + 3·5 + 4·15 = 100 seconds. He will need 1·5 + 9·5 + 1·5 + 3·15 = 100 seconds for the third one and 7·5 + 8·5 + 2·15 = 105 seconds for the fou...
500
[ { "input": "1\n1\n1", "output": "20" }, { "input": "4\n1 4 3 2\n100\n1 2 2 3\n1 9 1\n7 8", "output": "100" }, { "input": "4\n5 4 5 5\n3 1 3 1 2\n3 1 1 3\n1 1 1 2 2\n2 2 1 1 3", "output": "100" }, { "input": "5\n5 3 6 6 4\n7 5 3 3 9\n6 8 2\n1 10 8 5 9 2\n9 7 8 5 9 10\n9 8 3 3"...
1,571,066,574
2,147,483,647
Python 3
OK
TESTS
20
124
307,200
n= int(input()) k= list(map(int, input().split())) mat=[] for i in range(n): l=list(map(int, input().split())) mat.append(l) res=[] temp=0 for i in range(n): t= k[i] demo=0 for j in range(t): demo= demo+mat[i][j] demo= demo*5 demo+= t*15 res.append(demo) pri...
Title: Line to Cashier Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Vasya went to the supermarket to get some groceries. He walked about the supermarket for a long time and got a basket full of products. Now he needs to choose the cashier to pay for the products. There are *n* c...
```python n= int(input()) k= list(map(int, input().split())) mat=[] for i in range(n): l=list(map(int, input().split())) mat.append(l) res=[] temp=0 for i in range(n): t= k[i] demo=0 for j in range(t): demo= demo+mat[i][j] demo= demo*5 demo+= t*15 res.append(de...
3
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,633,773,759
2,147,483,647
PyPy 3
OK
TESTS
30
184
20,172,800
n=input() l=len(n) lc=0 uc=0 for i in range(l): if n[i].islower(): lc+=1 elif n[i].isupper(): uc+=1 if lc>uc: n=n.lower() elif uc>lc: n=n.upper() elif lc==uc: n=n.lower() print(n)
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python n=input() l=len(n) lc=0 uc=0 for i in range(l): if n[i].islower(): lc+=1 elif n[i].isupper(): uc+=1 if lc>uc: n=n.lower() elif uc>lc: n=n.upper() elif lc==uc: n=n.lower() print(n) ```
3.916425
236
A
Boy or Girl
PROGRAMMING
800
[ "brute force", "implementation", "strings" ]
null
null
Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he thought so). After that they talked very often and eventually they became a couple in the network. Bu...
The first line contains a non-empty string, that contains only lowercase English letters — the user name. This string contains at most 100 letters.
If it is a female by our hero's method, print "CHAT WITH HER!" (without the quotes), otherwise, print "IGNORE HIM!" (without the quotes).
[ "wjmzbmr\n", "xiaodao\n", "sevenkplus\n" ]
[ "CHAT WITH HER!\n", "IGNORE HIM!\n", "CHAT WITH HER!\n" ]
For the first example. There are 6 distinct characters in "wjmzbmr". These characters are: "w", "j", "m", "z", "b", "r". So wjmzbmr is a female and you should print "CHAT WITH HER!".
500
[ { "input": "wjmzbmr", "output": "CHAT WITH HER!" }, { "input": "xiaodao", "output": "IGNORE HIM!" }, { "input": "sevenkplus", "output": "CHAT WITH HER!" }, { "input": "pezu", "output": "CHAT WITH HER!" }, { "input": "wnemlgppy", "output": "CHAT WITH HER!" },...
1,696,685,386
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
username = input("enter a username : ") distinct_characters = set(username) n = len(distinct_characters) if n%2==0: print( "CHAT WITH HER!" ) else : print("IGNORE HIM!")
Title: Boy or Girl Time Limit: None seconds Memory Limit: None megabytes Problem Description: Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he though...
```python username = input("enter a username : ") distinct_characters = set(username) n = len(distinct_characters) if n%2==0: print( "CHAT WITH HER!" ) else : print("IGNORE HIM!") ```
0
867
A
Between the Offices
PROGRAMMING
800
[ "implementation" ]
null
null
As you may know, MemSQL has American offices in both San Francisco and Seattle. Being a manager in the company, you travel a lot between the two cities, always by plane. You prefer flying from Seattle to San Francisco than in the other direction, because it's warmer in San Francisco. You are so busy that you don't rem...
The first line of input contains single integer *n* (2<=≤<=*n*<=≤<=100) — the number of days. The second line contains a string of length *n* consisting of only capital 'S' and 'F' letters. If the *i*-th letter is 'S', then you were in Seattle office on that day. Otherwise you were in San Francisco. The days are given...
Print "YES" if you flew more times from Seattle to San Francisco, and "NO" otherwise. You can print each letter in any case (upper or lower).
[ "4\nFSSF\n", "2\nSF\n", "10\nFFFFFFFFFF\n", "10\nSSFFSFFSFF\n" ]
[ "NO\n", "YES\n", "NO\n", "YES\n" ]
In the first example you were initially at San Francisco, then flew to Seattle, were there for two days and returned to San Francisco. You made one flight in each direction, so the answer is "NO". In the second example you just flew from Seattle to San Francisco, so the answer is "YES". In the third example you staye...
500
[ { "input": "4\nFSSF", "output": "NO" }, { "input": "2\nSF", "output": "YES" }, { "input": "10\nFFFFFFFFFF", "output": "NO" }, { "input": "10\nSSFFSFFSFF", "output": "YES" }, { "input": "20\nSFSFFFFSSFFFFSSSSFSS", "output": "NO" }, { "input": "20\nSSFFF...
1,665,157,277
2,147,483,647
PyPy 3-64
OK
TESTS
34
62
0
n = int(input()) s = input() sf = 0 fs = 0 for i in range(len(s)-1): if s[i]+s[i+1] == 'SF': sf += 1 elif s[i]+s[i+1] == "FS": fs += 1 if sf>fs: print("YES") else: print("NO")
Title: Between the Offices Time Limit: None seconds Memory Limit: None megabytes Problem Description: As you may know, MemSQL has American offices in both San Francisco and Seattle. Being a manager in the company, you travel a lot between the two cities, always by plane. You prefer flying from Seattle to San Franci...
```python n = int(input()) s = input() sf = 0 fs = 0 for i in range(len(s)-1): if s[i]+s[i+1] == 'SF': sf += 1 elif s[i]+s[i+1] == "FS": fs += 1 if sf>fs: print("YES") else: print("NO") ```
3
399
A
Pages
PROGRAMMING
0
[ "implementation" ]
null
null
User ainta is making a web site. This time he is going to make a navigation of the pages. In his site, there are *n* pages numbered by integers from 1 to *n*. Assume that somebody is on the *p*-th page now. The navigation will look like this: When someone clicks the button "&lt;&lt;" he is redirected to page 1, and wh...
The first and the only line contains three integers *n*, *p*, *k* (3<=≤<=*n*<=≤<=100; 1<=≤<=*p*<=≤<=*n*; 1<=≤<=*k*<=≤<=*n*)
Print the proper navigation. Follow the format of the output from the test samples.
[ "17 5 2\n", "6 5 2\n", "6 1 2\n", "6 2 2\n", "9 6 3\n", "10 6 3\n", "8 5 4\n" ]
[ "&lt;&lt; 3 4 (5) 6 7 &gt;&gt; ", "&lt;&lt; 3 4 (5) 6 ", "(1) 2 3 &gt;&gt; ", "1 (2) 3 4 &gt;&gt;", "&lt;&lt; 3 4 5 (6) 7 8 9", "&lt;&lt; 3 4 5 (6) 7 8 9 &gt;&gt;", "1 2 3 4 (5) 6 7 8 " ]
none
500
[ { "input": "17 5 2", "output": "<< 3 4 (5) 6 7 >> " }, { "input": "6 5 2", "output": "<< 3 4 (5) 6 " }, { "input": "6 1 2", "output": "(1) 2 3 >> " }, { "input": "6 2 2", "output": "1 (2) 3 4 >> " }, { "input": "9 6 3", "output": "<< 3 4 5 (6) 7 8 9 " }, {...
1,577,732,739
2,147,483,647
Python 3
OK
TESTS
26
124
0
(b, p, f) = [int(a) for a in input().split(' ')] t = '' l = p - f m = p + f if l <= 1: l = 1 else: t = t + '<<' + ' ' if m > b: m = b for g in range (l, m + 1): if g == p: t = t + '(' + str(p) + ')' + ' ' else: t = t + str(g) + ' ' if m < b: t = t + '>>' print (t...
Title: Pages Time Limit: None seconds Memory Limit: None megabytes Problem Description: User ainta is making a web site. This time he is going to make a navigation of the pages. In his site, there are *n* pages numbered by integers from 1 to *n*. Assume that somebody is on the *p*-th page now. The navigation will lo...
```python (b, p, f) = [int(a) for a in input().split(' ')] t = '' l = p - f m = p + f if l <= 1: l = 1 else: t = t + '<<' + ' ' if m > b: m = b for g in range (l, m + 1): if g == p: t = t + '(' + str(p) + ')' + ' ' else: t = t + str(g) + ' ' if m < b: t = t + '>>'...
3
0
none
none
none
0
[ "none" ]
null
null
Little Artem found a grasshopper. He brought it to his house and constructed a jumping area for him. The area looks like a strip of cells 1<=×<=*n*. Each cell contains the direction for the next jump and the length of that jump. Grasshopper starts in the first cell and follows the instructions written on the cells. Gr...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — length of the strip. Next line contains a string of length *n* which consists of characters "&lt;" and "&gt;" only, that provide the direction of the jump from the corresponding cell. Next line contains *n* integers *d**i* (1<=≤<=*d*...
Print "INFINITE" (without quotes) if grasshopper will continue his jumps forever. Otherwise print "FINITE" (without quotes).
[ "2\n&gt;&lt;\n1 2\n", "3\n&gt;&gt;&lt;\n2 1 1\n" ]
[ "FINITE\n", "INFINITE" ]
In the first sample grasshopper starts from the first cell and jumps to the right on the next cell. When he is in the second cell he needs to jump two cells left so he will jump out of the strip. Second sample grasshopper path is 1 - 3 - 2 - 3 - 2 - 3 and so on. The path is infinite.
0
[ { "input": "2\n><\n1 2", "output": "FINITE" }, { "input": "3\n>><\n2 1 1", "output": "INFINITE" }, { "input": "1\n>\n1000000000", "output": "FINITE" }, { "input": "1\n<\n1000000000", "output": "FINITE" }, { "input": "2\n>>\n1 1", "output": "FINITE" }, { ...
1,461,519,111
3,411
Python 3
RUNTIME_ERROR
TESTS
33
233
12,288,000
def f(ind): global n, s, data, used used[ind] = 1 v = data[ind] if s[ind] == '<': v *= -1 ind += v if ind < 0 or ind >= n: print('FINITE') return else: if used[ind] == 1: print('INFINITE') else: f(ind) global n,...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Artem found a grasshopper. He brought it to his house and constructed a jumping area for him. The area looks like a strip of cells 1<=×<=*n*. Each cell contains the direction for the next jump and the length of that jump. ...
```python def f(ind): global n, s, data, used used[ind] = 1 v = data[ind] if s[ind] == '<': v *= -1 ind += v if ind < 0 or ind >= n: print('FINITE') return else: if used[ind] == 1: print('INFINITE') else: f(ind) ...
-1
133
A
HQ9+
PROGRAMMING
900
[ "implementation" ]
null
null
HQ9+ is a joke programming language which has only four one-character instructions: - "H" prints "Hello, World!",- "Q" prints the source code of the program itself,- "9" prints the lyrics of "99 Bottles of Beer" song, - "+" increments the value stored in the internal accumulator. Instructions "H" and "Q" are case-s...
The input will consist of a single line *p* which will give a program in HQ9+. String *p* will contain between 1 and 100 characters, inclusive. ASCII-code of each character of *p* will be between 33 (exclamation mark) and 126 (tilde), inclusive.
Output "YES", if executing the program will produce any output, and "NO" otherwise.
[ "Hi!\n", "Codeforces\n" ]
[ "YES\n", "NO\n" ]
In the first case the program contains only one instruction — "H", which prints "Hello, World!". In the second case none of the program characters are language instructions.
500
[ { "input": "Hi!", "output": "YES" }, { "input": "Codeforces", "output": "NO" }, { "input": "a+b=c", "output": "NO" }, { "input": "hq-lowercase", "output": "NO" }, { "input": "Q", "output": "YES" }, { "input": "9", "output": "YES" }, { "inpu...
1,694,107,682
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
62
0
def code(string): formula="HQ9+" for i in range(len(string)): if string[i] in formula: return "YES" return "NO" string=input() result=code(string) print(result)
Title: HQ9+ Time Limit: None seconds Memory Limit: None megabytes Problem Description: HQ9+ is a joke programming language which has only four one-character instructions: - "H" prints "Hello, World!",- "Q" prints the source code of the program itself,- "9" prints the lyrics of "99 Bottles of Beer" song, - "+" in...
```python def code(string): formula="HQ9+" for i in range(len(string)): if string[i] in formula: return "YES" return "NO" string=input() result=code(string) print(result) ```
0
285
C
Building Permutation
PROGRAMMING
1,200
[ "greedy", "implementation", "sortings" ]
null
null
Permutation *p* is an ordered set of integers *p*1,<=<=*p*2,<=<=...,<=<=*p**n*, consisting of *n* distinct positive integers, each of them doesn't exceed *n*. We'll denote the *i*-th element of permutation *p* as *p**i*. We'll call number *n* the size or the length of permutation *p*1,<=<=*p*2,<=<=...,<=<=*p**n*. You ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=3·105) — the size of the sought permutation. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=109<=≤<=*a**i*<=≤<=109).
Print a single number — the minimum number of moves. Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.
[ "2\n3 0\n", "3\n-1 -1 2\n" ]
[ "2\n", "6\n" ]
In the first sample you should decrease the first number by one and then increase the second number by one. The resulting permutation is (2, 1). In the second sample you need 6 moves to build permutation (1, 3, 2).
1,500
[ { "input": "2\n3 0", "output": "2" }, { "input": "3\n-1 -1 2", "output": "6" }, { "input": "5\n-3 5 -3 3 3", "output": "10" }, { "input": "10\n9 6 -2 4 1 1 1 9 6 2", "output": "18" }, { "input": "9\n2 0 0 6 5 4 1 9 3", "output": "15" }, { "input": "100...
1,591,705,228
2,147,483,647
PyPy 3
OK
TESTS
33
514
26,112,000
n=int(input()) arr=[int(i) for i in input().split()] arr.sort() ans=0 for i in range(n): ans+=abs(arr[i]-i-1) print(ans)
Title: Building Permutation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Permutation *p* is an ordered set of integers *p*1,<=<=*p*2,<=<=...,<=<=*p**n*, consisting of *n* distinct positive integers, each of them doesn't exceed *n*. We'll denote the *i*-th element of permutation *p* as *...
```python n=int(input()) arr=[int(i) for i in input().split()] arr.sort() ans=0 for i in range(n): ans+=abs(arr[i]-i-1) print(ans) ```
3
805
B
3-palindrome
PROGRAMMING
1,000
[ "constructive algorithms" ]
null
null
In the beginning of the new year Keivan decided to reverse his name. He doesn't like palindromes, so he changed Naviek to Navick. He is too selfish, so for a given *n* he wants to obtain a string of *n* characters, each of which is either 'a', 'b' or 'c', with no palindromes of length 3 appearing in the string as a su...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=2·105) — the length of the string.
Print the string that satisfies all the constraints. If there are multiple answers, print any of them.
[ "2\n", "3\n" ]
[ "aa\n", "bba\n" ]
A palindrome is a sequence of characters which reads the same backward and forward.
1,000
[ { "input": "2", "output": "aa" }, { "input": "3", "output": "aab" }, { "input": "38", "output": "aabbaabbaabbaabbaabbaabbaabbaabbaabbaa" }, { "input": "47", "output": "aabbaabbaabbaabbaabbaabbaabbaabbaabbaabbaabbaab" }, { "input": "59", "output": "aabbaabbaabb...
1,600,681,740
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
124
0
n = int(input()) # aabcaab l = [] for i in range(0,n): k = i%7 if k == 0 or k == 1 or k ==4 or k == 5: l.append('a') elif k == 2 or k == 6: l.append('b') else: l.append('c') s = "" print(s.join(l))
Title: 3-palindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: In the beginning of the new year Keivan decided to reverse his name. He doesn't like palindromes, so he changed Naviek to Navick. He is too selfish, so for a given *n* he wants to obtain a string of *n* characters, each o...
```python n = int(input()) # aabcaab l = [] for i in range(0,n): k = i%7 if k == 0 or k == 1 or k ==4 or k == 5: l.append('a') elif k == 2 or k == 6: l.append('b') else: l.append('c') s = "" print(s.join(l)) ```
0
762
A
k-th divisor
PROGRAMMING
1,400
[ "math", "number theory" ]
null
null
You are given two integers *n* and *k*. Find *k*-th smallest divisor of *n*, or report that it doesn't exist. Divisor of *n* is any such natural number, that *n* can be divided by it without remainder.
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=1015, 1<=≤<=*k*<=≤<=109).
If *n* has less than *k* divisors, output -1. Otherwise, output the *k*-th smallest divisor of *n*.
[ "4 2\n", "5 3\n", "12 5\n" ]
[ "2\n", "-1\n", "6\n" ]
In the first example, number 4 has three divisors: 1, 2 and 4. The second one is 2. In the second example, number 5 has only two divisors: 1 and 5. The third divisor doesn't exist, so the answer is -1.
0
[ { "input": "4 2", "output": "2" }, { "input": "5 3", "output": "-1" }, { "input": "12 5", "output": "6" }, { "input": "1 1", "output": "1" }, { "input": "866421317361600 26880", "output": "866421317361600" }, { "input": "866421317361600 26881", "ou...
1,642,691,217
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
4
2,000
0
n,k = map(int,input().split()) kth = 0 contin = True for i in range(1,int(n**0.5)+1): if n%i == 0: kth += 1 if kth == k: print(i) contin = False break if contin: for i in range(int(n**0.5),0,-1): if n%i == 0: kth += 1 if kth == k:...
Title: k-th divisor Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two integers *n* and *k*. Find *k*-th smallest divisor of *n*, or report that it doesn't exist. Divisor of *n* is any such natural number, that *n* can be divided by it without remainder. Input Specificatio...
```python n,k = map(int,input().split()) kth = 0 contin = True for i in range(1,int(n**0.5)+1): if n%i == 0: kth += 1 if kth == k: print(i) contin = False break if contin: for i in range(int(n**0.5),0,-1): if n%i == 0: kth += 1 if...
0
991
D
Bishwock
PROGRAMMING
1,500
[ "dp", "greedy" ]
null
null
Bishwock is a chess figure that consists of three squares resembling an "L-bar". This figure can be rotated by 90, 180 and 270 degrees so it can have four possible states: Bishwocks don't attack any squares and can even occupy on the adjacent squares as long as they don't occupy the same square. Vasya has a board wi...
The input contains two nonempty strings that describe Vasya's board. Those strings contain only symbols "0" (zero) that denote the empty squares and symbols "X" (uppercase English letter) that denote the squares occupied by pawns. Strings are nonempty and are of the same length that does not exceed $100$.
Output a single integer — the maximum amount of bishwocks that can be placed onto the given board.
[ "00\n00\n", "00X00X0XXX0\n0XXX0X00X00\n", "0X0X0\n0X0X0\n", "0XXX0\n00000\n" ]
[ "1", "4", "0", "2" ]
none
1,500
[ { "input": "00\n00", "output": "1" }, { "input": "00X00X0XXX0\n0XXX0X00X00", "output": "4" }, { "input": "0X0X0\n0X0X0", "output": "0" }, { "input": "0XXX0\n00000", "output": "2" }, { "input": "0\n0", "output": "0" }, { "input": "0\nX", "output": "...
1,689,040,094
2,147,483,647
PyPy 3-64
OK
TESTS
72
92
2,252,800
from functools import cache x = input() y = input() @cache def dfs(a, b: bytes, index: int): if index == len(x): return 0 ans = dfs(x[index], y[index], index + 1) if (a == '0' or b == '0') and x[index] == '0' and y[index] == '0': ans = max(ans, dfs('X', 'X', index + 1) + 1) if a == '0' and b =...
Title: Bishwock Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bishwock is a chess figure that consists of three squares resembling an "L-bar". This figure can be rotated by 90, 180 and 270 degrees so it can have four possible states: Bishwocks don't attack any squares and can even occup...
```python from functools import cache x = input() y = input() @cache def dfs(a, b: bytes, index: int): if index == len(x): return 0 ans = dfs(x[index], y[index], index + 1) if (a == '0' or b == '0') and x[index] == '0' and y[index] == '0': ans = max(ans, dfs('X', 'X', index + 1) + 1) if a == '...
3
265
A
Colorful Stones (Simplified Edition)
PROGRAMMING
800
[ "implementation" ]
null
null
There is a sequence of colorful stones. The color of each stone is one of red, green, or blue. You are given a string *s*. The *i*-th (1-based) character of *s* represents the color of the *i*-th stone. If the character is "R", "G", or "B", the color of the corresponding stone is red, green, or blue, respectively. Ini...
The input contains two lines. The first line contains the string *s* (1<=≤<=|*s*|<=≤<=50). The second line contains the string *t* (1<=≤<=|*t*|<=≤<=50). The characters of each string will be one of "R", "G", or "B". It is guaranteed that Liss don't move out of the sequence.
Print the final 1-based position of Liss in a single line.
[ "RGB\nRRR\n", "RRRBGBRBBB\nBBBRR\n", "BRRBGBRGRBGRGRRGGBGBGBRGBRGRGGGRBRRRBRBBBGRRRGGBBB\nBBRBGGRGRGBBBRBGRBRBBBBRBRRRBGBBGBBRRBBGGRBRRBRGRB\n" ]
[ "2\n", "3\n", "15\n" ]
none
500
[ { "input": "RGB\nRRR", "output": "2" }, { "input": "RRRBGBRBBB\nBBBRR", "output": "3" }, { "input": "BRRBGBRGRBGRGRRGGBGBGBRGBRGRGGGRBRRRBRBBBGRRRGGBBB\nBBRBGGRGRGBBBRBGRBRBBBBRBRRRBGBBGBBRRBBGGRBRRBRGRB", "output": "15" }, { "input": "G\nRRBBRBRRBR", "output": "1" }, ...
1,678,321,814
2,147,483,647
Python 3
OK
TESTS
19
92
0
s = input() t = input() c = s[0] j = 0 count = 0 for i in range(len(t)): if c == t[i]: count += 1 j += 1 c = s[j] print(count + 1)
Title: Colorful Stones (Simplified Edition) Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is a sequence of colorful stones. The color of each stone is one of red, green, or blue. You are given a string *s*. The *i*-th (1-based) character of *s* represents the color of the *i*-th st...
```python s = input() t = input() c = s[0] j = 0 count = 0 for i in range(len(t)): if c == t[i]: count += 1 j += 1 c = s[j] print(count + 1) ```
3
839
A
Arya and Bran
PROGRAMMING
900
[ "implementation" ]
null
null
Bran and his older sister Arya are from the same house. Bran like candies so much, so Arya is going to give him some Candies. At first, Arya and Bran have 0 Candies. There are *n* days, at the *i*-th day, Arya finds *a**i* candies in a box, that is given by the Many-Faced God. Every day she can give Bran at most 8 of ...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=100, 1<=≤<=*k*<=≤<=10000). The second line contains *n* integers *a*1,<=*a*2,<=*a*3,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100).
If it is impossible for Arya to give Bran *k* candies within *n* days, print -1. Otherwise print a single integer — the minimum number of days Arya needs to give Bran *k* candies before the end of the *n*-th day.
[ "2 3\n1 2\n", "3 17\n10 10 10\n", "1 9\n10\n" ]
[ "2", "3", "-1" ]
In the first sample, Arya can give Bran 3 candies in 2 days. In the second sample, Arya can give Bran 17 candies in 3 days, because she can give him at most 8 candies per day. In the third sample, Arya can't give Bran 9 candies, because she can give him at most 8 candies per day and she must give him the candies with...
500
[ { "input": "2 3\n1 2", "output": "2" }, { "input": "3 17\n10 10 10", "output": "3" }, { "input": "1 9\n10", "output": "-1" }, { "input": "10 70\n6 5 2 3 3 2 1 4 3 2", "output": "-1" }, { "input": "20 140\n40 4 81 40 10 54 34 50 84 60 16 1 90 78 38 93 99 60 81 99",...
1,595,331,375
2,147,483,647
Python 3
OK
TESTS
60
109
6,656,000
n,k=map(int, input().split()) l=list(map(int, input().split())) for i in range(n): c=min(k,l[i],8) if i!=n-1: l[i+1]+=l[i]-c k-=c if k==0: print(i+1) break else: print("-1")
Title: Arya and Bran Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bran and his older sister Arya are from the same house. Bran like candies so much, so Arya is going to give him some Candies. At first, Arya and Bran have 0 Candies. There are *n* days, at the *i*-th day, Arya finds *a**...
```python n,k=map(int, input().split()) l=list(map(int, input().split())) for i in range(n): c=min(k,l[i],8) if i!=n-1: l[i+1]+=l[i]-c k-=c if k==0: print(i+1) break else: print("-1") ```
3
205
A
Little Elephant and Rozdil
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elephant doesn't like to spend much time on travelling, so for his journey he will choose a town that needs minimum ti...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of cities. The next line contains *n* integers, separated by single spaces: the *i*-th integer represents the time needed to go from town Rozdil to the *i*-th town. The time values are positive integers, not exceeding 109. You can consider t...
Print the answer on a single line — the number of the town the Little Elephant will go to. If there are multiple cities with minimum travel time, print "Still Rozdil" (without the quotes).
[ "2\n7 4\n", "7\n7 4 47 100 4 9 12\n" ]
[ "2\n", "Still Rozdil\n" ]
In the first sample there are only two cities where the Little Elephant can go. The travel time for the first town equals 7, to the second one — 4. The town which is closest to Rodzil (the only one) is the second one, so the answer is 2. In the second sample the closest cities are cities two and five, the travelling t...
500
[ { "input": "2\n7 4", "output": "2" }, { "input": "7\n7 4 47 100 4 9 12", "output": "Still Rozdil" }, { "input": "1\n47", "output": "1" }, { "input": "2\n1000000000 1000000000", "output": "Still Rozdil" }, { "input": "7\n7 6 5 4 3 2 1", "output": "7" }, { ...
1,662,906,958
2,147,483,647
Python 3
OK
TESTS
45
156
7,987,200
n=int(input()) l=list(map(int,input().split()))[:n] k=min(l) if l.count(k)==1: print(l.index(k)+1) else: print('Still Rozdil')
Title: Little Elephant and Rozdil Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elepha...
```python n=int(input()) l=list(map(int,input().split()))[:n] k=min(l) if l.count(k)==1: print(l.index(k)+1) else: print('Still Rozdil') ```
3
577
B
Modulo Sum
PROGRAMMING
1,900
[ "combinatorics", "data structures", "dp", "two pointers" ]
null
null
You are given a sequence of numbers *a*1,<=*a*2,<=...,<=*a**n*, and a number *m*. Check if it is possible to choose a non-empty subsequence *a**i**j* such that the sum of numbers in this subsequence is divisible by *m*.
The first line contains two numbers, *n* and *m* (1<=≤<=*n*<=≤<=106, 2<=≤<=*m*<=≤<=103) — the size of the original sequence and the number such that sum should be divisible by it. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109).
In the single line print either "YES" (without the quotes) if there exists the sought subsequence, or "NO" (without the quotes), if such subsequence doesn't exist.
[ "3 5\n1 2 3\n", "1 6\n5\n", "4 6\n3 1 1 3\n", "6 6\n5 5 5 5 5 5\n" ]
[ "YES\n", "NO\n", "YES\n", "YES\n" ]
In the first sample test you can choose numbers 2 and 3, the sum of which is divisible by 5. In the second sample test the single non-empty subsequence of numbers is a single number 5. Number 5 is not divisible by 6, that is, the sought subsequence doesn't exist. In the third sample test you need to choose two number...
1,250
[ { "input": "3 5\n1 2 3", "output": "YES" }, { "input": "1 6\n5", "output": "NO" }, { "input": "4 6\n3 1 1 3", "output": "YES" }, { "input": "6 6\n5 5 5 5 5 5", "output": "YES" }, { "input": "4 5\n1 1 1 1", "output": "NO" }, { "input": "5 5\n1 1 1 1 1",...
1,679,019,601
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
46
0
# https://codeforces.com/problemset/problem/577/B n, m = map(int, input().split()) a = list(map(int, input().split())) dp = [False] * m dp[0] = True for i in range(n): for j in range(m): if dp[j]: dp[(j + a[i]) % m] = True if dp[0]: print("YES") else: print("NO")
Title: Modulo Sum Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a sequence of numbers *a*1,<=*a*2,<=...,<=*a**n*, and a number *m*. Check if it is possible to choose a non-empty subsequence *a**i**j* such that the sum of numbers in this subsequence is divisible by *m*. In...
```python # https://codeforces.com/problemset/problem/577/B n, m = map(int, input().split()) a = list(map(int, input().split())) dp = [False] * m dp[0] = True for i in range(n): for j in range(m): if dp[j]: dp[(j + a[i]) % m] = True if dp[0]: print("YES") else: print("NO") ```
0
822
A
I'm bored with life
PROGRAMMING
800
[ "implementation", "math", "number theory" ]
null
null
Holidays have finished. Thanks to the help of the hacker Leha, Noora managed to enter the university of her dreams which is located in a town Pavlopolis. It's well known that universities provide students with dormitory for the period of university studies. Consequently Noora had to leave Vičkopolis and move to Pavlopo...
The first and single line contains two integers *A* and *B* (1<=≤<=*A*,<=*B*<=≤<=109,<=*min*(*A*,<=*B*)<=≤<=12).
Print a single integer denoting the greatest common divisor of integers *A*! and *B*!.
[ "4 3\n" ]
[ "6\n" ]
Consider the sample. 4! = 1·2·3·4 = 24. 3! = 1·2·3 = 6. The greatest common divisor of integers 24 and 6 is exactly 6.
500
[ { "input": "4 3", "output": "6" }, { "input": "10 399603090", "output": "3628800" }, { "input": "6 973151934", "output": "720" }, { "input": "2 841668075", "output": "2" }, { "input": "7 415216919", "output": "5040" }, { "input": "3 283733059", "ou...
1,676,541,636
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
1
1,000
12,083,200
import math my_list = input().split() n = [int(i) for i in my_list] def fact(n): fact = 1 if(n < 0): return 1 else: for i in range(1,n+1): fact = fact * i return fact print(math.gcd(fact(n[0]),fact(n[1])))
Title: I'm bored with life Time Limit: None seconds Memory Limit: None megabytes Problem Description: Holidays have finished. Thanks to the help of the hacker Leha, Noora managed to enter the university of her dreams which is located in a town Pavlopolis. It's well known that universities provide students with dormi...
```python import math my_list = input().split() n = [int(i) for i in my_list] def fact(n): fact = 1 if(n < 0): return 1 else: for i in range(1,n+1): fact = fact * i return fact print(math.gcd(fact(n[0]),fact(n[1]))) ```
0
557
A
Ilya and Diplomas
PROGRAMMING
1,100
[ "greedy", "implementation", "math" ]
null
null
Soon a school Olympiad in Informatics will be held in Berland, *n* schoolchildren will participate there. At a meeting of the jury of the Olympiad it was decided that each of the *n* participants, depending on the results, will get a diploma of the first, second or third degree. Thus, each student will receive exactly...
The first line of the input contains a single integer *n* (3<=≤<=*n*<=≤<=3·106) — the number of schoolchildren who will participate in the Olympiad. The next line of the input contains two integers *min*1 and *max*1 (1<=≤<=*min*1<=≤<=*max*1<=≤<=106) — the minimum and maximum limits on the number of diplomas of the fir...
In the first line of the output print three numbers, showing how many diplomas of the first, second and third degree will be given to students in the optimal variant of distributing diplomas. The optimal variant of distributing diplomas is the one that maximizes the number of students who receive diplomas of the first...
[ "6\n1 5\n2 6\n3 7\n", "10\n1 2\n1 3\n1 5\n", "6\n1 3\n2 2\n2 2\n" ]
[ "1 2 3 \n", "2 3 5 \n", "2 2 2 \n" ]
none
500
[ { "input": "6\n1 5\n2 6\n3 7", "output": "1 2 3 " }, { "input": "10\n1 2\n1 3\n1 5", "output": "2 3 5 " }, { "input": "6\n1 3\n2 2\n2 2", "output": "2 2 2 " }, { "input": "55\n1 1000000\n40 50\n10 200", "output": "5 40 10 " }, { "input": "3\n1 1\n1 1\n1 1", "o...
1,435,876,223
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
1,000
0
n = int(input()) m1 ,ma1= map(int, input().split()) m2,ma2 = map(int, input().split()) m3,ma3 = map(int, input().split()) a1 = ma1 a2 = ma2 a3 = ma3 while True : if a1 + a2 + a3 == n : break if(a3 > m3): a3 -= 1 elif(a2 > m2): a2 -= 1 elif(a1 > m1): ...
Title: Ilya and Diplomas Time Limit: None seconds Memory Limit: None megabytes Problem Description: Soon a school Olympiad in Informatics will be held in Berland, *n* schoolchildren will participate there. At a meeting of the jury of the Olympiad it was decided that each of the *n* participants, depending on the re...
```python n = int(input()) m1 ,ma1= map(int, input().split()) m2,ma2 = map(int, input().split()) m3,ma3 = map(int, input().split()) a1 = ma1 a2 = ma2 a3 = ma3 while True : if a1 + a2 + a3 == n : break if(a3 > m3): a3 -= 1 elif(a2 > m2): a2 -= 1 elif(a1 > m1...
0
384
A
Coder
PROGRAMMING
800
[ "implementation" ]
null
null
Iahub likes chess very much. He even invented a new chess piece named Coder. A Coder can move (and attack) one square horizontally or vertically. More precisely, if the Coder is located at position (*x*,<=*y*), he can move to (or attack) positions (*x*<=+<=1,<=*y*), (*x*–1,<=*y*), (*x*,<=*y*<=+<=1) and (*x*,<=*y*–1). ...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=1000).
On the first line print an integer, the maximum number of Coders that can be placed on the chessboard. On each of the next *n* lines print *n* characters, describing the configuration of the Coders. For an empty cell print an '.', and for a Coder print a 'C'. If there are multiple correct answers, you can print any.
[ "2\n" ]
[ "2\nC.\n.C\n" ]
none
500
[ { "input": "2", "output": "2\nC.\n.C" }, { "input": "3", "output": "5\nC.C\n.C.\nC.C" }, { "input": "4", "output": "8\nC.C.\n.C.C\nC.C.\n.C.C" }, { "input": "10", "output": "50\nC.C.C.C.C.\n.C.C.C.C.C\nC.C.C.C.C.\n.C.C.C.C.C\nC.C.C.C.C.\n.C.C.C.C.C\nC.C.C.C.C.\n.C.C.C.C.C...
1,578,766,468
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
139
0
def read(): return int(input()) n = read() for i in range(0, n): t = '' for j in range(0, n): if i % 2 == 0: if j % 2 == 0: t += 'C' else: t += '.' else: if j % 2 == 1: t += 'C' else: t += '.' print(t)
Title: Coder Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub likes chess very much. He even invented a new chess piece named Coder. A Coder can move (and attack) one square horizontally or vertically. More precisely, if the Coder is located at position (*x*,<=*y*), he can move to (or...
```python def read(): return int(input()) n = read() for i in range(0, n): t = '' for j in range(0, n): if i % 2 == 0: if j % 2 == 0: t += 'C' else: t += '.' else: if j % 2 == 1: t += 'C' else: t += '.' print(t) ```
0
0
none
none
none
0
[ "none" ]
null
null
Gerald has been selling state secrets at leisure. All the secrets cost the same: *n* marks. The state which secrets Gerald is selling, has no paper money, only coins. But there are coins of all positive integer denominations that are powers of three: 1 mark, 3 marks, 9 marks, 27 marks and so on. There are no coins of o...
The single line contains a single integer *n* (1<=≤<=*n*<=≤<=1017). 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.
In a single line print an integer: the maximum number of coins the unlucky buyer could have paid with.
[ "1\n", "4\n" ]
[ "1\n", "2\n" ]
In the first test case, if a buyer has exactly one coin of at least 3 marks, then, to give Gerald one mark, he will have to give this coin. In this sample, the customer can not have a coin of one mark, as in this case, he will be able to give the money to Gerald without any change. In the second test case, if the buye...
0
[ { "input": "1", "output": "1" }, { "input": "4", "output": "2" }, { "input": "3", "output": "1" }, { "input": "8", "output": "3" }, { "input": "10", "output": "4" }, { "input": "100000000000000000", "output": "33333333333333334" }, { "input...
1,584,514,619
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
216
0
from math import ceil n=int(input()) k=1 while pow(3, k)<n and n%pow(3, k)==0: k+=1 print(ceil(n/pow(3, k)))
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Gerald has been selling state secrets at leisure. All the secrets cost the same: *n* marks. The state which secrets Gerald is selling, has no paper money, only coins. But there are coins of all positive integer denominations that ...
```python from math import ceil n=int(input()) k=1 while pow(3, k)<n and n%pow(3, k)==0: k+=1 print(ceil(n/pow(3, k))) ```
0
780
A
Andryusha and Socks
PROGRAMMING
800
[ "implementation" ]
null
null
Andryusha is an orderly boy and likes to keep things in their place. Today he faced a problem to put his socks in the wardrobe. He has *n* distinct pairs of socks which are initially in a bag. The pairs are numbered from 1 to *n*. Andryusha wants to put paired socks together and put them in the wardrobe. He takes the ...
The first line contains the single integer *n* (1<=≤<=*n*<=≤<=105) — the number of sock pairs. The second line contains 2*n* integers *x*1,<=*x*2,<=...,<=*x*2*n* (1<=≤<=*x**i*<=≤<=*n*), which describe the order in which Andryusha took the socks from the bag. More precisely, *x**i* means that the *i*-th sock Andryusha ...
Print single integer — the maximum number of socks that were on the table at the same time.
[ "1\n1 1\n", "3\n2 1 1 3 2 3\n" ]
[ "1\n", "2\n" ]
In the first example Andryusha took a sock from the first pair and put it on the table. Then he took the next sock which is from the first pair as well, so he immediately puts both socks to the wardrobe. Thus, at most one sock was on the table at the same time. In the second example Andryusha behaved as follows: - ...
500
[ { "input": "1\n1 1", "output": "1" }, { "input": "3\n2 1 1 3 2 3", "output": "2" }, { "input": "5\n5 1 3 2 4 3 1 2 4 5", "output": "5" }, { "input": "10\n4 2 6 3 4 8 7 1 1 5 2 10 6 8 3 5 10 9 9 7", "output": "6" }, { "input": "50\n30 47 31 38 37 50 36 43 9 23 2 2 ...
1,610,468,906
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
61
307,200
n = int(input()) a = list(map(int, input().split())) b = a[:] count = 0 for k in range(len(a)): n1 = a[k] c = 0 for m in range(k): if a[m] != 0: c += 1 n2 = b[m] if n1 == n2: a[m] = 0 a[k] = 0 b[m] = 0 b...
Title: Andryusha and Socks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andryusha is an orderly boy and likes to keep things in their place. Today he faced a problem to put his socks in the wardrobe. He has *n* distinct pairs of socks which are initially in a bag. The pairs are numbere...
```python n = int(input()) a = list(map(int, input().split())) b = a[:] count = 0 for k in range(len(a)): n1 = a[k] c = 0 for m in range(k): if a[m] != 0: c += 1 n2 = b[m] if n1 == n2: a[m] = 0 a[k] = 0 b[m] = 0 ...
0
938
A
Word Correction
PROGRAMMING
800
[ "implementation" ]
null
null
Victor tries to write his own text editor, with word correction included. However, the rules of word correction are really strange. Victor thinks that if a word contains two consecutive vowels, then it's kinda weird and it needs to be replaced. So the word corrector works in such a way: as long as there are two consec...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the number of letters in word *s* before the correction. The second line contains a string *s* consisting of exactly *n* lowercase Latin letters — the word before the correction.
Output the word *s* after the correction.
[ "5\nweird\n", "4\nword\n", "5\naaeaa\n" ]
[ "werd\n", "word\n", "a\n" ]
Explanations of the examples: 1. There is only one replace: weird <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> werd;1. No replace needed since there are no two consecutive vowels;1. aaeaa <i...
0
[ { "input": "5\nweird", "output": "werd" }, { "input": "4\nword", "output": "word" }, { "input": "5\naaeaa", "output": "a" }, { "input": "100\naaaaabbbbboyoyoyoyoyacadabbbbbiuiufgiuiuaahjabbbklboyoyoyoyoyaaaaabbbbbiuiuiuiuiuaaaaabbbbbeyiyuyzyw", "output": "abbbbbocadabbbbb...
1,608,637,388
788
Python 3
OK
TESTS
49
109
0
n = input() s = input() vows = ["a", "e", "i", "o", "u", "y"] s_new = '' if s[0] in vows: s_new = s[0] for char in s: if char not in vows: s_new += char else: if s_new[-1] not in vows: s_new += char print(s_new)
Title: Word Correction Time Limit: None seconds Memory Limit: None megabytes Problem Description: Victor tries to write his own text editor, with word correction included. However, the rules of word correction are really strange. Victor thinks that if a word contains two consecutive vowels, then it's kinda weird an...
```python n = input() s = input() vows = ["a", "e", "i", "o", "u", "y"] s_new = '' if s[0] in vows: s_new = s[0] for char in s: if char not in vows: s_new += char else: if s_new[-1] not in vows: s_new += char print(s_new) ```
3
507
B
Amr and Pins
PROGRAMMING
1,400
[ "geometry", "math" ]
null
null
Amr loves Geometry. One day he came up with a very interesting problem. Amr has a circle of radius *r* and center in point (*x*,<=*y*). He wants the circle center to be in new position (*x*',<=*y*'). In one step Amr can put a pin to the border of the circle in a certain point, then rotate the circle around that pin b...
Input consists of 5 space-separated integers *r*, *x*, *y*, *x*' *y*' (1<=≤<=*r*<=≤<=105, <=-<=105<=≤<=*x*,<=*y*,<=*x*',<=*y*'<=≤<=105), circle radius, coordinates of original center of the circle and coordinates of destination center of the circle respectively.
Output a single integer — minimum number of steps required to move the center of the circle to the destination point.
[ "2 0 0 0 4\n", "1 1 1 4 4\n", "4 5 6 5 6\n" ]
[ "1\n", "3\n", "0\n" ]
In the first sample test the optimal way is to put a pin at point (0, 2) and rotate the circle by 180 degrees counter-clockwise (or clockwise, no matter). <img class="tex-graphics" src="https://espresso.codeforces.com/4e40fd4cc24a2050a0488aa131e6244369328039.png" style="max-width: 100.0%;max-height: 100.0%;"/>
1,000
[ { "input": "2 0 0 0 4", "output": "1" }, { "input": "1 1 1 4 4", "output": "3" }, { "input": "4 5 6 5 6", "output": "0" }, { "input": "10 20 0 40 0", "output": "1" }, { "input": "9 20 0 40 0", "output": "2" }, { "input": "5 -1 -6 -5 1", "output": "...
1,569,574,193
2,147,483,647
Python 3
OK
TESTS
37
139
0
import math g=input() r,x,y,X,Y=[int(x) for x in g.split()] d=math.sqrt((X-x)**2+(Y-y)**2) l=1 if d==0: print("0") elif (2*r)>=d: print("1") else: while (2*r)<d: l+=1 d=d-2*r print(l)
Title: Amr and Pins Time Limit: None seconds Memory Limit: None megabytes Problem Description: Amr loves Geometry. One day he came up with a very interesting problem. Amr has a circle of radius *r* and center in point (*x*,<=*y*). He wants the circle center to be in new position (*x*',<=*y*'). In one step Amr can ...
```python import math g=input() r,x,y,X,Y=[int(x) for x in g.split()] d=math.sqrt((X-x)**2+(Y-y)**2) l=1 if d==0: print("0") elif (2*r)>=d: print("1") else: while (2*r)<d: l+=1 d=d-2*r print(l) ```
3
185
A
Plant
PROGRAMMING
1,300
[ "math" ]
null
null
Dwarfs have planted a very interesting plant, which is a triangle directed "upwards". This plant has an amusing feature. After one year a triangle plant directed "upwards" divides into four triangle plants: three of them will point "upwards" and one will point "downwards". After another year, each triangle plant divide...
The first line contains a single integer *n* (0<=≤<=*n*<=≤<=1018) — the number of full years when the plant grew. Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specifier.
Print a single integer — the remainder of dividing the number of plants that will point "upwards" in *n* years by 1000000007 (109<=+<=7).
[ "1\n", "2\n" ]
[ "3\n", "10\n" ]
The first test sample corresponds to the second triangle on the figure in the statement. The second test sample corresponds to the third one.
500
[ { "input": "1", "output": "3" }, { "input": "2", "output": "10" }, { "input": "385599124", "output": "493875375" }, { "input": "989464295", "output": "31966163" }, { "input": "376367012", "output": "523204186" }, { "input": "529357306", "output": "...
1,615,714,729
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
122
0
mod = 1000000007 n = int(input()) h = pow(2, n, mod) print(((h) * (h + 1) % mod)//2)
Title: Plant Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dwarfs have planted a very interesting plant, which is a triangle directed "upwards". This plant has an amusing feature. After one year a triangle plant directed "upwards" divides into four triangle plants: three of them will poi...
```python mod = 1000000007 n = int(input()) h = pow(2, n, mod) print(((h) * (h + 1) % mod)//2) ```
0
681
A
A Good Contest
PROGRAMMING
800
[ "implementation" ]
null
null
Codeforces user' handle color depends on his rating — it is red if his rating is greater or equal to 2400; it is orange if his rating is less than 2400 but greater or equal to 2200, etc. Each time participant takes part in a rated contest, his rating is changed depending on his performance. Anton wants the color of hi...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of participants Anton has outscored in this contest . The next *n* lines describe participants results: the *i*-th of them consists of a participant handle *name**i* and two integers *before**i* and *after**i* (<=-<=4000<=≤<=*be...
Print «YES» (quotes for clarity), if Anton has performed good in the contest and «NO» (quotes for clarity) otherwise.
[ "3\nBurunduk1 2526 2537\nBudAlNik 2084 2214\nsubscriber 2833 2749\n", "3\nApplejack 2400 2400\nFluttershy 2390 2431\nPinkie_Pie -2500 -2450\n" ]
[ "YES", "NO" ]
In the first sample, Anton has outscored user with handle Burunduk1, whose handle was colored red before the contest and his rating has increased after the contest. In the second sample, Applejack's rating has not increased after the contest, while both Fluttershy's and Pinkie_Pie's handles were not colored red before...
500
[ { "input": "3\nBurunduk1 2526 2537\nBudAlNik 2084 2214\nsubscriber 2833 2749", "output": "YES" }, { "input": "3\nApplejack 2400 2400\nFluttershy 2390 2431\nPinkie_Pie -2500 -2450", "output": "NO" }, { "input": "1\nDb -3373 3591", "output": "NO" }, { "input": "5\nQ2bz 960 2342...
1,593,980,866
2,147,483,647
PyPy 3
OK
TESTS
60
155
20,172,800
import sys numCases = int(input()) isGood = False for i in range(0, numCases): inputArray = input().split(' ') score1 = int(inputArray[1]) score2 = int(inputArray[2]) if score1 >= 2400 and score2 > score1: isGood = True if isGood: print("YES") else: print("NO")
Title: A Good Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Codeforces user' handle color depends on his rating — it is red if his rating is greater or equal to 2400; it is orange if his rating is less than 2400 but greater or equal to 2200, etc. Each time participant takes part ...
```python import sys numCases = int(input()) isGood = False for i in range(0, numCases): inputArray = input().split(' ') score1 = int(inputArray[1]) score2 = int(inputArray[2]) if score1 >= 2400 and score2 > score1: isGood = True if isGood: print("YES") else: print("NO"...
3
469
A
I Wanna Be the Guy
PROGRAMMING
800
[ "greedy", "implementation" ]
null
null
There is a game called "I Wanna Be the Guy", consisting of *n* levels. Little X and his friend Little Y are addicted to the game. Each of them wants to pass the whole game. Little X can pass only *p* levels of the game. And Little Y can pass only *q* levels of the game. You are given the indices of levels Little X can...
The first line contains a single integer *n* (1<=≤<=<=*n*<=≤<=100). The next line contains an integer *p* (0<=≤<=*p*<=≤<=*n*) at first, then follows *p* distinct integers *a*1,<=*a*2,<=...,<=*a**p* (1<=≤<=*a**i*<=≤<=*n*). These integers denote the indices of levels Little X can pass. The next line contains the levels...
If they can pass all the levels, print "I become the guy.". If it's impossible, print "Oh, my keyboard!" (without the quotes).
[ "4\n3 1 2 3\n2 2 4\n", "4\n3 1 2 3\n2 2 3\n" ]
[ "I become the guy.\n", "Oh, my keyboard!\n" ]
In the first sample, Little X can pass levels [1 2 3], and Little Y can pass level [2 4], so they can pass all the levels both. In the second sample, no one can pass level 4.
500
[ { "input": "4\n3 1 2 3\n2 2 4", "output": "I become the guy." }, { "input": "4\n3 1 2 3\n2 2 3", "output": "Oh, my keyboard!" }, { "input": "10\n5 8 6 1 5 4\n6 1 3 2 9 4 6", "output": "Oh, my keyboard!" }, { "input": "10\n8 8 10 7 3 1 4 2 6\n8 9 5 10 3 7 2 4 8", "output":...
1,691,433,471
2,147,483,647
Python 3
OK
TESTS
29
46
0
n = int(input()) x = input()[1:] y = input()[1:] xy = x+y if all([str(i) in xy for i in range(1, n+1)]): print('I become the guy.') else: print('Oh, my keyboard!')
Title: I Wanna Be the Guy Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is a game called "I Wanna Be the Guy", consisting of *n* levels. Little X and his friend Little Y are addicted to the game. Each of them wants to pass the whole game. Little X can pass only *p* levels of the g...
```python n = int(input()) x = input()[1:] y = input()[1:] xy = x+y if all([str(i) in xy for i in range(1, n+1)]): print('I become the guy.') else: print('Oh, my keyboard!') ```
3
509
A
Maximum in Table
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
An *n*<=×<=*n* table *a* is defined as follows: - The first row and the first column contain ones, that is: *a**i*,<=1<==<=*a*1,<=*i*<==<=1 for all *i*<==<=1,<=2,<=...,<=*n*. - Each of the remaining numbers in the table is equal to the sum of the number above it and the number to the left of it. In other words, the ...
The only line of input contains a positive integer *n* (1<=≤<=*n*<=≤<=10) — the number of rows and columns of the table.
Print a single line containing a positive integer *m* — the maximum value in the table.
[ "1\n", "5\n" ]
[ "1", "70" ]
In the second test the rows of the table look as follows:
0
[ { "input": "1", "output": "1" }, { "input": "5", "output": "70" }, { "input": "2", "output": "2" }, { "input": "3", "output": "6" }, { "input": "4", "output": "20" }, { "input": "6", "output": "252" }, { "input": "7", "output": "924" ...
1,629,025,236
2,147,483,647
Python 3
OK
TESTS
10
62
6,963,200
def main(n): n = int(n) mas = [] for i in range(n): mas.append([1]*n) #print(mas) for i in range(1,n): for j in range(1,n): mas[i][j] = mas[i-1][j] + mas[i][j-1] #for i in range(n): #mas[0][i] = 1 return mas[-1][-1] print(main(input()...
Title: Maximum in Table Time Limit: None seconds Memory Limit: None megabytes Problem Description: An *n*<=×<=*n* table *a* is defined as follows: - The first row and the first column contain ones, that is: *a**i*,<=1<==<=*a*1,<=*i*<==<=1 for all *i*<==<=1,<=2,<=...,<=*n*. - Each of the remaining numbers in the t...
```python def main(n): n = int(n) mas = [] for i in range(n): mas.append([1]*n) #print(mas) for i in range(1,n): for j in range(1,n): mas[i][j] = mas[i-1][j] + mas[i][j-1] #for i in range(n): #mas[0][i] = 1 return mas[-1][-1] print(ma...
3
621
A
Wet Shark and Odd and Even
PROGRAMMING
900
[ "implementation" ]
null
null
Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, that if Wet Shark uses no integers from the *n* integers, the sum is an even integer 0.
The first line of the input contains one integer, *n* (1<=≤<=*n*<=≤<=100<=000). The next line contains *n* space separated integers given to Wet Shark. Each of these integers is in range from 1 to 109, inclusive.
Print the maximum possible even sum that can be obtained if we use some of the given integers.
[ "3\n1 2 3\n", "5\n999999999 999999999 999999999 999999999 999999999\n" ]
[ "6", "3999999996" ]
In the first sample, we can simply take all three integers for a total sum of 6. In the second sample Wet Shark should take any four out of five integers 999 999 999.
500
[ { "input": "3\n1 2 3", "output": "6" }, { "input": "5\n999999999 999999999 999999999 999999999 999999999", "output": "3999999996" }, { "input": "1\n1", "output": "0" }, { "input": "15\n39 52 88 78 46 95 84 98 55 3 68 42 6 18 98", "output": "870" }, { "input": "15\...
1,578,372,713
2,147,483,647
Python 3
OK
TESTS
87
171
8,499,200
n = int(input()) a = [int(x) for x in input().split()] if(sum(a) % 2 ==0): print(sum(a)) else: x =[] for i in a: if i % 2 !=0: x.append(i) print(sum(a) - min(x))
Title: Wet Shark and Odd and Even Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, th...
```python n = int(input()) a = [int(x) for x in input().split()] if(sum(a) % 2 ==0): print(sum(a)) else: x =[] for i in a: if i % 2 !=0: x.append(i) print(sum(a) - min(x)) ```
3
148
C
Terse princess
PROGRAMMING
1,700
[ "constructive algorithms", "greedy" ]
null
null
«Next please», — the princess called and cast an estimating glance at the next groom. The princess intends to choose the most worthy groom, this is, the richest one. Whenever she sees a groom who is more rich than each of the previous ones, she says a measured «Oh...». Whenever the groom is richer than all previous on...
The only line of input data contains three integer numbers *n*,<=*a* and *b* (1<=≤<=*n*<=≤<=100,<=0<=≤<=*a*,<=*b*<=≤<=15,<=*n*<=&gt;<=*a*<=+<=*b*), separated with single spaces.
Output any sequence of integers *t*1,<=*t*2,<=...,<=*t**n*, where *t**i* (1<=≤<=*t**i*<=≤<=50000) is the fortune of *i*-th groom, that satisfies the given constraints. If no sequence exists that would satisfy all the requirements, output a single number -1.
[ "10 2 3\n", "5 0 0\n" ]
[ "5 1 3 6 16 35 46 4 200 99", "10 10 6 6 5" ]
Let's have a closer look at the answer for the first sample test. - The princess said «Oh...» (highlighted in bold): 5 1 3 6 16 35 46 4 200 99. - The princess exclaimed «Wow!» (highlighted in bold): 5 1 3 6 16 35 46 4 200 99.
1,000
[ { "input": "10 2 3", "output": "1 2 4 8 9 10 10 10 10 10 " }, { "input": "5 0 0", "output": "1 1 1 1 1 " }, { "input": "5 2 2", "output": "1 2 4 5 6 " }, { "input": "6 2 2", "output": "1 2 4 5 6 6 " }, { "input": "10 9 0", "output": "-1" }, { "input": ...
1,689,947,840
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
n,a,b=map(int,input().split()) e=b if b>12: x=[1] d=1 r=1 else: x=[15] d=15 r=15 while b: b-=1 x.append(d+1) r+=d+1 d=r while a: x.append(r+1) a-=1 r+=1 while len(x)<n: x.append(1) if e==15: print(-1) else: pri...
Title: Terse princess Time Limit: None seconds Memory Limit: None megabytes Problem Description: «Next please», — the princess called and cast an estimating glance at the next groom. The princess intends to choose the most worthy groom, this is, the richest one. Whenever she sees a groom who is more rich than each ...
```python n,a,b=map(int,input().split()) e=b if b>12: x=[1] d=1 r=1 else: x=[15] d=15 r=15 while b: b-=1 x.append(d+1) r+=d+1 d=r while a: x.append(r+1) a-=1 r+=1 while len(x)<n: x.append(1) if e==15: print(-1) els...
0
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,513,782,184
2,147,483,647
Python 3
OK
TESTS
50
92
7,168,000
n=int(input()) m=[] p=list(map(int,input().split())) c=[0]+list(map(int,input().split())) m=[1]+[list() for i in range(n)] for i in range(n-1): m[p[i]].append(i+2) stack=[[1,c[1]]] k=1 while stack: x,col=stack.pop(0) for i in m[x]: if c[i]!=col: k+=1 stack.append([i...
Title: Coloring a Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a rooted tree with *n* vertices. The vertices are numbered from 1 to *n*, the root is the vertex number 1. Each vertex has a color, let's denote the color of vertex *v* by *c**v*. Initially *c**v*<==<=0. ...
```python n=int(input()) m=[] p=list(map(int,input().split())) c=[0]+list(map(int,input().split())) m=[1]+[list() for i in range(n)] for i in range(n-1): m[p[i]].append(i+2) stack=[[1,c[1]]] k=1 while stack: x,col=stack.pop(0) for i in m[x]: if c[i]!=col: k+=1 stack...
3
225
B
Well-known Numbers
PROGRAMMING
1,600
[ "binary search", "greedy", "number theory" ]
null
null
Numbers *k*-bonacci (*k* is integer, *k*<=&gt;<=1) are a generalization of Fibonacci numbers and are determined as follows: - *F*(*k*,<=*n*)<==<=0, for integer *n*, 1<=≤<=*n*<=&lt;<=*k*; - *F*(*k*,<=*k*)<==<=1; - *F*(*k*,<=*n*)<==<=*F*(*k*,<=*n*<=-<=1)<=+<=*F*(*k*,<=*n*<=-<=2)<=+<=...<=+<=*F*(*k*,<=*n*<=-<=*k*), fo...
The first line contains two integers *s* and *k* (1<=≤<=*s*,<=*k*<=≤<=109; *k*<=&gt;<=1).
In the first line print an integer *m* (*m*<=≥<=2) that shows how many numbers are in the found representation. In the second line print *m* distinct integers *a*1,<=*a*2,<=...,<=*a**m*. Each printed integer should be a *k*-bonacci number. The sum of printed integers must equal *s*. It is guaranteed that the answer ex...
[ "5 2\n", "21 5\n" ]
[ "3\n0 2 3\n", "3\n4 1 16\n" ]
none
1,000
[ { "input": "5 2", "output": "3\n0 2 3" }, { "input": "21 5", "output": "3\n4 1 16" }, { "input": "1 1000", "output": "2\n1 0 " }, { "input": "1000000000 1000000000", "output": "14\n536870912 268435456 134217728 33554432 16777216 8388608 1048576 524288 131072 32768 16384 2...
1,596,957,948
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
3
2,000
33,996,800
def arr(s,k): x=[] n=0 while(F(k,n)<=s): x.append(F(k,n)) n+=1 return x def F(k,n): if n<k: return 0 elif n==k: return 1 else: return g(k,n) def g(k,n): sumi=0 for z in range(1,k+1): sumi+=F(k,n-z) return sumi s,k=l...
Title: Well-known Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Numbers *k*-bonacci (*k* is integer, *k*<=&gt;<=1) are a generalization of Fibonacci numbers and are determined as follows: - *F*(*k*,<=*n*)<==<=0, for integer *n*, 1<=≤<=*n*<=&lt;<=*k*; - *F*(*k*,<=*k*)<==<=1; - ...
```python def arr(s,k): x=[] n=0 while(F(k,n)<=s): x.append(F(k,n)) n+=1 return x def F(k,n): if n<k: return 0 elif n==k: return 1 else: return g(k,n) def g(k,n): sumi=0 for z in range(1,k+1): sumi+=F(k,n-z) return s...
0
989
A
A Blend of Springtime
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
"What a pity it's already late spring," sighs Mino with regret, "one more drizzling night and they'd be gone." "But these blends are at their best, aren't they?" Absorbed in the landscape, Kanno remains optimistic. The landscape can be expressed as a row of consecutive cells, each of which either contains a flower o...
The first and only line of input contains a non-empty string $s$ consisting of uppercase English letters 'A', 'B', 'C' and characters '.' (dots) only ($\lvert s \rvert \leq 100$) — denoting cells containing an amber flower, a buff one, a canary yellow one, and no flowers, respectively.
Output "Yes" if it's possible that all three colours appear in some cell, and "No" otherwise. You can print each letter in any case (upper or lower).
[ ".BAC.\n", "AA..CB\n" ]
[ "Yes\n", "No\n" ]
In the first example, the buff and canary yellow flowers can leave their petals in the central cell, blending all three colours in it. In the second example, it's impossible to satisfy the requirement because there is no way that amber and buff meet in any cell.
500
[ { "input": ".BAC.", "output": "Yes" }, { "input": "AA..CB", "output": "No" }, { "input": ".", "output": "No" }, { "input": "ACB.AAAAAA", "output": "Yes" }, { "input": "B.BC.BBBCA", "output": "Yes" }, { "input": "BA..CAB..B", "output": "Yes" }, ...
1,600,165,723
523
Python 3
OK
TESTS
37
187
1,638,400
from collections import Counter import string import math import sys def array_int(): return [int(i) for i in sys.stdin.readline().split()] def vary(number_of_variables): if number_of_variables==1: return int(sys.stdin.readline()) if number_of_variables>=2: return map(int,sys.stdin...
Title: A Blend of Springtime Time Limit: None seconds Memory Limit: None megabytes Problem Description: "What a pity it's already late spring," sighs Mino with regret, "one more drizzling night and they'd be gone." "But these blends are at their best, aren't they?" Absorbed in the landscape, Kanno remains optimisti...
```python from collections import Counter import string import math import sys def array_int(): return [int(i) for i in sys.stdin.readline().split()] def vary(number_of_variables): if number_of_variables==1: return int(sys.stdin.readline()) if number_of_variables>=2: return map(int...
3
527
B
Error Correct System
PROGRAMMING
1,500
[ "greedy" ]
null
null
Ford Prefect got a job as a web developer for a small company that makes towels. His current work task is to create a search engine for the website of the company. During the development process, he needs to write a subroutine for comparing strings *S* and *T* of equal length to be "similar". After a brief search on th...
The first line contains integer *n* (1<=≤<=*n*<=≤<=200<=000) — the length of strings *S* and *T*. The second line contains string *S*. The third line contains string *T*. Each of the lines only contains lowercase Latin letters.
In the first line, print number *x* — the minimum possible Hamming distance between strings *S* and *T* if you swap at most one pair of letters in *S*. In the second line, either print the indexes *i* and *j* (1<=≤<=*i*,<=*j*<=≤<=*n*, *i*<=≠<=*j*), if reaching the minimum possible distance is possible by swapping lett...
[ "9\npergament\npermanent\n", "6\nwookie\ncookie\n", "4\npetr\negor\n", "6\ndouble\nbundle\n" ]
[ "1\n4 6\n", "1\n-1 -1\n", "2\n1 2\n", "2\n4 1\n" ]
In the second test it is acceptable to print *i* = 2, *j* = 3.
1,000
[ { "input": "9\npergament\npermanent", "output": "1\n4 6" }, { "input": "6\nwookie\ncookie", "output": "1\n-1 -1" }, { "input": "4\npetr\negor", "output": "2\n1 2" }, { "input": "6\ndouble\nbundle", "output": "2\n4 1" }, { "input": "1\na\na", "output": "0\n-1 -...
1,426,701,726
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
def getInput() : n = int(input()) recup1 = str(input()) recup2 = str(input()) mot1 = [] mot2 = [] for i in range(n) : mot1.append(recup1[i]) mot2.append(recup2[i]) return n, mot1, mot2 def solve(n, mot1, mot2) : hammingMinimum = 0 besti = -1 bestj = -1 delete = [] nbDelete = 0 for a in range(n) : i...
Title: Error Correct System Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ford Prefect got a job as a web developer for a small company that makes towels. His current work task is to create a search engine for the website of the company. During the development process, he needs to write ...
```python def getInput() : n = int(input()) recup1 = str(input()) recup2 = str(input()) mot1 = [] mot2 = [] for i in range(n) : mot1.append(recup1[i]) mot2.append(recup2[i]) return n, mot1, mot2 def solve(n, mot1, mot2) : hammingMinimum = 0 besti = -1 bestj = -1 delete = [] nbDelete = 0 for a in rang...
0
447
B
DZY Loves Strings
PROGRAMMING
1,000
[ "greedy", "implementation" ]
null
null
DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter *c* DZY knows its value *w**c*. For each special string *s*<==<=*s*1*s*2... *s*|*s*| (|*s*| is the length of the string) he represents its value with a function *f*(*s*), where Now DZY has a string *s*. He wants to in...
The first line contains a single string *s* (1<=≤<=|*s*|<=≤<=103). The second line contains a single integer *k* (0<=≤<=*k*<=≤<=103). The third line contains twenty-six integers from *w**a* to *w**z*. Each such number is non-negative and doesn't exceed 1000.
Print a single integer — the largest possible value of the resulting string DZY could get.
[ "abc\n3\n1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n" ]
[ "41\n" ]
In the test sample DZY can obtain "abcbbc", *value* = 1·1 + 2·2 + 3·2 + 4·2 + 5·2 + 6·2 = 41.
1,000
[ { "input": "abc\n3\n1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1", "output": "41" }, { "input": "mmzhr\n3\n443 497 867 471 195 670 453 413 579 466 553 881 847 642 269 996 666 702 487 209 257 741 974 133 519 453", "output": "29978" }, { "input": "ajeeseerqnpaujubmajpibxrccazaawetyw...
1,560,759,927
2,147,483,647
Python 3
OK
TESTS
24
124
0
# import sys # sys.stdin=open("input.in",'r') # sys.stdout=open("out.out",'w') x=input() n=int(input()) s=list(map(int,input().split())) v=0 for i in range(len(x)): m=ord(x[i])-97 v+=(i+1)*s[m] s.sort() i+=2 while n: v+=i*s[-1] n-=1 i+=1 print(v)
Title: DZY Loves Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter *c* DZY knows its value *w**c*. For each special string *s*<==<=*s*1*s*2... *s*|*s*| (|*s*| is the length of the str...
```python # import sys # sys.stdin=open("input.in",'r') # sys.stdout=open("out.out",'w') x=input() n=int(input()) s=list(map(int,input().split())) v=0 for i in range(len(x)): m=ord(x[i])-97 v+=(i+1)*s[m] s.sort() i+=2 while n: v+=i*s[-1] n-=1 i+=1 print(v) ```
3
447
B
DZY Loves Strings
PROGRAMMING
1,000
[ "greedy", "implementation" ]
null
null
DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter *c* DZY knows its value *w**c*. For each special string *s*<==<=*s*1*s*2... *s*|*s*| (|*s*| is the length of the string) he represents its value with a function *f*(*s*), where Now DZY has a string *s*. He wants to in...
The first line contains a single string *s* (1<=≤<=|*s*|<=≤<=103). The second line contains a single integer *k* (0<=≤<=*k*<=≤<=103). The third line contains twenty-six integers from *w**a* to *w**z*. Each such number is non-negative and doesn't exceed 1000.
Print a single integer — the largest possible value of the resulting string DZY could get.
[ "abc\n3\n1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n" ]
[ "41\n" ]
In the test sample DZY can obtain "abcbbc", *value* = 1·1 + 2·2 + 3·2 + 4·2 + 5·2 + 6·2 = 41.
1,000
[ { "input": "abc\n3\n1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1", "output": "41" }, { "input": "mmzhr\n3\n443 497 867 471 195 670 453 413 579 466 553 881 847 642 269 996 666 702 487 209 257 741 974 133 519 453", "output": "29978" }, { "input": "ajeeseerqnpaujubmajpibxrccazaawetyw...
1,586,428,738
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
93
307,200
import math alph="abcdefghijklmnopqrstuvwxyz" #----------------------------------- s=str(input()) k=int(input()) w=list(map(int,input().split())) a=[max(w)]*k for i in range(len(s)): a.append(w[alph.index(s[i])]) E=0;a.sort() for i in range(len(s)+k): E+=(i+1)*a[i] print(E)
Title: DZY Loves Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter *c* DZY knows its value *w**c*. For each special string *s*<==<=*s*1*s*2... *s*|*s*| (|*s*| is the length of the str...
```python import math alph="abcdefghijklmnopqrstuvwxyz" #----------------------------------- s=str(input()) k=int(input()) w=list(map(int,input().split())) a=[max(w)]*k for i in range(len(s)): a.append(w[alph.index(s[i])]) E=0;a.sort() for i in range(len(s)+k): E+=(i+1)*a[i] print(E) ```
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,668,718,989
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
154
2,764,800
M=int(input()) N=int(input()) print((N*M)//2)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python M=int(input()) N=int(input()) print((N*M)//2) ```
-1