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
386
A
Second-Price Auction
PROGRAMMING
800
[ "implementation" ]
null
null
In this problem we consider a special type of an auction, which is called the second-price auction. As in regular auction *n* bidders place a bid which is price a bidder ready to pay. The auction is closed, that is, each bidder secretly informs the organizer of the auction price he is willing to pay. After that, the au...
The first line of the input contains *n* (2<=≤<=*n*<=≤<=1000) — number of bidders. The second line contains *n* distinct integer numbers *p*1,<=*p*2,<=... *p**n*, separated by single spaces (1<=≤<=*p**i*<=≤<=10000), where *p**i* stands for the price offered by the *i*-th bidder.
The single output line should contain two integers: index of the winner and the price he will pay. Indices are 1-based.
[ "2\n5 7\n", "3\n10 2 8\n", "6\n3 8 2 9 4 14\n" ]
[ "2 5\n", "1 8\n", "6 9\n" ]
none
500
[ { "input": "2\n5 7", "output": "2 5" }, { "input": "3\n10 2 8", "output": "1 8" }, { "input": "6\n3 8 2 9 4 14", "output": "6 9" }, { "input": "4\n4707 7586 4221 5842", "output": "2 5842" }, { "input": "5\n3304 4227 4869 6937 6002", "output": "4 6002" }, {...
1,679,055,346
2,147,483,647
Python 3
OK
TESTS
42
46
0
n=int(input()) l=list(map(int,input().split(' '))) m=max(l) n=l.index(m)+1 l.sort() print(n,l[len(l)-2])
Title: Second-Price Auction Time Limit: None seconds Memory Limit: None megabytes Problem Description: In this problem we consider a special type of an auction, which is called the second-price auction. As in regular auction *n* bidders place a bid which is price a bidder ready to pay. The auction is closed, that is...
```python n=int(input()) l=list(map(int,input().split(' '))) m=max(l) n=l.index(m)+1 l.sort() print(n,l[len(l)-2]) ```
3
711
A
Bus to Udayland
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
ZS the Coder and Chris the Baboon are travelling to Udayland! To get there, they have to get on the special IOI bus. The IOI bus has *n* rows of seats. There are 4 seats in each row, and the seats are separated into pairs by a walkway. When ZS and Chris came, some places in the bus was already occupied. ZS and Chris a...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of rows of seats in the bus. Then, *n* lines follow. Each line contains exactly 5 characters, the first two of them denote the first pair of seats in the row, the third character denotes the walkway (it always equals '|') and t...
If it is possible for Chris and ZS to sit at neighbouring empty seats, print "YES" (without quotes) in the first line. In the next *n* lines print the bus configuration, where the characters in the pair of seats for Chris and ZS is changed with characters '+'. Thus the configuration should differ from the input one by ...
[ "6\nOO|OX\nXO|XX\nOX|OO\nXX|OX\nOO|OO\nOO|XX\n", "4\nXO|OX\nXO|XX\nOX|OX\nXX|OX\n", "5\nXX|XX\nXX|XX\nXO|OX\nXO|OO\nOX|XO\n" ]
[ "YES\n++|OX\nXO|XX\nOX|OO\nXX|OX\nOO|OO\nOO|XX\n", "NO\n", "YES\nXX|XX\nXX|XX\nXO|OX\nXO|++\nOX|XO\n" ]
Note that the following is an incorrect configuration for the first sample case because the seats must be in the same pair. O+|+X XO|XX OX|OO XX|OX OO|OO OO|XX
500
[ { "input": "6\nOO|OX\nXO|XX\nOX|OO\nXX|OX\nOO|OO\nOO|XX", "output": "YES\n++|OX\nXO|XX\nOX|OO\nXX|OX\nOO|OO\nOO|XX" }, { "input": "4\nXO|OX\nXO|XX\nOX|OX\nXX|OX", "output": "NO" }, { "input": "5\nXX|XX\nXX|XX\nXO|OX\nXO|OO\nOX|XO", "output": "YES\nXX|XX\nXX|XX\nXO|OX\nXO|++\nOX|XO" ...
1,606,897,077
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
93
204,800
n=int(input()) a=[] for i in range(n): q=[] q=raw_input() a.append(q) f=0 for i in range(n): if(a[i][0]=='O' and a[i][1]=='O'): f=1 a[i]='+'+'+'+a[i][2:] break if(a[i][-1]=='O' and a[i][-2]=='O'): f=1 a[i]=a[i][0:3]+'+'+'+' break if(f==...
Title: Bus to Udayland Time Limit: None seconds Memory Limit: None megabytes Problem Description: ZS the Coder and Chris the Baboon are travelling to Udayland! To get there, they have to get on the special IOI bus. The IOI bus has *n* rows of seats. There are 4 seats in each row, and the seats are separated into pai...
```python n=int(input()) a=[] for i in range(n): q=[] q=raw_input() a.append(q) f=0 for i in range(n): if(a[i][0]=='O' and a[i][1]=='O'): f=1 a[i]='+'+'+'+a[i][2:] break if(a[i][-1]=='O' and a[i][-2]=='O'): f=1 a[i]=a[i][0:3]+'+'+'+' bre...
-1
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,668,065,185
2,147,483,647
Python 3
OK
TESTS
32
92
0
n = int(input()) x = list(map(int, input().split())) two = 0 three = 0 c = [] for i in x: if i % 2 == 0: c += [2] else: c += [1] m = c.count(2) v = c.count(1) if m > v: print(c.index(1) + 1) else: print(c.index(2) + 1)
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 n = int(input()) x = list(map(int, input().split())) two = 0 three = 0 c = [] for i in x: if i % 2 == 0: c += [2] else: c += [1] m = c.count(2) v = c.count(1) if m > v: print(c.index(1) + 1) else: print(c.index(2) + 1) ```
3.977
658
A
Bear and Reverse Radewoosh
PROGRAMMING
800
[ "implementation" ]
null
null
Limak and Radewoosh are going to compete against each other in the upcoming algorithmic contest. They are equally skilled but they won't solve problems in the same order. There will be *n* problems. The *i*-th problem has initial score *p**i* and it takes exactly *t**i* minutes to solve it. Problems are sorted by diff...
The first line contains two integers *n* and *c* (1<=≤<=*n*<=≤<=50,<=1<=≤<=*c*<=≤<=1000) — the number of problems and the constant representing the speed of loosing points. The second line contains *n* integers *p*1,<=*p*2,<=...,<=*p**n* (1<=≤<=*p**i*<=≤<=1000,<=*p**i*<=&lt;<=*p**i*<=+<=1) — initial scores. The third...
Print "Limak" (without quotes) if Limak will get more points in total. Print "Radewoosh" (without quotes) if Radewoosh will get more points in total. Print "Tie" (without quotes) if Limak and Radewoosh will get the same total number of points.
[ "3 2\n50 85 250\n10 15 25\n", "3 6\n50 85 250\n10 15 25\n", "8 1\n10 20 30 40 50 60 70 80\n8 10 58 63 71 72 75 76\n" ]
[ "Limak\n", "Radewoosh\n", "Tie\n" ]
In the first sample, there are 3 problems. Limak solves them as follows: 1. Limak spends 10 minutes on the 1-st problem and he gets 50 - *c*·10 = 50 - 2·10 = 30 points. 1. Limak spends 15 minutes on the 2-nd problem so he submits it 10 + 15 = 25 minutes after the start of the contest. For the 2-nd problem he gets 85...
500
[ { "input": "3 2\n50 85 250\n10 15 25", "output": "Limak" }, { "input": "3 6\n50 85 250\n10 15 25", "output": "Radewoosh" }, { "input": "8 1\n10 20 30 40 50 60 70 80\n8 10 58 63 71 72 75 76", "output": "Tie" }, { "input": "4 1\n3 5 6 9\n1 2 4 8", "output": "Limak" }, {...
1,563,173,343
2,147,483,647
Python 3
OK
TESTS
29
109
0
# import sys # sys.stdin = open("test.in","r") # sys.stdout = open("test.out","w") n,k=map(int,input().split()) a=list(map(int,input().split())) b=list(map(int,input().split())) s1=0 s2=0 c=0 d=0 for i in range(n): c=c+b[i] s1=s1+max(0,a[i]-c*k) d=d+b[n-i-1] s2=s2+max(0,a[n-i-1]-d*k) if s1>s2: pri...
Title: Bear and Reverse Radewoosh Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak and Radewoosh are going to compete against each other in the upcoming algorithmic contest. They are equally skilled but they won't solve problems in the same order. There will be *n* problems. The *i*-...
```python # import sys # sys.stdin = open("test.in","r") # sys.stdout = open("test.out","w") n,k=map(int,input().split()) a=list(map(int,input().split())) b=list(map(int,input().split())) s1=0 s2=0 c=0 d=0 for i in range(n): c=c+b[i] s1=s1+max(0,a[i]-c*k) d=d+b[n-i-1] s2=s2+max(0,a[n-i-1]-d*k) if s1...
3
212
E
IT Restaurants
PROGRAMMING
1,500
[ "dfs and similar", "dp", "trees" ]
null
null
Сity N. has a huge problem with roads, food and IT-infrastructure. In total the city has *n* junctions, some pairs of them are connected by bidirectional roads. The road network consists of *n*<=-<=1 roads, you can get from any junction to any other one by these roads. Yes, you're right — the road network forms an undi...
The first input line contains integer *n* (3<=≤<=*n*<=≤<=5000) — the number of junctions in the city. Next *n*<=-<=1 lines list all roads one per line. Each road is given as a pair of integers *x**i*,<=*y**i* (1<=≤<=*x**i*,<=*y**i*<=≤<=*n*) — the indexes of connected junctions. Consider the junctions indexed from 1 to ...
Print on the first line integer *z* — the number of sought pairs. Then print all sought pairs (*a*,<=*b*) in the order of increasing of the first component *a*.
[ "5\n1 2\n2 3\n3 4\n4 5\n", "10\n1 2\n2 3\n3 4\n5 6\n6 7\n7 4\n8 9\n9 10\n10 4\n" ]
[ "3\n1 3\n2 2\n3 1\n", "6\n1 8\n2 7\n3 6\n6 3\n7 2\n8 1\n" ]
The figure below shows the answers to the first test case. The junctions with "iMac D0naldz" restaurants are marked red and "Burger Bing" restaurants are marked blue. <img class="tex-graphics" src="https://espresso.codeforces.com/acf0a2618a71a09921a44d636776197510b78cd4.png" style="max-width: 100.0%;max-height: 100.0%...
500
[ { "input": "5\n1 2\n2 3\n3 4\n4 5", "output": "3\n1 3\n2 2\n3 1" }, { "input": "10\n1 2\n2 3\n3 4\n5 6\n6 7\n7 4\n8 9\n9 10\n10 4", "output": "6\n1 8\n2 7\n3 6\n6 3\n7 2\n8 1" }, { "input": "3\n3 1\n2 1", "output": "1\n1 1" }, { "input": "4\n4 3\n4 1\n4 2", "output": "2\n...
1,651,317,343
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
31
0
import copy def __helper(initial_nodes, checked_nodes_b: set, matrix: list, n): queue_a = [] for el in initial_nodes: if el not in checked_nodes_b: queue_a.append(el) checked_nodes_a = set() while len(queue_a) > 0: cur_node_a = queue_a.pop(0) flag = False...
Title: IT Restaurants Time Limit: None seconds Memory Limit: None megabytes Problem Description: Сity N. has a huge problem with roads, food and IT-infrastructure. In total the city has *n* junctions, some pairs of them are connected by bidirectional roads. The road network consists of *n*<=-<=1 roads, you can get f...
```python import copy def __helper(initial_nodes, checked_nodes_b: set, matrix: list, n): queue_a = [] for el in initial_nodes: if el not in checked_nodes_b: queue_a.append(el) checked_nodes_a = set() while len(queue_a) > 0: cur_node_a = queue_a.pop(0) fl...
0
991
A
If at first you don't succeed...
PROGRAMMING
1,000
[ "implementation" ]
null
null
Each student eagerly awaits the day he would pass the exams successfully. Thus, Vasya was ready to celebrate, but, alas, he didn't pass it. However, many of Vasya's fellow students from the same group were more successful and celebrated after the exam. Some of them celebrated in the BugDonalds restaurant, some of them...
The first line contains four integers — $A$, $B$, $C$ and $N$ ($0 \leq A, B, C, N \leq 100$).
If a distribution of $N$ students exists in which $A$ students visited BugDonalds, $B$ — BeaverKing, $C$ — both of the restaurants and at least one student is left home (it is known that Vasya didn't pass the exam and stayed at home), output one integer — amount of students (including Vasya) who did not pass the exam. ...
[ "10 10 5 20\n", "2 2 0 4\n", "2 2 2 1\n" ]
[ "5", "-1", "-1" ]
The first sample describes following situation: $5$ only visited BugDonalds, $5$ students only visited BeaverKing, $5$ visited both of them and $5$ students (including Vasya) didn't pass the exam. In the second sample $2$ students only visited BugDonalds and $2$ only visited BeaverKing, but that means all $4$ students...
500
[ { "input": "10 10 5 20", "output": "5" }, { "input": "2 2 0 4", "output": "-1" }, { "input": "2 2 2 1", "output": "-1" }, { "input": "98 98 97 100", "output": "1" }, { "input": "1 5 2 10", "output": "-1" }, { "input": "5 1 2 10", "output": "-1" }...
1,653,146,551
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
4
77
0
#I = lambda: [int(i) for i in input().split()] #import io, os, sys #input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline # n = int(input()) # l1 = list(map(int,input().split())) # n,x = map(int,input().split()) # s = input() mod = 1000000007 # print("Case #"+str(_+1)+":",) from collections import de...
Title: If at first you don't succeed... Time Limit: None seconds Memory Limit: None megabytes Problem Description: Each student eagerly awaits the day he would pass the exams successfully. Thus, Vasya was ready to celebrate, but, alas, he didn't pass it. However, many of Vasya's fellow students from the same group w...
```python #I = lambda: [int(i) for i in input().split()] #import io, os, sys #input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline # n = int(input()) # l1 = list(map(int,input().split())) # n,x = map(int,input().split()) # s = input() mod = 1000000007 # print("Case #"+str(_+1)+":",) from collections...
0
914
H
Ember and Storm's Tree Game
PROGRAMMING
3,400
[ "combinatorics", "dp", "games", "trees" ]
null
null
Ember and Storm play a game. First, Ember picks a labelled tree *T* of *n* vertices, such that the degree of every vertex is at most *d*. Then, Storm picks two distinct vertices *u* and *v* in this tree and writes down the labels of the vertices in the path from *u* to *v* in a sequence *a*1,<=*a*2... *a**k*. Finally, ...
The input consists of a single line containing three integers *n*, *d* and *m* (2<=≤<=*n*<=≤<=200,<=1<=≤<=*d*<=&lt;<=*n*,<=1<=≤<=*m*<=≤<=2·109).
Print a single number  — the number of possible tuples if Ember and Storm play as described, modulo *m*.
[ "2 1 1000000007\n", "3 1 250\n", "3 2 100\n" ]
[ "4\n", "0\n", "36\n" ]
In the first sample case, there is only one possible tree. There are two possible paths, 1 to 2 and 2 to 1. For both paths, *i* can only be 1, and *op* can take both possibilities. Therefore, the answer is 4. In the second sample, there are no possible trees. In the third sample, there are three possible trees.
3,750
[]
1,692,998,472
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
15
0
print("_RANDOM_GUESS_1692998472.6295893")# 1692998472.6296082
Title: Ember and Storm's Tree Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ember and Storm play a game. First, Ember picks a labelled tree *T* of *n* vertices, such that the degree of every vertex is at most *d*. Then, Storm picks two distinct vertices *u* and *v* in this tree and ...
```python print("_RANDOM_GUESS_1692998472.6295893")# 1692998472.6296082 ```
0
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,574,151,428
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
216
0
def get_numlist(): list_in=list(input().split()) list_out=[] for k in list_in: list_out+=[int(k)] return list_out def main_check(n,list0): a=n list_num=list0 list_check=[] out=0 for i in range(a-1): k=list_num[i+1]/list_num[i] list_check+=[k] ...
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 def get_numlist(): list_in=list(input().split()) list_out=[] for k in list_in: list_out+=[int(k)] return list_out def main_check(n,list0): a=n list_num=list0 list_check=[] out=0 for i in range(a-1): k=list_num[i+1]/list_num[i] list_c...
0
996
A
Hit the Lottery
PROGRAMMING
800
[ "dp", "greedy" ]
null
null
Allen has a LOT of money. He has $n$ dollars in the bank. For security reasons, he wants to withdraw it in cash (we will not disclose the reasons here). The denominations for dollar bills are $1$, $5$, $10$, $20$, $100$. What is the minimum number of bills Allen could receive after withdrawing his entire balance?
The first and only line of input contains a single integer $n$ ($1 \le n \le 10^9$).
Output the minimum number of bills that Allen could receive.
[ "125\n", "43\n", "1000000000\n" ]
[ "3\n", "5\n", "10000000\n" ]
In the first sample case, Allen can withdraw this with a $100$ dollar bill, a $20$ dollar bill, and a $5$ dollar bill. There is no way for Allen to receive $125$ dollars in one or two bills. In the second sample case, Allen can withdraw two $20$ dollar bills and three $1$ dollar bills. In the third sample case, Allen...
500
[ { "input": "125", "output": "3" }, { "input": "43", "output": "5" }, { "input": "1000000000", "output": "10000000" }, { "input": "4", "output": "4" }, { "input": "5", "output": "1" }, { "input": "1", "output": "1" }, { "input": "74", "o...
1,693,922,376
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
46
0
a = 1 b = 5 c = 10 d = 20 e = 100 i = int(input()) if i >=10: counter =0 while i >= 100: i = i - 100 counter += 1 if i < 100: while i >= 20: counter += 1 i = i - 20 if i < 20: while i >= 10: counter += 1 i = i - 10 if i < 10: while ...
Title: Hit the Lottery Time Limit: None seconds Memory Limit: None megabytes Problem Description: Allen has a LOT of money. He has $n$ dollars in the bank. For security reasons, he wants to withdraw it in cash (we will not disclose the reasons here). The denominations for dollar bills are $1$, $5$, $10$, $20$, $100$...
```python a = 1 b = 5 c = 10 d = 20 e = 100 i = int(input()) if i >=10: counter =0 while i >= 100: i = i - 100 counter += 1 if i < 100: while i >= 20: counter += 1 i = i - 20 if i < 20: while i >= 10: counter += 1 i = i - 10 if i < 10: ...
0
560
A
Currency System in Geraldion
PROGRAMMING
1,000
[ "implementation", "sortings" ]
null
null
A magic island Geraldion, where Gerald lives, has its own currency system. It uses banknotes of several values. But the problem is, the system is not perfect and sometimes it happens that Geraldionians cannot express a certain sum of money with any set of banknotes. Of course, they can use any number of banknotes of ea...
The first line contains number *n* (1<=≤<=*n*<=≤<=1000) — the number of values of the banknotes that used in Geraldion. The second line contains *n* distinct space-separated numbers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=106) — the values of the banknotes.
Print a single line — the minimum unfortunate sum. If there are no unfortunate sums, print <=-<=1.
[ "5\n1 2 3 4 5\n" ]
[ "-1\n" ]
none
500
[ { "input": "5\n1 2 3 4 5", "output": "-1" }, { "input": "1\n2", "output": "1" }, { "input": "10\n371054 506438 397130 1 766759 208409 769264 549213 641270 771837", "output": "-1" }, { "input": "10\n635370 154890 909382 220996 276501 716105 538714 140162 171960 271264", "o...
1,595,730,179
2,147,483,647
PyPy 3
OK
TESTS
16
140
20,172,800
n = int(input()) l1 = [int(x) for x in input().split()] if 1 not in l1: print(1) else: print(-1)
Title: Currency System in Geraldion Time Limit: None seconds Memory Limit: None megabytes Problem Description: A magic island Geraldion, where Gerald lives, has its own currency system. It uses banknotes of several values. But the problem is, the system is not perfect and sometimes it happens that Geraldionians cann...
```python n = int(input()) l1 = [int(x) for x in input().split()] if 1 not in l1: print(1) else: print(-1) ```
3
961
B
Lecture Sleep
PROGRAMMING
1,200
[ "data structures", "dp", "implementation", "two pointers" ]
null
null
Your friend Mishka and you attend a calculus lecture. Lecture lasts *n* minutes. Lecturer tells *a**i* theorems during the *i*-th minute. Mishka is really interested in calculus, though it is so hard to stay awake for all the time of lecture. You are given an array *t* of Mishka's behavior. If Mishka is asleep during ...
The first line of the input contains two integer numbers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=105) — the duration of the lecture in minutes and the number of minutes you can keep Mishka awake. The second line of the input contains *n* integer numbers *a*1,<=*a*2,<=... *a**n* (1<=≤<=*a**i*<=≤<=104) — the number of theore...
Print only one integer — the maximum number of theorems Mishka will be able to write down if you use your technique only once to wake him up.
[ "6 3\n1 3 5 2 5 4\n1 1 0 1 0 0\n" ]
[ "16\n" ]
In the sample case the better way is to use the secret technique at the beginning of the third minute. Then the number of theorems Mishka will be able to write down will be equal to 16.
0
[ { "input": "6 3\n1 3 5 2 5 4\n1 1 0 1 0 0", "output": "16" }, { "input": "5 3\n1 9999 10000 10000 10000\n0 0 0 0 0", "output": "30000" }, { "input": "3 3\n10 10 10\n1 1 0", "output": "30" }, { "input": "1 1\n423\n0", "output": "423" }, { "input": "6 6\n1 3 5 2 5 4...
1,658,756,484
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
77
19,865,600
n, k = map(int, input().split()) a = list(map(int, input().split())) t = list(map(int, input().split())) l, r = 0, -1 count = 0 now = 0 noww = 0 ans = 0 while r < k - 1: r += 1 if t[r] == 0: # sleep now += a[r] else: # not_sleep noww += a[r] now += a[r] r -= 1 count = now - noww an...
Title: Lecture Sleep Time Limit: None seconds Memory Limit: None megabytes Problem Description: Your friend Mishka and you attend a calculus lecture. Lecture lasts *n* minutes. Lecturer tells *a**i* theorems during the *i*-th minute. Mishka is really interested in calculus, though it is so hard to stay awake for al...
```python n, k = map(int, input().split()) a = list(map(int, input().split())) t = list(map(int, input().split())) l, r = 0, -1 count = 0 now = 0 noww = 0 ans = 0 while r < k - 1: r += 1 if t[r] == 0: # sleep now += a[r] else: # not_sleep noww += a[r] now += a[r] r -= 1 count = now ...
0
141
A
Amusing Joke
PROGRAMMING
800
[ "implementation", "sortings", "strings" ]
null
null
So, the New Year holidays are over. Santa Claus and his colleagues can take a rest and have guests at last. When two "New Year and Christmas Men" meet, thear assistants cut out of cardboard the letters from the guest's name and the host's name in honor of this event. Then the hung the letters above the main entrance. O...
The input file consists of three lines: the first line contains the guest's name, the second line contains the name of the residence host and the third line contains letters in a pile that were found at the door in the morning. All lines are not empty and contain only uppercase Latin letters. The length of each line do...
Print "YES" without the quotes, if the letters in the pile could be permuted to make the names of the "New Year and Christmas Men". Otherwise, print "NO" without the quotes.
[ "SANTACLAUS\nDEDMOROZ\nSANTAMOROZDEDCLAUS\n", "PAPAINOEL\nJOULUPUKKI\nJOULNAPAOILELUPUKKI\n", "BABBONATALE\nFATHERCHRISTMAS\nBABCHRISTMASBONATALLEFATHER\n" ]
[ "YES\n", "NO\n", "NO\n" ]
In the first sample the letters written in the last line can be used to write the names and there won't be any extra letters left. In the second sample letter "P" is missing from the pile and there's an extra letter "L". In the third sample there's an extra letter "L".
500
[ { "input": "SANTACLAUS\nDEDMOROZ\nSANTAMOROZDEDCLAUS", "output": "YES" }, { "input": "PAPAINOEL\nJOULUPUKKI\nJOULNAPAOILELUPUKKI", "output": "NO" }, { "input": "BABBONATALE\nFATHERCHRISTMAS\nBABCHRISTMASBONATALLEFATHER", "output": "NO" }, { "input": "B\nA\nAB", "output": ...
1,690,050,908
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
8
92
0
dict_items = {} f = input() l = input() w = input() for i in f: if i in dict_items: dict_items[i] += 1 else: dict_items[i] = 1 for i in l: if i in dict_items: dict_items[i] += 1 else: dict_items[i] = 1 for x in w: if x not in dict_items or w.count...
Title: Amusing Joke Time Limit: None seconds Memory Limit: None megabytes Problem Description: So, the New Year holidays are over. Santa Claus and his colleagues can take a rest and have guests at last. When two "New Year and Christmas Men" meet, thear assistants cut out of cardboard the letters from the guest's nam...
```python dict_items = {} f = input() l = input() w = input() for i in f: if i in dict_items: dict_items[i] += 1 else: dict_items[i] = 1 for i in l: if i in dict_items: dict_items[i] += 1 else: dict_items[i] = 1 for x in w: if x not in dict_items ...
0
47
A
Triangular numbers
PROGRAMMING
800
[ "brute force", "math" ]
A. Triangular numbers
2
256
A triangular number is the number of dots in an equilateral triangle uniformly filled with dots. For example, three dots can be arranged in a triangle; thus three is a triangular number. The *n*-th triangular number is the number of dots in a triangle with *n* dots on a side. . You can learn more about these numbers fr...
The first line contains the single number *n* (1<=≤<=*n*<=≤<=500) — the given integer.
If the given integer is a triangular number output YES, otherwise output NO.
[ "1\n", "2\n", "3\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
500
[ { "input": "1", "output": "YES" }, { "input": "2", "output": "NO" }, { "input": "3", "output": "YES" }, { "input": "4", "output": "NO" }, { "input": "5", "output": "NO" }, { "input": "6", "output": "YES" }, { "input": "7", "output": "NO...
1,687,075,163
2,147,483,647
Python 3
OK
TESTS
71
92
0
i=int(input()) ans=0 j=1 while ans<=i: ans=(j*(j+1))//2 if ans==i: print("YES") break j+=1 else: print("NO")
Title: Triangular numbers Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A triangular number is the number of dots in an equilateral triangle uniformly filled with dots. For example, three dots can be arranged in a triangle; thus three is a triangular number. The *n*-th triangular number is t...
```python i=int(input()) ans=0 j=1 while ans<=i: ans=(j*(j+1))//2 if ans==i: print("YES") break j+=1 else: print("NO") ```
3.977
965
A
Paper Airplanes
PROGRAMMING
800
[ "math" ]
null
null
To make a paper airplane, one has to use a rectangular piece of paper. From a sheet of standard size you can make $s$ airplanes. A group of $k$ people decided to make $n$ airplanes each. They are going to buy several packs of paper, each of them containing $p$ sheets, and then distribute the sheets between the people....
The only line contains four integers $k$, $n$, $s$, $p$ ($1 \le k, n, s, p \le 10^4$) — the number of people, the number of airplanes each should make, the number of airplanes that can be made using one sheet and the number of sheets in one pack, respectively.
Print a single integer — the minimum number of packs they should buy.
[ "5 3 2 3\n", "5 3 100 1\n" ]
[ "4\n", "5\n" ]
In the first sample they have to buy $4$ packs of paper: there will be $12$ sheets in total, and giving $2$ sheets to each person is enough to suit everyone's needs. In the second sample they have to buy a pack for each person as they can't share sheets.
500
[ { "input": "5 3 2 3", "output": "4" }, { "input": "5 3 100 1", "output": "5" }, { "input": "10000 10000 1 1", "output": "100000000" }, { "input": "1 1 10000 10000", "output": "1" }, { "input": "300 300 21 23", "output": "196" }, { "input": "300 2 37 51...
1,626,877,134
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
6,656,000
[k,n,s,p]=map(int,input().split()) sheets=n//s if n%s !=0: sheets-=1 totsheets-sheets*k ans-totsheets//p if totsheets % p != 0: ans += 1 print(ans)
Title: Paper Airplanes Time Limit: None seconds Memory Limit: None megabytes Problem Description: To make a paper airplane, one has to use a rectangular piece of paper. From a sheet of standard size you can make $s$ airplanes. A group of $k$ people decided to make $n$ airplanes each. They are going to buy several p...
```python [k,n,s,p]=map(int,input().split()) sheets=n//s if n%s !=0: sheets-=1 totsheets-sheets*k ans-totsheets//p if totsheets % p != 0: ans += 1 print(ans) ```
-1
567
C
Geometric Progression
PROGRAMMING
1,700
[ "binary search", "data structures", "dp" ]
null
null
Polycarp loves geometric progressions very much. Since he was only three years old, he loves only the progressions of length three. He also has a favorite integer *k* and a sequence *a*, consisting of *n* integers. He wants to know how many subsequences of length three can be selected from *a*, so that they form a geo...
The first line of the input contains two integers, *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=2·105), showing how many numbers Polycarp's sequence has and his favorite number. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=109<=≤<=*a**i*<=≤<=109) — elements of the sequence.
Output a single number — the number of ways to choose a subsequence of length three, such that it forms a geometric progression with a common ratio *k*.
[ "5 2\n1 1 2 2 4\n", "3 1\n1 1 1\n", "10 3\n1 2 6 2 3 6 9 18 3 9\n" ]
[ "4", "1", "6" ]
In the first sample test the answer is four, as any of the two 1s can be chosen as the first element, the second element can be any of the 2s, and the third element of the subsequence must be equal to 4.
1,500
[ { "input": "5 2\n1 1 2 2 4", "output": "4" }, { "input": "3 1\n1 1 1", "output": "1" }, { "input": "10 3\n1 2 6 2 3 6 9 18 3 9", "output": "6" }, { "input": "20 2\n1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20", "output": "5" }, { "input": "5 3\n5 15 15 15 45...
1,697,424,917
2,147,483,647
Python 3
OK
TESTS
81
265
37,683,200
# https://codeforces.com/contest/567/problem/C n, k = map(int, input().split()) # n = how many numbers, k = Polycarp's favorite number a = list(map(int, input().split())) # a = the elements of the sequence pre_collection = {} # numbers and counts of that number, first iteration post_collection = {} # numbers an...
Title: Geometric Progression Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp loves geometric progressions very much. Since he was only three years old, he loves only the progressions of length three. He also has a favorite integer *k* and a sequence *a*, consisting of *n* integers...
```python # https://codeforces.com/contest/567/problem/C n, k = map(int, input().split()) # n = how many numbers, k = Polycarp's favorite number a = list(map(int, input().split())) # a = the elements of the sequence pre_collection = {} # numbers and counts of that number, first iteration post_collection = {} # ...
3
769
A
Year of University Entrance
PROGRAMMING
800
[ "*special", "implementation", "sortings" ]
null
null
There is the faculty of Computer Science in Berland. In the social net "TheContact!" for each course of this faculty there is the special group whose name equals the year of university entrance of corresponding course of students at the university. Each of students joins the group of his course and joins all groups f...
The first line contains the positive odd integer *n* (1<=≤<=*n*<=≤<=5) — the number of groups which Igor joined. The next line contains *n* distinct integers *a*1,<=*a*2,<=...,<=*a**n* (2010<=≤<=*a**i*<=≤<=2100) — years of student's university entrance for each group in which Igor is the member. It is guaranteed tha...
Print the year of Igor's university entrance.
[ "3\n2014 2016 2015\n", "1\n2050\n" ]
[ "2015\n", "2050\n" ]
In the first test the value *x* = 1. Igor entered the university in 2015. So he joined groups members of which are students who entered the university in 2014, 2015 and 2016. In the second test the value *x* = 0. Igor entered only the group which corresponds to the year of his university entrance.
500
[ { "input": "3\n2014 2016 2015", "output": "2015" }, { "input": "1\n2050", "output": "2050" }, { "input": "1\n2010", "output": "2010" }, { "input": "1\n2011", "output": "2011" }, { "input": "3\n2010 2011 2012", "output": "2011" }, { "input": "3\n2049 20...
1,488,631,389
2,589
Python 3
RUNTIME_ERROR
PRETESTS
0
46
4,608,000
n=int(input("Количество групп: ")) groups=[] for i in range(n): group=int(input("Год поступления: ")) groups.append(group) groups=sorted(groups) print(groups[n // 2])
Title: Year of University Entrance Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is the faculty of Computer Science in Berland. In the social net "TheContact!" for each course of this faculty there is the special group whose name equals the year of university entrance of correspond...
```python n=int(input("Количество групп: ")) groups=[] for i in range(n): group=int(input("Год поступления: ")) groups.append(group) groups=sorted(groups) print(groups[n // 2]) ```
-1
727
C
Guess the Array
PROGRAMMING
1,400
[ "constructive algorithms", "interactive", "math" ]
null
null
This is an interactive problem. You should use flush operation after each printed line. For example, in C++ you should use fflush(stdout), in Java you should use System.out.flush(), and in Pascal — flush(output). In this problem you should guess an array *a* which is unknown for you. The only information you have init...
none
none
[ "5\n \n9\n \n7\n \n9\n \n11\n \n6\n " ]
[ "? 1 5\n \n? 2 3\n \n? 4 1\n \n? 5 2\n \n? 3 4\n \n! 4 6 1 5 5" ]
The format of a test to make a hack is: - The first line contains an integer number *n* (3 ≤ *n* ≤ 5000) — the length of the array.- The second line contains *n* numbers *a*<sub class="lower-index">1</sub>, *a*<sub class="lower-index">2</sub>, ..., *a*<sub class="lower-index">*n*</sub> (1 ≤ *a*<sub class="lower-inde...
1,500
[ { "input": "5\n4 6 1 5 5", "output": "5 out of 5" }, { "input": "3\n1 1 1", "output": "3 out of 3" }, { "input": "4\n100 1 100 1", "output": "4 out of 4" }, { "input": "10\n9 5 10 7 4 4 8 5 10 5", "output": "10 out of 10" }, { "input": "3\n1 1 1", "output": "3...
1,585,368,090
2,147,483,647
Python 3
IDLENESS_LIMIT_EXCEEDED
TESTS
3
108
307,200
import sys n=int(input()) for i in range(1,n): print("?",i,i+1) print("?",1,3) sys.stdout.flush() l=[int(input()) for _ in range(n-1)] a_c=int(input()) b_c=l[0]-a_c b_a=l[1]-a_c b=l[0]+b_a b//=2 l[0]-=b l.insert(1,b) for i in range(2,n): l[i]-=l[i-1] print("!",*l)
Title: Guess the Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: This is an interactive problem. You should use flush operation after each printed line. For example, in C++ you should use fflush(stdout), in Java you should use System.out.flush(), and in Pascal — flush(output). In th...
```python import sys n=int(input()) for i in range(1,n): print("?",i,i+1) print("?",1,3) sys.stdout.flush() l=[int(input()) for _ in range(n-1)] a_c=int(input()) b_c=l[0]-a_c b_a=l[1]-a_c b=l[0]+b_a b//=2 l[0]-=b l.insert(1,b) for i in range(2,n): l[i]-=l[i-1] print("!",*l) ```
-1
166
E
Tetrahedron
PROGRAMMING
1,500
[ "dp", "math", "matrices" ]
null
null
You are given a tetrahedron. Let's mark its vertices with letters *A*, *B*, *C* and *D* correspondingly. An ant is standing in the vertex *D* of the tetrahedron. The ant is quite active and he wouldn't stay idle. At each moment of time he makes a step from one vertex to another one along some edge of the tetrahedron. ...
The first line contains the only integer *n* (1<=≤<=*n*<=≤<=107) — the required length of the cyclic path.
Print the only integer — the required number of ways modulo 1000000007 (109<=+<=7).
[ "2\n", "4\n" ]
[ "3\n", "21\n" ]
The required paths in the first sample are: - *D* - *A* - *D* - *D* - *B* - *D* - *D* - *C* - *D*
1,000
[ { "input": "2", "output": "3" }, { "input": "4", "output": "21" }, { "input": "1", "output": "0" }, { "input": "3", "output": "6" }, { "input": "5", "output": "60" }, { "input": "6", "output": "183" }, { "input": "7", "output": "546" ...
1,616,149,489
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
216
2,048,000
n = int(input()) # D A B C dp = [1, 0, 0, 0] mod = 1000000007 for i in range(1, n+1): dp1 = [] dp1[0] = (dp[1] + dp[2] + dp[3]) % mod dp1[1] = (dp[0] + dp[2] + dp[3]) % mod dp1[2] = (dp[0] + dp[1] + dp[3]) % mod dp1[3] = (dp[0] + dp[1] + dp[2]) % mod dp = dp1 print(dp[0]) # Fri...
Title: Tetrahedron Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a tetrahedron. Let's mark its vertices with letters *A*, *B*, *C* and *D* correspondingly. An ant is standing in the vertex *D* of the tetrahedron. The ant is quite active and he wouldn't stay idle. At each m...
```python n = int(input()) # D A B C dp = [1, 0, 0, 0] mod = 1000000007 for i in range(1, n+1): dp1 = [] dp1[0] = (dp[1] + dp[2] + dp[3]) % mod dp1[1] = (dp[0] + dp[2] + dp[3]) % mod dp1[2] = (dp[0] + dp[1] + dp[3]) % mod dp1[3] = (dp[0] + dp[1] + dp[2]) % mod dp = dp1 print(dp...
-1
0
none
none
none
0
[ "none" ]
null
null
Valentin participates in a show called "Shockers". The rules are quite easy: jury selects one letter which Valentin doesn't know. He should make a small speech, but every time he pronounces a word that contains the selected letter, he receives an electric shock. He can make guesses which letter is selected, but for eac...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of actions Valentin did. The next *n* lines contain descriptions of his actions, each line contains description of one action. Each action can be of one of three types: 1. Valentin pronounced some word and didn't get an electric shock. Th...
Output a single integer — the number of electric shocks that Valentin could have avoided if he had told the selected letter just after it became uniquely determined.
[ "5\n! abc\n. ad\n. b\n! cd\n? c\n", "8\n! hello\n! codeforces\n? c\n. o\n? d\n? h\n. l\n? e\n", "7\n! ababahalamaha\n? a\n? b\n? a\n? b\n? a\n? h\n" ]
[ "1\n", "2\n", "0\n" ]
In the first test case after the first action it becomes clear that the selected letter is one of the following: *a*, *b*, *c*. After the second action we can note that the selected letter is not *a*. Valentin tells word "b" and doesn't get a shock. After that it is clear that the selected letter is *c*, but Valentin p...
0
[ { "input": "5\n! abc\n. ad\n. b\n! cd\n? c", "output": "1" }, { "input": "8\n! hello\n! codeforces\n? c\n. o\n? d\n? h\n. l\n? e", "output": "2" }, { "input": "7\n! ababahalamaha\n? a\n? b\n? a\n? b\n? a\n? h", "output": "0" }, { "input": "4\n! abcd\n! cdef\n? d\n? c", "o...
1,514,043,274
5,374
Python 3
WRONG_ANSWER
PRETESTS
6
62
5,939,200
from sys import stdin n = int(stdin.readline().rstrip('\n')) not_in_ans = set() in_ans = set() count = 0 f = False for i in range(n): line = stdin.readline().rstrip('\n').split() if line[0] == chr(46): # . if len(in_ans) == 0: not_in_ans |= set(line[1]) else: ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valentin participates in a show called "Shockers". The rules are quite easy: jury selects one letter which Valentin doesn't know. He should make a small speech, but every time he pronounces a word that contains the selected letter...
```python from sys import stdin n = int(stdin.readline().rstrip('\n')) not_in_ans = set() in_ans = set() count = 0 f = False for i in range(n): line = stdin.readline().rstrip('\n').split() if line[0] == chr(46): # . if len(in_ans) == 0: not_in_ans |= set(line[1]) el...
0
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,578,798,574
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
1
124
0
n=input() state = 0 for a in range (len(n)): if state==0 and n[a]=='h': state=1 if state==1 and n[a]=='e': state=2 if state==2 and n[a]=='l': state=3 if state==3 and n[a]=='l': state=4 if state==4 and n[a]=='o': state=5 if state==5: print('YES') else: ...
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python n=input() state = 0 for a in range (len(n)): if state==0 and n[a]=='h': state=1 if state==1 and n[a]=='e': state=2 if state==2 and n[a]=='l': state=3 if state==3 and n[a]=='l': state=4 if state==4 and n[a]=='o': state=5 if state==5: print('YES'...
0
32
B
Borze
PROGRAMMING
800
[ "expression parsing", "implementation" ]
B. Borze
2
256
Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary number given its representation in Borze alphabet.
The first line contains a number in Borze code. The length of the string is between 1 and 200 characters. It's guaranteed that the given string is a valid Borze code of some ternary number (this number can have leading zeroes).
Output the decoded ternary number. It can have leading zeroes.
[ ".-.--\n", "--.\n", "-..-.--\n" ]
[ "012", "20", "1012" ]
none
1,000
[ { "input": ".-.--", "output": "012" }, { "input": "--.", "output": "20" }, { "input": "-..-.--", "output": "1012" }, { "input": "---..", "output": "210" }, { "input": "..--.---..", "output": "0020210" }, { "input": "-.....----.", "output": "1000022...
1,619,856,224
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
124
0
#f def f(l,k): if len(l)==1: k.append(l[:]) return k else: k.append(l[:2]) #print(k) return f(l[2:],k) #main d={"":0,"-":1,"--":2} code=input() v=code.split(".") print(v) for i in range(len(v)): if len(v[i])>2: k=[] M=f(v...
Title: Borze Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary ...
```python #f def f(l,k): if len(l)==1: k.append(l[:]) return k else: k.append(l[:2]) #print(k) return f(l[2:],k) #main d={"":0,"-":1,"--":2} code=input() v=code.split(".") print(v) for i in range(len(v)): if len(v[i])>2: k=[] ...
0
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,695,739,674
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
a=int(input()) b=int(input()) c=int(input()) d=a%c e=b%c if(d!=0): d=d+1 if(e!=0): e=e+1 f=d*e print(f)
Title: Theatre Square Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each ...
```python a=int(input()) b=int(input()) c=int(input()) d=a%c e=b%c if(d!=0): d=d+1 if(e!=0): e=e+1 f=d*e print(f) ```
-1
859
A
Declined Finalists
PROGRAMMING
800
[ "greedy", "implementation" ]
null
null
This year, as in previous years, MemSQL is inviting the top 25 competitors from the Start[c]up qualification round to compete onsite for the final round. Not everyone who is eligible to compete onsite can afford to travel to the office, though. Initially the top 25 contestants are invited to come onsite. Each eligible ...
The first line of input contains *K* (1<=≤<=*K*<=≤<=25), the number of onsite finalists you know. The second line of input contains *r*1,<=*r*2,<=...,<=*r**K* (1<=≤<=*r**i*<=≤<=106), the qualifying ranks of the finalists you know. All these ranks are distinct.
Print the minimum possible number of contestants that declined the invitation to compete onsite.
[ "25\n2 3 4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 22 23 24 25 26 28\n", "5\n16 23 8 15 4\n", "3\n14 15 92\n" ]
[ "3\n", "0\n", "67\n" ]
In the first example, you know all 25 onsite finalists. The contestants who ranked 1-st, 13-th, and 27-th must have declined, so the answer is 3.
500
[ { "input": "25\n2 3 4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 22 23 24 25 26 28", "output": "3" }, { "input": "5\n16 23 8 15 4", "output": "0" }, { "input": "3\n14 15 92", "output": "67" }, { "input": "1\n1000000", "output": "999975" }, { "input": "25\n1000000 ...
1,576,916,576
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
124
0
k=int(input()) a=list(map(int,input().split())) m=max(a) count=0 if(m>25): for i in range(1,m+1): if i not in a: count+=1 print(count) else: print(count)
Title: Declined Finalists Time Limit: None seconds Memory Limit: None megabytes Problem Description: This year, as in previous years, MemSQL is inviting the top 25 competitors from the Start[c]up qualification round to compete onsite for the final round. Not everyone who is eligible to compete onsite can afford to t...
```python k=int(input()) a=list(map(int,input().split())) m=max(a) count=0 if(m>25): for i in range(1,m+1): if i not in a: count+=1 print(count) else: print(count) ```
0
492
B
Vanya and Lanterns
PROGRAMMING
1,200
[ "binary search", "implementation", "math", "sortings" ]
null
null
Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the point *l*. Then the *i*-th lantern is at the point *a**i*. The lantern lights all points of the street that...
The first line contains two integers *n*, *l* (1<=≤<=*n*<=≤<=1000, 1<=≤<=*l*<=≤<=109) — the number of lanterns and the length of the street respectively. The next line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=*l*). Multiple lanterns can be located at the same point. The lanterns may be located at the ends of th...
Print the minimum light radius *d*, needed to light the whole street. The answer will be considered correct if its absolute or relative error doesn't exceed 10<=-<=9.
[ "7 15\n15 5 3 7 9 14 0\n", "2 5\n2 5\n" ]
[ "2.5000000000\n", "2.0000000000\n" ]
Consider the second sample. At *d* = 2 the first lantern will light the segment [0, 4] of the street, and the second lantern will light segment [3, 5]. Thus, the whole street will be lit.
1,000
[ { "input": "7 15\n15 5 3 7 9 14 0", "output": "2.5000000000" }, { "input": "2 5\n2 5", "output": "2.0000000000" }, { "input": "46 615683844\n431749087 271781274 274974690 324606253 480870261 401650581 13285442 478090364 266585394 425024433 588791449 492057200 391293435 563090494 317950 1...
1,696,602,170
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
46
0
n,l=map(int,input().split()) a=list(map(int,input().split())) a.sort() max_length=0 for i in range(0,len(a)-1): if a[i+1]-a[i]>=max_length: max_length=a[i+1]-a[i] print(max_length/2)
Title: Vanya and Lanterns Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the poi...
```python n,l=map(int,input().split()) a=list(map(int,input().split())) a.sort() max_length=0 for i in range(0,len(a)-1): if a[i+1]-a[i]>=max_length: max_length=a[i+1]-a[i] print(max_length/2) ```
0
777
A
Shell Game
PROGRAMMING
1,000
[ "constructive algorithms", "implementation", "math" ]
null
null
Bomboslav likes to look out of the window in his room and watch lads outside playing famous shell game. The game is played by two persons: operator and player. Operator takes three similar opaque shells and places a ball beneath one of them. Then he shuffles the shells by swapping some pairs and the player has to guess...
The first line of the input contains an integer *n* (1<=≤<=*n*<=≤<=2·109) — the number of movements made by the operator. The second line contains a single integer *x* (0<=≤<=*x*<=≤<=2) — the index of the shell where the ball was found after *n* movements.
Print one integer from 0 to 2 — the index of the shell where the ball was initially placed.
[ "4\n2\n", "1\n1\n" ]
[ "1\n", "0\n" ]
In the first sample, the ball was initially placed beneath the middle shell and the operator completed four movements. 1. During the first move operator swapped the left shell and the middle shell. The ball is now under the left shell. 1. During the second move operator swapped the middle shell and the right one. Th...
500
[ { "input": "4\n2", "output": "1" }, { "input": "1\n1", "output": "0" }, { "input": "2\n2", "output": "0" }, { "input": "3\n1", "output": "1" }, { "input": "3\n2", "output": "0" }, { "input": "3\n0", "output": "2" }, { "input": "2000000000\n...
1,490,105,906
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
4,608,000
n=eval(input()) x=eval(input()) n=n%6 a=[0]*3 k=0 for j in range(3): a[j]=1 for i in range(1,n+1): if(i%2==1): a[0],a[1]=a[1],a[0] else: a[1],a[2]=a[2],a[1] if(a[0]==1): k=0 elif(a[1]==1): k=1 else: k=2 if(k==x): ...
Title: Shell Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bomboslav likes to look out of the window in his room and watch lads outside playing famous shell game. The game is played by two persons: operator and player. Operator takes three similar opaque shells and places a ball ben...
```python n=eval(input()) x=eval(input()) n=n%6 a=[0]*3 k=0 for j in range(3): a[j]=1 for i in range(1,n+1): if(i%2==1): a[0],a[1]=a[1],a[0] else: a[1],a[2]=a[2],a[1] if(a[0]==1): k=0 elif(a[1]==1): k=1 else: k=2 i...
0
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,578,172,597
2,147,483,647
Python 3
OK
TESTS
32
218
512,000
n=int(input()) p=0 q=0 a=[int(x) for x in input().split(" ")] for i in range(n): if (a[i]%2!=0): q=q+1 if (a[i]%2==0): p=p+1 if(q==1): for i in range(n): if (a[i]%2!=0): print(i+1) break if(p==1): for i in range(n): if (a[i]%2==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 n=int(input()) p=0 q=0 a=[int(x) for x in input().split(" ")] for i in range(n): if (a[i]%2!=0): q=q+1 if (a[i]%2==0): p=p+1 if(q==1): for i in range(n): if (a[i]%2!=0): print(i+1) break if(p==1): for i in range(n): if (a[...
3.944546
706
B
Interesting drink
PROGRAMMING
1,100
[ "binary search", "dp", "implementation" ]
null
null
Vasiliy likes to rest after a hard work, so you may often meet him in some bar nearby. As all programmers do, he loves the famous drink "Beecola", which can be bought in *n* different shops in the city. It's known that the price of one bottle in the shop *i* is equal to *x**i* coins. Vasiliy plans to buy his favorite ...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of shops in the city that sell Vasiliy's favourite drink. The second line contains *n* integers *x**i* (1<=≤<=*x**i*<=≤<=100<=000) — prices of the bottles of the drink in the *i*-th shop. The third line contains a single i...
Print *q* integers. The *i*-th of them should be equal to the number of shops where Vasiliy will be able to buy a bottle of the drink on the *i*-th day.
[ "5\n3 10 8 6 11\n4\n1\n10\n3\n11\n" ]
[ "0\n4\n1\n5\n" ]
On the first day, Vasiliy won't be able to buy a drink in any of the shops. On the second day, Vasiliy can buy a drink in the shops 1, 2, 3 and 4. On the third day, Vasiliy can buy a drink only in the shop number 1. Finally, on the last day Vasiliy can buy a drink in any shop.
1,000
[ { "input": "5\n3 10 8 6 11\n4\n1\n10\n3\n11", "output": "0\n4\n1\n5" }, { "input": "5\n868 987 714 168 123\n10\n424\n192\n795\n873\n117\n914\n735\n158\n631\n471", "output": "2\n2\n3\n4\n0\n4\n3\n1\n2\n2" }, { "input": "3\n435 482 309\n7\n245\n241\n909\n745\n980\n29\n521", "output": "...
1,688,995,658
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
10
2,000
12,390,400
def get_num(L, n): result = 0 i = 0 while L[i] <= n: result += 1 i += 1 if i == len(L): break return result n = int(input()) L = list(map(int, input().split())) L.sort() days = int(input()) for i in range(days): print(get_num(L, int(input())))
Title: Interesting drink Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasiliy likes to rest after a hard work, so you may often meet him in some bar nearby. As all programmers do, he loves the famous drink "Beecola", which can be bought in *n* different shops in the city. It's known tha...
```python def get_num(L, n): result = 0 i = 0 while L[i] <= n: result += 1 i += 1 if i == len(L): break return result n = int(input()) L = list(map(int, input().split())) L.sort() days = int(input()) for i in range(days): print(get_num(L, int(input()))) ```
0
120
A
Elevator
PROGRAMMING
1,000
[ "brute force", "implementation", "math" ]
null
null
A sky scraper with 1000 floors has been built in the city of N. It has modern superfast elevators to help to travel from one floor to another. Each elevator has two doors, the front one and the back one. If one goes in through the front door, he goes out through the back one and vice versa. The elevator has two rails n...
The first line indicates the door through which the very important person entered the elevator. It contains "front" if the person enters the elevator through the front door and "back" if he entered the elevator through the back door. The second line contains integer *a* (1<=≤<=*a*<=≤<=2) which denotes the number of the...
Print character "R" if the VIP is right-handed or "L" if he is left-handed.
[ "front\n1\n" ]
[ "L\n" ]
none
0
[ { "input": "front\n1", "output": "L" }, { "input": "back\n1", "output": "R" }, { "input": "front\n2", "output": "R" }, { "input": "back\n2", "output": "L" } ]
1,590,133,982
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
186
0
with open('input.txt','r') as f: d = f.readline() p = f.readline() f = open('output.txt','w') if d=='front': if p == 1: print('L',file = f) else: print('R',file = f) else: if p == 1: print('R',file = f) else: print('L',file = f)
Title: Elevator Time Limit: None seconds Memory Limit: None megabytes Problem Description: A sky scraper with 1000 floors has been built in the city of N. It has modern superfast elevators to help to travel from one floor to another. Each elevator has two doors, the front one and the back one. If one goes in through...
```python with open('input.txt','r') as f: d = f.readline() p = f.readline() f = open('output.txt','w') if d=='front': if p == 1: print('L',file = f) else: print('R',file = f) else: if p == 1: print('R',file = f) else: print('L',file = f) ```
0
644
A
Parliament of Berland
PROGRAMMING
1,000
[ "*special", "constructive algorithms" ]
null
null
There are *n* parliamentarians in Berland. They are numbered with integers from 1 to *n*. It happened that all parliamentarians with odd indices are Democrats and all parliamentarians with even indices are Republicans. New parliament assembly hall is a rectangle consisting of *a*<=×<=*b* chairs — *a* rows of *b* chair...
The first line of the input contains three integers *n*, *a* and *b* (1<=≤<=*n*<=≤<=10<=000, 1<=≤<=*a*,<=*b*<=≤<=100) — the number of parliamentarians, the number of rows in the assembly hall and the number of seats in each row, respectively.
If there is no way to assigns seats to parliamentarians in a proper way print -1. Otherwise print the solution in *a* lines, each containing *b* integers. The *j*-th integer of the *i*-th line should be equal to the index of parliamentarian occupying this seat, or 0 if this seat should remain empty. If there are multi...
[ "3 2 2\n", "8 4 3\n", "10 2 2\n" ]
[ "0 3\n1 2\n", "7 8 3\n0 1 4\n6 0 5\n0 2 0\n", "-1\n" ]
In the first sample there are many other possible solutions. For example, and The following assignment is incorrect, because parliamentarians 1 and 3 are both from Democrats party but will occupy neighbouring seats.
500
[ { "input": "3 2 2", "output": "1 2 \n0 3 " }, { "input": "8 4 3", "output": "1 2 3 \n4 5 6 \n7 8 0 \n0 0 0 " }, { "input": "10 2 2", "output": "-1" }, { "input": "1 1 1", "output": "1 " }, { "input": "8 3 3", "output": "1 2 3 \n4 5 6 \n7 8 0 " }, { "in...
1,458,139,169
20,369
Python 3
OK
TESTS
85
78
716,800
n, a, b = (int(s) for s in input().split()) if a*b < n: print(-1) elif b%2: for i in range(a): print(*[j if j<=n else 0 for j in range(i*b+1, (i+1)*b+1)]) else: for i in range(a): if i%2: print(*[j if j<=n else 0 for j in range(i*b+1, (i+1)*b+1)]) else: print(...
Title: Parliament of Berland Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* parliamentarians in Berland. They are numbered with integers from 1 to *n*. It happened that all parliamentarians with odd indices are Democrats and all parliamentarians with even indices are Republi...
```python n, a, b = (int(s) for s in input().split()) if a*b < n: print(-1) elif b%2: for i in range(a): print(*[j if j<=n else 0 for j in range(i*b+1, (i+1)*b+1)]) else: for i in range(a): if i%2: print(*[j if j<=n else 0 for j in range(i*b+1, (i+1)*b+1)]) else: ...
3
998
A
Balloons
PROGRAMMING
1,000
[ "constructive algorithms", "implementation" ]
null
null
There are quite a lot of ways to have fun with inflatable balloons. For example, you can fill them with water and see what happens. Grigory and Andrew have the same opinion. So, once upon a time, they went to the shop and bought $n$ packets with inflatable balloons, where $i$-th of them has exactly $a_i$ balloons insi...
The first line of input contains a single integer $n$ ($1 \le n \le 10$) — the number of packets with balloons. The second line contains $n$ integers: $a_1$, $a_2$, $\ldots$, $a_n$ ($1 \le a_i \le 1000$) — the number of balloons inside the corresponding packet.
If it's impossible to divide the balloons satisfying the conditions above, print $-1$. Otherwise, print an integer $k$ — the number of packets to give to Grigory followed by $k$ distinct integers from $1$ to $n$ — the indices of those. The order of packets doesn't matter. If there are multiple ways to divide balloons...
[ "3\n1 2 1\n", "2\n5 5\n", "1\n10\n" ]
[ "2\n1 2\n", "-1\n", "-1\n" ]
In the first test Grigory gets $3$ balloons in total while Andrey gets $1$. In the second test there's only one way to divide the packets which leads to equal numbers of balloons. In the third test one of the boys won't get a packet at all.
500
[ { "input": "3\n1 2 1", "output": "1\n1" }, { "input": "2\n5 5", "output": "-1" }, { "input": "1\n10", "output": "-1" }, { "input": "1\n1", "output": "-1" }, { "input": "10\n1 1 1 1 1 1 1 1 1 1", "output": "1\n1" }, { "input": "10\n1 1 1 1 1 1 1 1 1 9",...
1,531,322,018
2,147,483,647
Python 3
OK
TESTS
49
124
0
n = int(input()) a = list(map(int, input().split())) def solve(): global a if n < 2: print(-1) return if n == 2 and a[0] == a[1]: print(-1) return print(n - 1) z = a.index(min(a)) for i in range(len(a)): if i != z: print(i+1, end=' ') solve()
Title: Balloons Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are quite a lot of ways to have fun with inflatable balloons. For example, you can fill them with water and see what happens. Grigory and Andrew have the same opinion. So, once upon a time, they went to the shop and bou...
```python n = int(input()) a = list(map(int, input().split())) def solve(): global a if n < 2: print(-1) return if n == 2 and a[0] == a[1]: print(-1) return print(n - 1) z = a.index(min(a)) for i in range(len(a)): if i != z: print(i+1, end=' '...
3
639
C
Bear and Polynomials
PROGRAMMING
2,200
[ "hashing", "implementation", "math" ]
null
null
Limak is a little polar bear. He doesn't have many toys and thus he often plays with polynomials. He considers a polynomial valid if its degree is *n* and its coefficients are integers not exceeding *k* by the absolute value. More formally: Let *a*0,<=*a*1,<=...,<=*a**n* denote the coefficients, so . Then, a polynomi...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=200<=000,<=1<=≤<=*k*<=≤<=109) — the degree of the polynomial and the limit for absolute values of coefficients. The second line contains *n*<=+<=1 integers *a*0,<=*a*1,<=...,<=*a**n* (|*a**i*|<=≤<=*k*,<=*a**n*<=≠<=0) — describing a valid polynomial . It's...
Print the number of ways to change one coefficient to get a valid polynomial *Q* that *Q*(2)<==<=0.
[ "3 1000000000\n10 -9 -3 5\n", "3 12\n10 -9 -3 5\n", "2 20\n14 -7 19\n" ]
[ "3\n", "2\n", "0\n" ]
In the first sample, we are given a polynomial *P*(*x*) = 10 - 9*x* - 3*x*<sup class="upper-index">2</sup> + 5*x*<sup class="upper-index">3</sup>. Limak can change one coefficient in three ways: 1. He can set *a*<sub class="lower-index">0</sub> =  - 10. Then he would get *Q*(*x*) =  - 10 - 9*x* - 3*x*<sup class="upp...
1,000
[ { "input": "3 1000000000\n10 -9 -3 5", "output": "3" }, { "input": "3 12\n10 -9 -3 5", "output": "2" }, { "input": "2 20\n14 -7 19", "output": "0" }, { "input": "5 5\n0 -4 -2 -2 0 5", "output": "1" }, { "input": "6 10\n-2 -1 7 -3 2 7 -6", "output": "2" }, ...
1,459,186,402
3,502
PyPy 3
WRONG_ANSWER
PRETESTS
3
92
23,040,000
def main(): read = lambda: map(int, input().split()) n, k = read() a = list(read()) p = 1 val = 0 for i in a: val += i * p p *= 2 cnt = 0 p = 1 for i in range(n): new = (a[i] * p - val) / p f1 = int(new) == new f2 = i != n - 1 ...
Title: Bear and Polynomials Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is a little polar bear. He doesn't have many toys and thus he often plays with polynomials. He considers a polynomial valid if its degree is *n* and its coefficients are integers not exceeding *k* by the abs...
```python def main(): read = lambda: map(int, input().split()) n, k = read() a = list(read()) p = 1 val = 0 for i in a: val += i * p p *= 2 cnt = 0 p = 1 for i in range(n): new = (a[i] * p - val) / p f1 = int(new) == new f2 = i...
0
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,692,722,317
2,147,483,647
Python 3
OK
TESTS
20
46
0
n, m, a = map(int, input().split()) # Calculate the number of flagstones needed for each dimension flagstones_needed_n = (n + a - 1) // a flagstones_needed_m = (m + a - 1) // a # Calculate the total number of flagstones needed total_flagstones_needed = flagstones_needed_n * flagstones_needed_m print(total_f...
Title: Theatre Square Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each ...
```python n, m, a = map(int, input().split()) # Calculate the number of flagstones needed for each dimension flagstones_needed_n = (n + a - 1) // a flagstones_needed_m = (m + a - 1) // a # Calculate the total number of flagstones needed total_flagstones_needed = flagstones_needed_n * flagstones_needed_m pri...
3.977
955
B
Not simply beatiful strings
PROGRAMMING
1,400
[ "implementation" ]
null
null
Let's call a string adorable if its letters can be realigned in such a way that they form two consequent groups of equal symbols (note that different groups must contain different symbols). For example, ababa is adorable (you can transform it to aaabb, where the first three letters form a group of *a*-s and others — a ...
The only line contains *s* (1<=≤<=|*s*|<=≤<=105) consisting of lowercase latin letters.
Print «Yes» if the string can be split according to the criteria above or «No» otherwise. Each letter can be printed in arbitrary case.
[ "ababa\n", "zzcxx\n", "yeee\n" ]
[ "Yes\n", "Yes\n", "No\n" ]
In sample case two zzcxx can be split into subsequences zc and zxx each of which is adorable. There's no suitable partition in sample case three.
1,000
[ { "input": "ababa", "output": "Yes" }, { "input": "zzcxx", "output": "Yes" }, { "input": "yeee", "output": "No" }, { "input": "a", "output": "No" }, { "input": "bbab", "output": "No" }, { "input": "abcd", "output": "Yes" }, { "input": "abc"...
1,521,828,691
5,791
Python 3
CHALLENGED
CHALLENGES
8
93
7,680,000
st=input() st=list(st) flg=1 if len(set(st))>2: flg=1 elif len(set(st))==2: for i in set(st): if st.count(i)==1: flg=0 break elif len(set(st))==1: flg=0 if flg==1: print('Yes') else: print('No')
Title: Not simply beatiful strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's call a string adorable if its letters can be realigned in such a way that they form two consequent groups of equal symbols (note that different groups must contain different symbols). For example, abab...
```python st=input() st=list(st) flg=1 if len(set(st))>2: flg=1 elif len(set(st))==2: for i in set(st): if st.count(i)==1: flg=0 break elif len(set(st))==1: flg=0 if flg==1: print('Yes') else: print('No') ```
-1
4
A
Watermelon
PROGRAMMING
800
[ "brute force", "math" ]
A. Watermelon
1
64
One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dying of thirst, and decided to divide the berry, however they faced a hard problem. Pete and ...
The first (and the only) input line contains integer number *w* (1<=≤<=*w*<=≤<=100) — the weight of the watermelon bought by the boys.
Print YES, if the boys can divide the watermelon into two parts, each of them weighing even number of kilos; and NO in the opposite case.
[ "8\n" ]
[ "YES\n" ]
For example, the boys can divide the watermelon into two parts of 2 and 6 kilos respectively (another variant — two parts of 4 and 4 kilos).
0
[ { "input": "8", "output": "YES" }, { "input": "5", "output": "NO" }, { "input": "4", "output": "YES" }, { "input": "3", "output": "NO" }, { "input": "2", "output": "NO" }, { "input": "1", "output": "NO" }, { "input": "7", "output": "NO"...
1,689,067,844
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
w=int(input()) for i in range(w): if (1<=w<=100): if (w%2=0): print("YES") else: print("No")
Title: Watermelon Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dyin...
```python w=int(input()) for i in range(w): if (1<=w<=100): if (w%2=0): print("YES") else: print("No") ```
-1
32
B
Borze
PROGRAMMING
800
[ "expression parsing", "implementation" ]
B. Borze
2
256
Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary number given its representation in Borze alphabet.
The first line contains a number in Borze code. The length of the string is between 1 and 200 characters. It's guaranteed that the given string is a valid Borze code of some ternary number (this number can have leading zeroes).
Output the decoded ternary number. It can have leading zeroes.
[ ".-.--\n", "--.\n", "-..-.--\n" ]
[ "012", "20", "1012" ]
none
1,000
[ { "input": ".-.--", "output": "012" }, { "input": "--.", "output": "20" }, { "input": "-..-.--", "output": "1012" }, { "input": "---..", "output": "210" }, { "input": "..--.---..", "output": "0020210" }, { "input": "-.....----.", "output": "1000022...
1,655,829,812
2,147,483,647
PyPy 3-64
OK
TESTS
30
124
614,400
i=input() def ter(l): dic={".":"0","-.":"1","--":"2"} if len(l)==0: return "" if l[0]==".": return "0"+ter(l[1:]) else: if l[0:2]=="--" or l[0:2]=="-.": return dic[l[0:2]]+ter(l[2:]) print(ter(i))
Title: Borze Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary ...
```python i=input() def ter(l): dic={".":"0","-.":"1","--":"2"} if len(l)==0: return "" if l[0]==".": return "0"+ter(l[1:]) else: if l[0:2]=="--" or l[0:2]=="-.": return dic[l[0:2]]+ter(l[2:]) print(ter(i)) ```
3.967856
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,696,573,027
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
15
0
n = int(input()) for i in range(n): w = input() l = len(w) if w<10: print(w) else: print(w[0]+l+w[l-1])
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python n = int(input()) for i in range(n): w = input() l = len(w) if w<10: print(w) else: print(w[0]+l+w[l-1]) ```
-1
599
A
Patrick and Shopping
PROGRAMMING
800
[ "implementation" ]
null
null
Today Patrick waits for a visit from his friend Spongebob. To prepare for the visit, Patrick needs to buy some goodies in two stores located near his house. There is a *d*1 meter long road between his house and the first shop and a *d*2 meter long road between his house and the second shop. Also, there is a road of len...
The first line of the input contains three integers *d*1, *d*2, *d*3 (1<=≤<=*d*1,<=*d*2,<=*d*3<=≤<=108) — the lengths of the paths. - *d*1 is the length of the path connecting Patrick's house and the first shop; - *d*2 is the length of the path connecting Patrick's house and the second shop; - *d*3 is the length o...
Print the minimum distance that Patrick will have to walk in order to visit both shops and return to his house.
[ "10 20 30\n", "1 1 5\n" ]
[ "60\n", "4\n" ]
The first sample is shown on the picture in the problem statement. One of the optimal routes is: house <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> first shop <img align="middle" class="tex-form...
500
[ { "input": "10 20 30", "output": "60" }, { "input": "1 1 5", "output": "4" }, { "input": "100 33 34", "output": "134" }, { "input": "777 777 777", "output": "2331" }, { "input": "2 2 8", "output": "8" }, { "input": "12 34 56", "output": "92" }, ...
1,691,075,371
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
61
0
import math a,b,c = map(int, input().split()) if (a + b)*2 <= a+b+c: print((a + b)*2) else:print(a+b+c)
Title: Patrick and Shopping Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today Patrick waits for a visit from his friend Spongebob. To prepare for the visit, Patrick needs to buy some goodies in two stores located near his house. There is a *d*1 meter long road between his house and the...
```python import math a,b,c = map(int, input().split()) if (a + b)*2 <= a+b+c: print((a + b)*2) else:print(a+b+c) ```
0
534
A
Exam
PROGRAMMING
1,100
[ "constructive algorithms", "implementation", "math" ]
null
null
An exam for *n* students will take place in a long and narrow room, so the students will sit in a line in some order. The teacher suspects that students with adjacent numbers (*i* and *i*<=+<=1) always studied side by side and became friends and if they take an exam sitting next to each other, they will help each other...
A single line contains integer *n* (1<=≤<=*n*<=≤<=5000) — the number of students at an exam.
In the first line print integer *k* — the maximum number of students who can be seated so that no two students with adjacent numbers sit next to each other. In the second line print *k* distinct integers *a*1,<=*a*2,<=...,<=*a**k* (1<=≤<=*a**i*<=≤<=*n*), where *a**i* is the number of the student on the *i*-th position...
[ "6", "3\n" ]
[ "6\n1 5 3 6 2 4", "2\n1 3" ]
none
500
[ { "input": "6", "output": "6\n5 3 1 6 4 2 " }, { "input": "3", "output": "2\n1 3" }, { "input": "1", "output": "1\n1 " }, { "input": "2", "output": "1\n1" }, { "input": "4", "output": "4\n3 1 4 2 " }, { "input": "5", "output": "5\n5 3 1 4 2 " }, ...
1,496,504,872
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
46
0
n=int(input()) if n==1: print("1") print("1") elif n==2: print("1") print("1") elif n==3: print("2") print("1 3") elif n>=4: l=list() print(n) i=1 j=2 while(i<=n): l.append(i) i=i+2 while(j<=n): l.append(j) j=j+2 print(*l)
Title: Exam Time Limit: None seconds Memory Limit: None megabytes Problem Description: An exam for *n* students will take place in a long and narrow room, so the students will sit in a line in some order. The teacher suspects that students with adjacent numbers (*i* and *i*<=+<=1) always studied side by side and bec...
```python n=int(input()) if n==1: print("1") print("1") elif n==2: print("1") print("1") elif n==3: print("2") print("1 3") elif n>=4: l=list() print(n) i=1 j=2 while(i<=n): l.append(i) i=i+2 while(j<=n): l.append(j) j=j+2 print(*l) ```
0
334
A
Candy Bags
PROGRAMMING
1,000
[ "implementation" ]
null
null
Gerald has *n* younger brothers and their number happens to be even. One day he bought *n*2 candy bags. One bag has one candy, one bag has two candies, one bag has three candies and so on. In fact, for each integer *k* from 1 to *n*2 he has exactly one bag with *k* candies. Help him give *n* bags of candies to each b...
The single line contains a single integer *n* (*n* is even, 2<=≤<=*n*<=≤<=100) — the number of Gerald's brothers.
Let's assume that Gerald indexes his brothers with numbers from 1 to *n*. You need to print *n* lines, on the *i*-th line print *n* integers — the numbers of candies in the bags for the *i*-th brother. Naturally, all these numbers should be distinct and be within limits from 1 to *n*2. You can print the numbers in the ...
[ "2\n" ]
[ "1 4\n2 3\n" ]
The sample shows Gerald's actions if he has two brothers. In this case, his bags contain 1, 2, 3 and 4 candies. He can give the bags with 1 and 4 candies to one brother and the bags with 2 and 3 to the other brother.
500
[ { "input": "2", "output": "1 4\n2 3" }, { "input": "4", "output": "1 16 2 15\n3 14 4 13\n5 12 6 11\n7 10 8 9" }, { "input": "6", "output": "1 36 2 35 3 34\n4 33 5 32 6 31\n7 30 8 29 9 28\n10 27 11 26 12 25\n13 24 14 23 15 22\n16 21 17 20 18 19" }, { "input": "8", "output"...
1,374,938,448
2,147,483,647
Python 3
OK
TESTS
21
156
102,400
n = input() n = int(n) bags = [] for i in range(n**2): bags.append(i + 1) start = 0 end = -1 step = int(n / 2) for i in range(n): for j in range(start, start + step): print(bags[j], end=' ') start += step for j in range(end, end - step, -1): print(bags[j], end=' ') end -= step print('')
Title: Candy Bags Time Limit: None seconds Memory Limit: None megabytes Problem Description: Gerald has *n* younger brothers and their number happens to be even. One day he bought *n*2 candy bags. One bag has one candy, one bag has two candies, one bag has three candies and so on. In fact, for each integer *k* from ...
```python n = input() n = int(n) bags = [] for i in range(n**2): bags.append(i + 1) start = 0 end = -1 step = int(n / 2) for i in range(n): for j in range(start, start + step): print(bags[j], end=' ') start += step for j in range(end, end - step, -1): print(bags[j], end=' ') end -= step print('') ```
3
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,674,468,981
2,147,483,647
Python 3
OK
TESTS
102
46
0
a=input() b=input() for i in range(len(a)): if(a[i]==b[i]=='1'): print("0",end="") else: x=int(a[i])+int(b[i]) print(str(x),end="")
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 a=input() b=input() for i in range(len(a)): if(a[i]==b[i]=='1'): print("0",end="") else: x=int(a[i])+int(b[i]) print(str(x),end="") ```
3.9885
143
A
Help Vasilisa the Wise 2
PROGRAMMING
1,000
[ "brute force", "math" ]
null
null
Vasilisa the Wise from the Kingdom of Far Far Away got a magic box with a secret as a present from her friend Hellawisa the Wise from the Kingdom of A Little Closer. However, Vasilisa the Wise does not know what the box's secret is, since she cannot open it again. She hopes that you will help her one more time with tha...
The input contains numbers written on the edges of the lock of the box. The first line contains space-separated integers *r*1 and *r*2 that define the required sums of numbers in the rows of the square. The second line contains space-separated integers *c*1 and *c*2 that define the required sums of numbers in the colum...
Print the scheme of decorating the box with stones: two lines containing two space-separated integers from 1 to 9. The numbers should be pairwise different. If there is no solution for the given lock, then print the single number "-1" (without the quotes). If there are several solutions, output any.
[ "3 7\n4 6\n5 5\n", "11 10\n13 8\n5 16\n", "1 2\n3 4\n5 6\n", "10 10\n10 10\n10 10\n" ]
[ "1 2\n3 4\n", "4 7\n9 1\n", "-1\n", "-1\n" ]
Pay attention to the last test from the statement: it is impossible to open the box because for that Vasilisa the Wise would need 4 identical gems containing number "5". However, Vasilisa only has one gem with each number from 1 to 9.
500
[ { "input": "3 7\n4 6\n5 5", "output": "1 2\n3 4" }, { "input": "11 10\n13 8\n5 16", "output": "4 7\n9 1" }, { "input": "1 2\n3 4\n5 6", "output": "-1" }, { "input": "10 10\n10 10\n10 10", "output": "-1" }, { "input": "5 13\n8 10\n11 7", "output": "3 2\n5 8" ...
1,544,703,584
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
50
248
0
r1, r2 = map(int, input().split()) c1, c2 = map(int, input().split()) d1, d2 = map(int, input().split()) d = int(((c2 + d1)-r1) / 2) c = int(r2 - d) a = int(d1 - d) b = int(c2 - d) if a == b or a == c or a == d or b == c or b == d or c == d or a < 1 or b < 1 or c < 1 or d < 1 or a > 9 or b > 9 or c > 9 or d > 9:...
Title: Help Vasilisa the Wise 2 Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasilisa the Wise from the Kingdom of Far Far Away got a magic box with a secret as a present from her friend Hellawisa the Wise from the Kingdom of A Little Closer. However, Vasilisa the Wise does not know wha...
```python r1, r2 = map(int, input().split()) c1, c2 = map(int, input().split()) d1, d2 = map(int, input().split()) d = int(((c2 + d1)-r1) / 2) c = int(r2 - d) a = int(d1 - d) b = int(c2 - d) if a == b or a == c or a == d or b == c or b == d or c == d or a < 1 or b < 1 or c < 1 or d < 1 or a > 9 or b > 9 or c > 9...
0
44
E
Anfisa the Monkey
PROGRAMMING
1,400
[ "dp" ]
E. Anfisa the Monkey
2
256
Anfisa the monkey learns to type. She is yet unfamiliar with the "space" key and can only type in lower-case Latin letters. Having typed for a fairly long line, Anfisa understood that it would be great to divide what she has written into *k* lines not shorter than *a* and not longer than *b*, for the text to resemble h...
The first line contains three integers *k*, *a* and *b* (1<=≤<=*k*<=≤<=200, 1<=≤<=*a*<=≤<=*b*<=≤<=200). The second line contains a sequence of lowercase Latin letters — the text typed by Anfisa. It is guaranteed that the given line is not empty and its length does not exceed 200 symbols.
Print *k* lines, each of which contains no less than *a* and no more than *b* symbols — Anfisa's text divided into lines. It is not allowed to perform any changes in the text, such as: deleting or adding symbols, changing their order, etc. If the solution is not unique, print any of them. If there is no solution, print...
[ "3 2 5\nabrakadabra\n", "4 1 2\nabrakadabra\n" ]
[ "ab\nrakad\nabra\n", "No solution\n" ]
none
0
[ { "input": "3 2 5\nabrakadabra", "output": "abra\nkada\nbra" }, { "input": "4 1 2\nabrakadabra", "output": "No solution" }, { "input": "3 1 2\nvgnfpo", "output": "vg\nnf\npo" }, { "input": "5 3 4\nvrrdnhazvexzjfv", "output": "vrr\ndnh\nazv\nexz\njfv" }, { "input":...
1,643,440,134
2,147,483,647
Python 3
OK
TESTS
32
62
0
k,a,b= map(int, input().split()) s = input() n = len(s) if k*a>n or k*b<n: print("No solution") else: c = 0 o = n//k m = n%k for i in range(k): d = o + (i < m) print(s[c:c + d]) c+= d
Title: Anfisa the Monkey Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Anfisa the monkey learns to type. She is yet unfamiliar with the "space" key and can only type in lower-case Latin letters. Having typed for a fairly long line, Anfisa understood that it would be great to divide what she ...
```python k,a,b= map(int, input().split()) s = input() n = len(s) if k*a>n or k*b<n: print("No solution") else: c = 0 o = n//k m = n%k for i in range(k): d = o + (i < m) print(s[c:c + d]) c+= d ```
3.9845
446
A
DZY Loves Sequences
PROGRAMMING
1,600
[ "dp", "implementation", "two pointers" ]
null
null
DZY has a sequence *a*, consisting of *n* integers. We'll call a sequence *a**i*,<=*a**i*<=+<=1,<=...,<=*a**j* (1<=≤<=*i*<=≤<=*j*<=≤<=*n*) a subsegment of the sequence *a*. The value (*j*<=-<=*i*<=+<=1) denotes the length of the subsegment. Your task is to find the longest subsegment of *a*, such that it is possible ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105). The next line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109).
In a single line print the answer to the problem — the maximum length of the required subsegment.
[ "6\n7 2 3 1 5 6\n" ]
[ "5\n" ]
You can choose subsegment *a*<sub class="lower-index">2</sub>, *a*<sub class="lower-index">3</sub>, *a*<sub class="lower-index">4</sub>, *a*<sub class="lower-index">5</sub>, *a*<sub class="lower-index">6</sub> and change its 3rd element (that is *a*<sub class="lower-index">4</sub>) to 4.
500
[ { "input": "6\n7 2 3 1 5 6", "output": "5" }, { "input": "10\n424238336 649760493 681692778 714636916 719885387 804289384 846930887 957747794 596516650 189641422", "output": "9" }, { "input": "50\n804289384 846930887 681692778 714636916 957747794 424238336 719885387 649760493 596516650 1...
1,627,034,744
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
6,656,000
import math n,m,a,b=map(int,input().split()) if n%m==0: x=math.ceil(n/m*b) y=math.ceil(n/a) print(min(x,y)) exit()
Title: DZY Loves Sequences Time Limit: None seconds Memory Limit: None megabytes Problem Description: DZY has a sequence *a*, consisting of *n* integers. We'll call a sequence *a**i*,<=*a**i*<=+<=1,<=...,<=*a**j* (1<=≤<=*i*<=≤<=*j*<=≤<=*n*) a subsegment of the sequence *a*. The value (*j*<=-<=*i*<=+<=1) denotes the...
```python import math n,m,a,b=map(int,input().split()) if n%m==0: x=math.ceil(n/m*b) y=math.ceil(n/a) print(min(x,y)) exit() ```
-1
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,646,991,918
2,147,483,647
Python 3
OK
TESTS
36
92
0
y,w=map(int,input().split()) prob=['','1/1','5/6','2/3','1/2','1/3','1/6'] c=max(y,w) print(prob[c])
Title: Die Roll Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about T...
```python y,w=map(int,input().split()) prob=['','1/1','5/6','2/3','1/2','1/3','1/6'] c=max(y,w) print(prob[c]) ```
3.954
7
C
Line
PROGRAMMING
1,800
[ "math", "number theory" ]
C. Line
1
256
A line on the plane is described by an equation *Ax*<=+<=*By*<=+<=*C*<==<=0. You are to find any point on this line, whose coordinates are integer numbers from <=-<=5·1018 to 5·1018 inclusive, or to find out that such points do not exist.
The first line contains three integers *A*, *B* and *C* (<=-<=2·109<=≤<=*A*,<=*B*,<=*C*<=≤<=2·109) — corresponding coefficients of the line equation. It is guaranteed that *A*2<=+<=*B*2<=&gt;<=0.
If the required point exists, output its coordinates, otherwise output -1.
[ "2 5 3\n" ]
[ "6 -3\n" ]
none
0
[ { "input": "2 5 3", "output": "6 -3" }, { "input": "0 2 3", "output": "-1" }, { "input": "931480234 -1767614767 -320146190", "output": "-98880374013340920 -52107006370101410" }, { "input": "-1548994394 -1586527767 -1203252104", "output": "-878123061596147680 8573488141506...
1,696,334,910
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
60
0
import math ################################################################################ def ext_euclid(a, b): if b == 0: return 1, 0, a else: x, y, q = ext_euclid(b, a % b) # q = gcd(a, b) = gcd(b, a%b) x, y = y, (x - (a // b) * y) return x, y, q ##########...
Title: Line Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: A line on the plane is described by an equation *Ax*<=+<=*By*<=+<=*C*<==<=0. You are to find any point on this line, whose coordinates are integer numbers from <=-<=5·1018 to 5·1018 inclusive, or to find out that such points do not ex...
```python import math ################################################################################ def ext_euclid(a, b): if b == 0: return 1, 0, a else: x, y, q = ext_euclid(b, a % b) # q = gcd(a, b) = gcd(b, a%b) x, y = y, (x - (a // b) * y) return x, y, q ...
0
340
C
Tourist Problem
PROGRAMMING
1,600
[ "combinatorics", "implementation", "math" ]
null
null
Iahub is a big fan of tourists. He wants to become a tourist himself, so he planned a trip. There are *n* destinations on a straight road that Iahub wants to visit. Iahub starts the excursion from kilometer 0. The *n* destinations are described by a non-negative integers sequence *a*1, *a*2, ..., *a**n*. The number *a*...
The first line contains integer *n* (2<=≤<=*n*<=≤<=105). Next line contains *n* distinct integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=107).
Output two integers — the numerator and denominator of a fraction which is equal to the wanted average number. The fraction must be irreducible.
[ "3\n2 3 5\n" ]
[ "22 3" ]
Consider 6 possible routes: - [2, 3, 5]: total distance traveled: |2 – 0| + |3 – 2| + |5 – 3| = 5; - [2, 5, 3]: |2 – 0| + |5 – 2| + |3 – 5| = 7; - [3, 2, 5]: |3 – 0| + |2 – 3| + |5 – 2| = 7; - [3, 5, 2]: |3 – 0| + |5 – 3| + |2 – 5| = 8; - [5, 2, 3]: |5 – 0| + |2 – 5| + |3 – 2| = 9; - [5, 3, 2]: |5 – 0| + |3 – 5|...
2,000
[ { "input": "3\n2 3 5", "output": "22 3" }, { "input": "4\n1 5 77 2", "output": "547 4" }, { "input": "5\n3 3842 288 199 334", "output": "35918 5" }, { "input": "7\n1 2 3 40 52 33 86", "output": "255 1" }, { "input": "7\n1 10 100 1000 10000 1000000 10000000", "...
1,599,766,307
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
278
0
import sys def gcd(a, b): if(a%b == 0): return b return gcd(a, a%b) n = int(input()) ar = list(map(int, input().split())) ar.sort() ret, acum = ar[0], 0 for i in range(1, n, 1): acum += (i*ar[i] - ret) ret += ar[i] jael = ret + 2*acum froz = gcd(jael, n) print(jael//froz, n//froz) ...
Title: Tourist Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub is a big fan of tourists. He wants to become a tourist himself, so he planned a trip. There are *n* destinations on a straight road that Iahub wants to visit. Iahub starts the excursion from kilometer 0. The *n* d...
```python import sys def gcd(a, b): if(a%b == 0): return b return gcd(a, a%b) n = int(input()) ar = list(map(int, input().split())) ar.sort() ret, acum = ar[0], 0 for i in range(1, n, 1): acum += (i*ar[i] - ret) ret += ar[i] jael = ret + 2*acum froz = gcd(jael, n) print(jael//froz, n//froz) ...
0
13
A
Numbers
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Numbers
1
64
Little Petya likes numbers a lot. He found that number 123 in base 16 consists of two digits: the first is 7 and the second is 11. So the sum of digits of 123 in base 16 is equal to 18. Now he wonders what is an average value of sum of digits of the number *A* written in all bases from 2 to *A*<=-<=1. Note that all c...
Input contains one integer number *A* (3<=≤<=*A*<=≤<=1000).
Output should contain required average value in format «X/Y», where X is the numerator and Y is the denominator.
[ "5\n", "3\n" ]
[ "7/3\n", "2/1\n" ]
In the first sample number 5 written in all bases from 2 to 4 looks so: 101, 12, 11. Sums of digits are 2, 3 and 2, respectively.
0
[ { "input": "5", "output": "7/3" }, { "input": "3", "output": "2/1" }, { "input": "1000", "output": "90132/499" }, { "input": "927", "output": "155449/925" }, { "input": "260", "output": "6265/129" }, { "input": "131", "output": "3370/129" }, { ...
1,632,158,412
2,147,483,647
Python 3
OK
TESTS
99
124
6,963,200
import math def somaBased(n, base): count = 0 while n > 0: count += n % base n //= base return count A = int(input()) somaBase=0 contador=2 while contador != A: somaBase += somaBased(A,contador) contador+=1 GCD = math.gcd(somaBase, A-2) calculoFloor= (A-2)//GCD print("%d/%...
Title: Numbers Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Little Petya likes numbers a lot. He found that number 123 in base 16 consists of two digits: the first is 7 and the second is 11. So the sum of digits of 123 in base 16 is equal to 18. Now he wonders what is an average value of su...
```python import math def somaBased(n, base): count = 0 while n > 0: count += n % base n //= base return count A = int(input()) somaBase=0 contador=2 while contador != A: somaBase += somaBased(A,contador) contador+=1 GCD = math.gcd(somaBase, A-2) calculoFloor= (A-2)//GCD p...
3.88612
492
A
Vanya and Cubes
PROGRAMMING
800
[ "implementation" ]
null
null
Vanya got *n* cubes. He decided to build a pyramid from them. Vanya wants to build the pyramid as follows: the top level of the pyramid must consist of 1 cube, the second level must consist of 1<=+<=2<==<=3 cubes, the third level must have 1<=+<=2<=+<=3<==<=6 cubes, and so on. Thus, the *i*-th level of the pyramid must...
The first line contains integer *n* (1<=≤<=*n*<=≤<=104) — the number of cubes given to Vanya.
Print the maximum possible height of the pyramid in the single line.
[ "1\n", "25\n" ]
[ "1\n", "4\n" ]
Illustration to the second sample:
500
[ { "input": "1", "output": "1" }, { "input": "25", "output": "4" }, { "input": "2", "output": "1" }, { "input": "4115", "output": "28" }, { "input": "9894", "output": "38" }, { "input": "7969", "output": "35" }, { "input": "6560", "outpu...
1,696,932,366
2,147,483,647
PyPy 3-64
OK
TESTS
25
77
0
# URL: https://codeforces.com/problemset/problem/492/A import io import os import sys input_buffer = io.BytesIO(os.read(0, os.fstat(0).st_size)) inp = lambda: input_buffer.readline().rstrip(b"\n").rstrip(b"\r") out = sys.stdout.write n = int(inp()) total = 0 for i in range(1, n + 1): total += (i * (i + 1)) // 2 ...
Title: Vanya and Cubes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya got *n* cubes. He decided to build a pyramid from them. Vanya wants to build the pyramid as follows: the top level of the pyramid must consist of 1 cube, the second level must consist of 1<=+<=2<==<=3 cubes, the t...
```python # URL: https://codeforces.com/problemset/problem/492/A import io import os import sys input_buffer = io.BytesIO(os.read(0, os.fstat(0).st_size)) inp = lambda: input_buffer.readline().rstrip(b"\n").rstrip(b"\r") out = sys.stdout.write n = int(inp()) total = 0 for i in range(1, n + 1): total += (i * (i +...
3
549
A
Face Detection
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
The developers of Looksery have to write an efficient algorithm that detects faces on a picture. Unfortunately, they are currently busy preparing a contest for you, so you will have to do it for them. In this problem an image is a rectangular table that consists of lowercase Latin letters. A face on the image is a 2<...
The first line contains two space-separated integers, *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=50) — the height and the width of the image, respectively. Next *n* lines define the image. Each line contains *m* lowercase Latin letters.
In the single line print the number of faces on the image.
[ "4 4\nxxxx\nxfax\nxcex\nxxxx\n", "4 2\nxx\ncf\nae\nxx\n", "2 3\nfac\ncef\n", "1 4\nface\n" ]
[ "1\n", "1\n", "2\n", "0\n" ]
In the first sample the image contains a single face, located in a square with the upper left corner at the second line and the second column: In the second sample the image also contains exactly one face, its upper left corner is at the second row and the first column. In the third sample two faces are shown: In ...
250
[ { "input": "4 4\nxxxx\nxfax\nxcex\nxxxx", "output": "1" }, { "input": "4 2\nxx\ncf\nae\nxx", "output": "1" }, { "input": "2 3\nfac\ncef", "output": "2" }, { "input": "1 4\nface", "output": "0" }, { "input": "5 5\nwmmwn\nlurcm\nkeetd\nfokon\ncxxgx", "output": "...
1,620,428,448
2,147,483,647
Python 3
OK
TESTS
37
77
6,963,200
r, c = map(int, input().split()) mat = [] sum = 0 res = 0 for _ in range(r): mat.append(input()) for i in range(r-1): for j in range(c-1): w1, w2, w3, w4 = mat[i][j], mat[i][j+1], mat[i+1][j+1], mat[i+1][j] if 'f' in {w1,w2,w3,w4}: sum+=1 if 'a' in {w1,w2,w3,w4}: sum+=1 if 'c' in {w1...
Title: Face Detection Time Limit: None seconds Memory Limit: None megabytes Problem Description: The developers of Looksery have to write an efficient algorithm that detects faces on a picture. Unfortunately, they are currently busy preparing a contest for you, so you will have to do it for them. In this problem a...
```python r, c = map(int, input().split()) mat = [] sum = 0 res = 0 for _ in range(r): mat.append(input()) for i in range(r-1): for j in range(c-1): w1, w2, w3, w4 = mat[i][j], mat[i][j+1], mat[i+1][j+1], mat[i+1][j] if 'f' in {w1,w2,w3,w4}: sum+=1 if 'a' in {w1,w2,w3,w4}: sum+=1 if ...
3
52
A
123-sequence
PROGRAMMING
900
[ "implementation" ]
A. 123-sequence
2
256
There is a given sequence of integers *a*1,<=*a*2,<=...,<=*a**n*, where every number is from 1 to 3 inclusively. You have to replace the minimum number of numbers in it so that all the numbers in the sequence are equal to each other.
The first line contains an integer *n* (1<=≤<=*n*<=≤<=106). The second line contains a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=3).
Print the minimum number of replacements needed to be performed to make all the numbers in the sequence equal.
[ "9\n1 3 2 2 2 1 1 2 3\n" ]
[ "5\n" ]
In the example all the numbers equal to 1 and 3 should be replaced by 2.
500
[ { "input": "9\n1 3 2 2 2 1 1 2 3", "output": "5" }, { "input": "6\n3 3 2 2 1 3", "output": "3" }, { "input": "12\n3 1 3 1 2 1 3 2 2 1 2 1", "output": "7" }, { "input": "15\n3 2 1 1 1 1 3 2 2 3 3 1 2 3 2", "output": "10" }, { "input": "2\n2 1", "output": "1" ...
1,682,968,832
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
154
2,764,800
from collections import Counter N = int(input()) print(N - max(Counter(map(int, input().split())).values))
Title: 123-sequence Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: There is a given sequence of integers *a*1,<=*a*2,<=...,<=*a**n*, where every number is from 1 to 3 inclusively. You have to replace the minimum number of numbers in it so that all the numbers in the sequence are equal to each...
```python from collections import Counter N = int(input()) print(N - max(Counter(map(int, input().split())).values)) ```
-1
285
D
Permutation Sum
PROGRAMMING
1,900
[ "bitmasks", "combinatorics", "dp", "implementation", "meet-in-the-middle" ]
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*. Pety...
The single line contains integer *n* (1<=≤<=*n*<=≤<=16).
In the single line print a single non-negative integer — the number of such pairs of permutations *a* and *b*, that exists permutation *c* that is sum of *a* and *b*, modulo 1000000007 (109<=+<=7).
[ "3\n", "5\n" ]
[ "18\n", "1800\n" ]
none
2,000
[ { "input": "3", "output": "18" }, { "input": "5", "output": "1800" }, { "input": "13", "output": "695720788" }, { "input": "1", "output": "1" }, { "input": "2", "output": "0" }, { "input": "4", "output": "0" }, { "input": "6", "output":...
1,687,216,383
2,147,483,647
PyPy 3-64
OK
TESTS
16
122
0
import sys input = sys.stdin.buffer.readline def process(n): A = [1, 3, 15, 133, 2025, 37851, 1030367, 36362925, 1606008513, 87656896891, 5778121715415, 452794797220965, 41609568918940625] if n % 2==0: sys.stdout.write('0\n') else: p = 10**9+7 A1 = A[n//2] % p f...
Title: Permutation Sum 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 *p**i*...
```python import sys input = sys.stdin.buffer.readline def process(n): A = [1, 3, 15, 133, 2025, 37851, 1030367, 36362925, 1606008513, 87656896891, 5778121715415, 452794797220965, 41609568918940625] if n % 2==0: sys.stdout.write('0\n') else: p = 10**9+7 A1 = A[n//2] % p ...
3
620
B
Grandfather Dovlet’s calculator
PROGRAMMING
1,000
[ "implementation" ]
null
null
Once Max found an electronic calculator from his grandfather Dovlet's chest. He noticed that the numbers were written with seven-segment indicators ([https://en.wikipedia.org/wiki/Seven-segment_display](https://en.wikipedia.org/wiki/Seven-segment_display)). Max starts to type all the values from *a* to *b*. After typi...
The only line contains two integers *a*,<=*b* (1<=≤<=*a*<=≤<=*b*<=≤<=106) — the first and the last number typed by Max.
Print the only integer *a* — the total number of printed segments.
[ "1 3\n", "10 15\n" ]
[ "12\n", "39\n" ]
none
0
[ { "input": "1 3", "output": "12" }, { "input": "10 15", "output": "39" }, { "input": "1 100", "output": "928" }, { "input": "100 10000", "output": "188446" }, { "input": "213 221442", "output": "5645356" }, { "input": "1 1000000", "output": "287333...
1,654,459,298
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
1,000
0
# E num_segments = [6, 2, 5, 5, 4, 5, 6, 3, 7, 6] a, b = [int(i) for i in input().split()] summ = 0 for num in range(a, b+1): for digit in str(num): summ += num_segments[int(digit)] print(summ)
Title: Grandfather Dovlet’s calculator Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once Max found an electronic calculator from his grandfather Dovlet's chest. He noticed that the numbers were written with seven-segment indicators ([https://en.wikipedia.org/wiki/Seven-segment_display](...
```python # E num_segments = [6, 2, 5, 5, 4, 5, 6, 3, 7, 6] a, b = [int(i) for i in input().split()] summ = 0 for num in range(a, b+1): for digit in str(num): summ += num_segments[int(digit)] print(summ) ```
0
272
A
Dima and Friends
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Dima and his friends have been playing hide and seek at Dima's place all night. As a result, Dima's place got messy. In the morning they decided that they need to clean the place. To decide who exactly would clean the apartment, the friends want to play a counting-out game. First, all the guys stand in a circle, and t...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of Dima's friends. Dima himself isn't considered to be his own friend. The second line contains *n* positive integers, not exceeding 5, representing, how many fingers the Dima's friends will show. The numbers in the lines are separated by a single s...
In a single line print the answer to the problem.
[ "1\n1\n", "1\n2\n", "2\n3 5\n" ]
[ "3\n", "2\n", "3\n" ]
In the first sample Dima can show 1, 3 or 5 fingers. If Dima shows 3 fingers, then the counting-out will go like that: Dima, his friend, Dima, his friend. In the second sample Dima can show 2 or 4 fingers.
500
[ { "input": "1\n1", "output": "3" }, { "input": "1\n2", "output": "2" }, { "input": "2\n3 5", "output": "3" }, { "input": "2\n3 5", "output": "3" }, { "input": "1\n5", "output": "3" }, { "input": "5\n4 4 3 5 1", "output": "4" }, { "input": "...
1,635,573,717
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
4,198,400
n = int(input()) + 1 s = sum(list(map(int, input().split()))) if n == s: print("2") elif s%n == 0: print("1") else: print(1 + s%n)
Title: Dima and Friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dima and his friends have been playing hide and seek at Dima's place all night. As a result, Dima's place got messy. In the morning they decided that they need to clean the place. To decide who exactly would clean the...
```python n = int(input()) + 1 s = sum(list(map(int, input().split()))) if n == s: print("2") elif s%n == 0: print("1") else: print(1 + s%n) ```
0
18
C
Stripe
PROGRAMMING
1,200
[ "data structures", "implementation" ]
C. Stripe
2
64
Once Bob took a paper stripe of *n* squares (the height of the stripe is 1 square). In each square he wrote an integer number, possibly negative. He became interested in how many ways exist to cut this stripe into two pieces so that the sum of numbers from one piece is equal to the sum of numbers from the other piece, ...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=105) — amount of squares in the stripe. The second line contains *n* space-separated numbers — they are the numbers written in the squares of the stripe. These numbers are integer and do not exceed 10000 in absolute value.
Output the amount of ways to cut the stripe into two non-empty pieces so that the sum of numbers from one piece is equal to the sum of numbers from the other piece. Don't forget that it's allowed to cut the stripe along the squares' borders only.
[ "9\n1 5 -6 7 9 -16 0 -2 2\n", "3\n1 1 1\n", "2\n0 0\n" ]
[ "3\n", "0\n", "1\n" ]
none
0
[ { "input": "9\n1 5 -6 7 9 -16 0 -2 2", "output": "3" }, { "input": "3\n1 1 1", "output": "0" }, { "input": "2\n0 0", "output": "1" }, { "input": "4\n100 1 10 111", "output": "1" }, { "input": "10\n0 4 -3 0 -2 2 -3 -3 2 5", "output": "3" }, { "input": "...
1,680,051,231
2,147,483,647
Python 3
OK
TESTS
45
1,278
6,758,400
n = int(input()) squares = list(map(eval, input().split())) sum1 = squares[0] sum2 = sum(squares) - sum1 count = 0 for i in range(1, n): if sum1 == sum2: count += 1 sum1 += squares[i] sum2 -= squares[i] else: sum1 += squares[i] sum2 -= squares[i] print(count)
Title: Stripe Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Once Bob took a paper stripe of *n* squares (the height of the stripe is 1 square). In each square he wrote an integer number, possibly negative. He became interested in how many ways exist to cut this stripe into two pieces so that ...
```python n = int(input()) squares = list(map(eval, input().split())) sum1 = squares[0] sum2 = sum(squares) - sum1 count = 0 for i in range(1, n): if sum1 == sum2: count += 1 sum1 += squares[i] sum2 -= squares[i] else: sum1 += squares[i] sum2 -= squares[i] print(count) ...
3.630146
586
B
Laurenty and Shop
PROGRAMMING
1,300
[ "implementation" ]
null
null
A little boy Laurenty has been playing his favourite game Nota for quite a while and is now very hungry. The boy wants to make sausage and cheese sandwiches, but first, he needs to buy a sausage and some cheese. The town where Laurenty lives in is not large. The houses in it are located in two rows, *n* houses in each...
The first line of the input contains integer *n* (2<=≤<=*n*<=≤<=50) — the number of houses in each row. Each of the next two lines contains *n*<=-<=1 space-separated integer — values *a**ij* (1<=≤<=*a**ij*<=≤<=100). The last line contains *n* space-separated integers *b**j* (1<=≤<=*b**j*<=≤<=100).
Print a single integer — the least total time Laurenty needs to wait at the crossroads, given that he crosses the avenue only once both on his way to the store and on his way back home.
[ "4\n1 2 3\n3 2 1\n3 2 2 3\n", "3\n1 2\n3 3\n2 1 3\n", "2\n1\n1\n1 1\n" ]
[ "12\n", "11\n", "4\n" ]
The first sample is shown on the figure above. In the second sample, Laurenty's path can look as follows: - Laurenty crosses the avenue, the waiting time is 3; - Laurenty uses the second crossing in the first row, the waiting time is 2; - Laurenty uses the first crossing in the first row, the waiting time is 1; ...
1,000
[ { "input": "4\n1 2 3\n3 2 1\n3 2 2 3", "output": "12" }, { "input": "3\n1 2\n3 3\n2 1 3", "output": "11" }, { "input": "2\n1\n1\n1 1", "output": "4" }, { "input": "2\n1\n1\n2 1", "output": "5" }, { "input": "3\n1 100\n1 1\n100 100 100", "output": "204" }, ...
1,444,718,280
2,147,483,647
Python 3
OK
TESTS
40
62
0
N = int(input()) fr, sr = [ int(i) for i in input().split() ], [ int(i) for i in input().split() ] cross = [ int(i) for i in input().split() ] spend_time = [sum(sr) + cross[0]] for i in range(1, N): summ = spend_time[-1] - sr[i - 1] - cross[i - 1] summ = summ + fr[i - 1] + cross[i] spend_time.app...
Title: Laurenty and Shop Time Limit: None seconds Memory Limit: None megabytes Problem Description: A little boy Laurenty has been playing his favourite game Nota for quite a while and is now very hungry. The boy wants to make sausage and cheese sandwiches, but first, he needs to buy a sausage and some cheese. The ...
```python N = int(input()) fr, sr = [ int(i) for i in input().split() ], [ int(i) for i in input().split() ] cross = [ int(i) for i in input().split() ] spend_time = [sum(sr) + cross[0]] for i in range(1, N): summ = spend_time[-1] - sr[i - 1] - cross[i - 1] summ = summ + fr[i - 1] + cross[i] spen...
3
231
A
Team
PROGRAMMING
800
[ "brute force", "greedy" ]
null
null
One day three best friends Petya, Vasya and Tonya decided to form a team and take part in programming contests. Participants are usually offered several problems during programming contests. Long before the start the friends decided that they will implement a problem if at least two of them are sure about the solution....
The first input line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of problems in the contest. Then *n* lines contain three integers each, each integer is either 0 or 1. If the first number in the line equals 1, then Petya is sure about the problem's solution, otherwise he isn't sure. The second numbe...
Print a single integer — the number of problems the friends will implement on the contest.
[ "3\n1 1 0\n1 1 1\n1 0 0\n", "2\n1 0 0\n0 1 1\n" ]
[ "2\n", "1\n" ]
In the first sample Petya and Vasya are sure that they know how to solve the first problem and all three of them know how to solve the second problem. That means that they will write solutions for these problems. Only Petya is sure about the solution for the third problem, but that isn't enough, so the friends won't ta...
500
[ { "input": "3\n1 1 0\n1 1 1\n1 0 0", "output": "2" }, { "input": "2\n1 0 0\n0 1 1", "output": "1" }, { "input": "1\n1 0 0", "output": "0" }, { "input": "2\n1 0 0\n1 1 1", "output": "1" }, { "input": "5\n1 0 0\n0 1 0\n1 1 1\n0 0 1\n0 0 0", "output": "1" }, ...
1,699,040,438
2,147,483,647
Python 3
OK
TESTS
21
62
0
n = int(input()) sls = 0 for i in range(n): m = input() ppl = 0 for i in range(len(m.split(' '))): if m.split(' ')[i] == '1': ppl+=1 if ppl >= 2: sls+=1 print(sls)
Title: Team Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day three best friends Petya, Vasya and Tonya decided to form a team and take part in programming contests. Participants are usually offered several problems during programming contests. Long before the start the friends decid...
```python n = int(input()) sls = 0 for i in range(n): m = input() ppl = 0 for i in range(len(m.split(' '))): if m.split(' ')[i] == '1': ppl+=1 if ppl >= 2: sls+=1 print(sls) ```
3
432
A
Choosing Teams
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. According to the ACM ICPC rules, each person can participate in the world championship at most 5 times. Th...
The first line contains two integers, *n* and *k* (1<=≤<=*n*<=≤<=2000; 1<=≤<=*k*<=≤<=5). The next line contains *n* integers: *y*1,<=*y*2,<=...,<=*y**n* (0<=≤<=*y**i*<=≤<=5), where *y**i* shows the number of times the *i*-th person participated in the ACM ICPC world championship.
Print a single number — the answer to the problem.
[ "5 2\n0 4 5 1 0\n", "6 4\n0 1 2 3 4 5\n", "6 5\n0 0 0 0 0 0\n" ]
[ "1\n", "0\n", "2\n" ]
In the first sample only one team could be made: the first, the fourth and the fifth participants. In the second sample no teams could be created. In the third sample two teams could be created. Any partition into two teams fits.
500
[ { "input": "5 2\n0 4 5 1 0", "output": "1" }, { "input": "6 4\n0 1 2 3 4 5", "output": "0" }, { "input": "6 5\n0 0 0 0 0 0", "output": "2" }, { "input": "3 4\n0 1 0", "output": "1" }, { "input": "3 4\n0 2 0", "output": "0" }, { "input": "6 5\n0 0 0 0 0...
1,688,035,603
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
31
0
def func(lst, k): c = 0 #if(len(lst) % 3 != 0): for i in lst: if(i+k > 5): c += 1 if(c > len(lst)%3): return 0 else: return len(lst)//3 n, k = map(int,input().split()) input_string = input() lst = input_string.split(" ") for i in range(0,len(lst)): ...
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 def func(lst, k): c = 0 #if(len(lst) % 3 != 0): for i in lst: if(i+k > 5): c += 1 if(c > len(lst)%3): return 0 else: return len(lst)//3 n, k = map(int,input().split()) input_string = input() lst = input_string.split(" ") for i in range(0,l...
0
514
A
Chewbaсca and Number
PROGRAMMING
1,200
[ "greedy", "implementation" ]
null
null
Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform the initial number *x* to the minimum possible positive number by inverting some (possibly, zero) digits....
The first line contains a single integer *x* (1<=≤<=*x*<=≤<=1018) — the number that Luke Skywalker gave to Chewbacca.
Print the minimum possible positive number that Chewbacca can obtain after inverting some digits. The number shouldn't contain leading zeroes.
[ "27\n", "4545\n" ]
[ "22\n", "4444\n" ]
none
500
[ { "input": "27", "output": "22" }, { "input": "4545", "output": "4444" }, { "input": "1", "output": "1" }, { "input": "9", "output": "9" }, { "input": "8772", "output": "1222" }, { "input": "81", "output": "11" }, { "input": "71723447", ...
1,697,804,768
2,147,483,647
Python 3
OK
TESTS
43
46
0
n = input() ans = "" for index, i in enumerate(n): if index == 0 and i == "9": ans += "9" continue if index == len(n) and i == "9": ans += "9" continue if int(i) > 4: ans += str(9 - int(i)) else: ans += i print(ans)
Title: Chewbaсca and Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform...
```python n = input() ans = "" for index, i in enumerate(n): if index == 0 and i == "9": ans += "9" continue if index == len(n) and i == "9": ans += "9" continue if int(i) > 4: ans += str(9 - int(i)) else: ans += i print(ans) ```
3
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,599,139,037
2,147,483,647
Python 3
OK
TESTS
102
109
0
x = input() y = input() z = ['0' if xx==yy else '1' for(xx,yy) in zip(x,y)] print(''.join(z))
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 x = input() y = input() z = ['0' if xx==yy else '1' for(xx,yy) in zip(x,y)] print(''.join(z)) ```
3.97275
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,680,783,142
2,147,483,647
PyPy 3-64
OK
TESTS
54
62
0
s = input() k,r = map(int,s.split()) i = 1 ans = 0 while True: ans = k * i i += 1 if(ans%10==0 or ans%10==r): break print(i-1)
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 s = input() k,r = map(int,s.split()) i = 1 ans = 0 while True: ans = k * i i += 1 if(ans%10==0 or ans%10==r): break print(i-1) ```
3
0
none
none
none
0
[ "none" ]
null
null
Little Nastya has a hobby, she likes to remove some letters from word, to obtain another word. But it turns out to be pretty hard for her, because she is too young. Therefore, her brother Sergey always helps her. Sergey gives Nastya the word *t* and wants to get the word *p* out of it. Nastya removes letters in a cert...
The first and second lines of the input contain the words *t* and *p*, respectively. Words are composed of lowercase letters of the Latin alphabet (1<=≤<=|*p*|<=&lt;<=|*t*|<=≤<=200<=000). It is guaranteed that the word *p* can be obtained by removing the letters from word *t*. Next line contains a permutation *a*1,<=*...
Print a single integer number, the maximum number of letters that Nastya can remove.
[ "ababcba\nabb\n5 3 4 1 7 6 2\n", "bbbabb\nbb\n1 6 3 4 2 5\n" ]
[ "3", "4" ]
In the first sample test sequence of removing made by Nastya looks like this: "ababcba" <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> "ababcba" <img align="middle" class="tex-formula" src="https...
0
[ { "input": "ababcba\nabb\n5 3 4 1 7 6 2", "output": "3" }, { "input": "bbbabb\nbb\n1 6 3 4 2 5", "output": "4" }, { "input": "cacaccccccacccc\ncacc\n10 9 14 5 1 7 15 3 6 12 4 8 11 13 2", "output": "9" }, { "input": "aaaabaaabaabaaaaaaaa\naaaa\n18 5 4 6 13 9 1 3 7 8 16 10 12 1...
1,489,297,015
2,147,483,647
Python 3
OK
TESTS
43
1,450
19,456,000
def binaryFind(): c = [0]*lenp maxlen = 0 for i in range(0,mid): c[a[i]-1]=1 for i in range(0,lenp): if c[i]==0: if p[i]==t[maxlen]: maxlen+=1 if maxlen==lent: return True return False p = input() t = input() a = list(ma...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Nastya has a hobby, she likes to remove some letters from word, to obtain another word. But it turns out to be pretty hard for her, because she is too young. Therefore, her brother Sergey always helps her. Sergey gives Nas...
```python def binaryFind(): c = [0]*lenp maxlen = 0 for i in range(0,mid): c[a[i]-1]=1 for i in range(0,lenp): if c[i]==0: if p[i]==t[maxlen]: maxlen+=1 if maxlen==lent: return True return False p = input() t = input() a...
3
0
none
none
none
0
[ "none" ]
null
null
The mobile application store has a new game called "Subway Roller". The protagonist of the game Philip is located in one end of the tunnel and wants to get out of the other one. The tunnel is a rectangular field consisting of three rows and *n* columns. At the beginning of the game the hero is in some cell of the left...
Each test contains from one to ten sets of the input data. The first line of the test contains a single integer *t* (1<=≤<=*t*<=≤<=10 for pretests and tests or *t*<==<=1 for hacks; see the Notes section for details) — the number of sets. Then follows the description of *t* sets of the input data. The first line of t...
For each set of the input data print on a single line word YES, if it is possible to win the game and word NO otherwise.
[ "2\n16 4\n...AAAAA........\ns.BBB......CCCCC\n........DDDDD...\n16 4\n...AAAAA........\ns.BBB....CCCCC..\n.......DDDDD....\n", "2\n10 4\ns.ZZ......\n.....AAABB\n.YYYYYY...\n10 4\ns.ZZ......\n....AAAABB\n.YYYYYY...\n" ]
[ "YES\nNO\n", "YES\nNO\n" ]
In the first set of the input of the first sample Philip must first go forward and go down to the third row of the field, then go only forward, then go forward and climb to the second row, go forward again and go up to the first row. After that way no train blocks Philip's path, so he can go straight to the end of the ...
0
[]
1,454,070,456
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
1
92
204,800
#! /usr/bin/env python # -*- coding: utf-8 -*- # vim:fenc=utf-8 # # Copyright © 2016 missingdays <missingdays@missingdays> # # Distributed under terms of the MIT license. """ """ def shift(a, n): b = [["." for i in range(n)] for i in range(3)] for i in range(3): for j in range(n-2): b[i...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: The mobile application store has a new game called "Subway Roller". The protagonist of the game Philip is located in one end of the tunnel and wants to get out of the other one. The tunnel is a rectangular field consisting of thr...
```python #! /usr/bin/env python # -*- coding: utf-8 -*- # vim:fenc=utf-8 # # Copyright © 2016 missingdays <missingdays@missingdays> # # Distributed under terms of the MIT license. """ """ def shift(a, n): b = [["." for i in range(n)] for i in range(3)] for i in range(3): for j in range(n-2): ...
0
618
B
Guess the Permutation
PROGRAMMING
1,100
[ "constructive algorithms" ]
null
null
Bob has a permutation of integers from 1 to *n*. Denote this permutation as *p*. The *i*-th element of *p* will be denoted as *p**i*. For all pairs of distinct integers *i*,<=*j* between 1 and *n*, he wrote the number *a**i*,<=*j*<==<=*min*(*p**i*,<=*p**j*). He writes *a**i*,<=*i*<==<=0 for all integer *i* from 1 to *n...
The first line of the input will contain a single integer *n* (2<=≤<=*n*<=≤<=50). The next *n* lines will contain the values of *a**i*,<=*j*. The *j*-th number on the *i*-th line will represent *a**i*,<=*j*. The *i*-th number on the *i*-th line will be 0. It's guaranteed that *a**i*,<=*j*<==<=*a**j*,<=*i* and there is...
Print *n* space separated integers, which represents a permutation that could have generated these values. If there are multiple possible solutions, print any of them.
[ "2\n0 1\n1 0\n", "5\n0 2 2 1 2\n2 0 4 1 3\n2 4 0 1 3\n1 1 1 0 1\n2 3 3 1 0\n" ]
[ "2 1\n", "2 5 4 1 3\n" ]
In the first case, the answer can be {1, 2} or {2, 1}. In the second case, another possible answer is {2, 4, 5, 1, 3}.
1,000
[ { "input": "2\n0 1\n1 0", "output": "2 1" }, { "input": "5\n0 2 2 1 2\n2 0 4 1 3\n2 4 0 1 3\n1 1 1 0 1\n2 3 3 1 0", "output": "2 5 4 1 3" }, { "input": "10\n0 1 5 2 5 3 4 5 5 5\n1 0 1 1 1 1 1 1 1 1\n5 1 0 2 6 3 4 6 6 6\n2 1 2 0 2 2 2 2 2 2\n5 1 6 2 0 3 4 8 8 7\n3 1 3 2 3 0 3 3 3 3\n4 1 4...
1,517,962,272
2,147,483,647
Python 3
OK
TESTS
23
77
5,632,000
w=eval(input()) h=w Matrix = [[0 for x in range(w)] for y in range(h)] i=0 while (i<w): Matrix[i]=list(map(int,input().split())) i+=1 i=0 while(i<w): a=set(Matrix[i]) if (len(a)<len(Matrix[i])): i+=1 else: s=Matrix[i] k=0 while (s[k]!=0): ...
Title: Guess the Permutation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bob has a permutation of integers from 1 to *n*. Denote this permutation as *p*. The *i*-th element of *p* will be denoted as *p**i*. For all pairs of distinct integers *i*,<=*j* between 1 and *n*, he wrote the nu...
```python w=eval(input()) h=w Matrix = [[0 for x in range(w)] for y in range(h)] i=0 while (i<w): Matrix[i]=list(map(int,input().split())) i+=1 i=0 while(i<w): a=set(Matrix[i]) if (len(a)<len(Matrix[i])): i+=1 else: s=Matrix[i] k=0 while (s[k]!=0):...
3
588
A
Duff and Meat
PROGRAMMING
900
[ "greedy" ]
null
null
Duff is addicted to meat! Malek wants to keep her happy for *n* days. In order to be happy in *i*-th day, she needs to eat exactly *a**i* kilograms of meat. There is a big shop uptown and Malek wants to buy meat for her from there. In *i*-th day, they sell meat for *p**i* dollars per kilogram. Malek knows all numbers ...
The first line of input contains integer *n* (1<=≤<=*n*<=≤<=105), the number of days. In the next *n* lines, *i*-th line contains two integers *a**i* and *p**i* (1<=≤<=*a**i*,<=*p**i*<=≤<=100), the amount of meat Duff needs and the cost of meat in that day.
Print the minimum money needed to keep Duff happy for *n* days, in one line.
[ "3\n1 3\n2 2\n3 1\n", "3\n1 3\n2 1\n3 2\n" ]
[ "10\n", "8\n" ]
In the first sample case: An optimal way would be to buy 1 kg on the first day, 2 kg on the second day and 3 kg on the third day. In the second sample case: An optimal way would be to buy 1 kg on the first day and 5 kg (needed meat for the second and third day) on the second day.
750
[ { "input": "3\n1 3\n2 2\n3 1", "output": "10" }, { "input": "3\n1 3\n2 1\n3 2", "output": "8" }, { "input": "1\n39 52", "output": "2028" }, { "input": "2\n25 56\n94 17", "output": "2998" }, { "input": "5\n39 21\n95 89\n73 90\n9 55\n85 32", "output": "6321" }...
1,526,804,426
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
77
0
x=int(input()) t=0 p=[] q=[] for n in range(x): if n!=x-1: a,b=map(int,input().split()) q.append(a) if len(p)==0: p.append(b) else: if b>=p[len(p)-1]: p=p else: q=q[0:len(q)-1] aa=sum(q) t=t+aa*p[0] ...
Title: Duff and Meat Time Limit: None seconds Memory Limit: None megabytes Problem Description: Duff is addicted to meat! Malek wants to keep her happy for *n* days. In order to be happy in *i*-th day, she needs to eat exactly *a**i* kilograms of meat. There is a big shop uptown and Malek wants to buy meat for her ...
```python x=int(input()) t=0 p=[] q=[] for n in range(x): if n!=x-1: a,b=map(int,input().split()) q.append(a) if len(p)==0: p.append(b) else: if b>=p[len(p)-1]: p=p else: q=q[0:len(q)-1] aa=sum(q) t=t+aa*p[0] ...
-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,657,162,724
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
62
0
n,m=map(int,input().split()) a=list(map(int,input().split())) a.sort() print(abs(sum(a[:m])))
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=list(map(int,input().split())) a.sort() print(abs(sum(a[:m]))) ```
0
799
A
Carrot Cakes
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
In some game by Playrix it takes *t* minutes for an oven to bake *k* carrot cakes, all cakes are ready at the same moment *t* minutes after they started baking. Arkady needs at least *n* cakes to complete a task, but he currently don't have any. However, he has infinitely many ingredients and one oven. Moreover, Arkady...
The only line contains four integers *n*, *t*, *k*, *d* (1<=≤<=*n*,<=*t*,<=*k*,<=*d*<=≤<=1<=000) — the number of cakes needed, the time needed for one oven to bake *k* cakes, the number of cakes baked at the same time, the time needed to build the second oven.
If it is reasonable to build the second oven, print "YES". Otherwise print "NO".
[ "8 6 4 5\n", "8 6 4 6\n", "10 3 11 4\n", "4 2 1 4\n" ]
[ "YES\n", "NO\n", "NO\n", "YES\n" ]
In the first example it is possible to get 8 cakes in 12 minutes using one oven. The second oven can be built in 5 minutes, so after 6 minutes the first oven bakes 4 cakes, the second oven bakes 4 more ovens after 11 minutes. Thus, it is reasonable to build the second oven. In the second example it doesn't matter whe...
500
[ { "input": "8 6 4 5", "output": "YES" }, { "input": "8 6 4 6", "output": "NO" }, { "input": "10 3 11 4", "output": "NO" }, { "input": "4 2 1 4", "output": "YES" }, { "input": "28 17 16 26", "output": "NO" }, { "input": "60 69 9 438", "output": "NO"...
1,661,366,542
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
6
62
0
n,t,k,d=list(map(int,input().split())) if t*(n/k)==d+t or t*(n/k)<d+t: print("NO") elif k>n: print("NO") else: print("YES")
Title: Carrot Cakes Time Limit: None seconds Memory Limit: None megabytes Problem Description: In some game by Playrix it takes *t* minutes for an oven to bake *k* carrot cakes, all cakes are ready at the same moment *t* minutes after they started baking. Arkady needs at least *n* cakes to complete a task, but he cu...
```python n,t,k,d=list(map(int,input().split())) if t*(n/k)==d+t or t*(n/k)<d+t: print("NO") elif k>n: print("NO") else: print("YES") ```
0
625
B
War of the Corporations
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "strings" ]
null
null
A long time ago, in a galaxy far far away two giant IT-corporations Pineapple and Gogol continue their fierce competition. Crucial moment is just around the corner: Gogol is ready to release it's new tablet Lastus 3000. This new device is equipped with specially designed artificial intelligence (AI). Employees of Pine...
The first line of the input contains the name of AI designed by Gogol, its length doesn't exceed 100<=000 characters. Second line contains the name of the phone released by Pineapple 200 years ago, its length doesn't exceed 30. Both string are non-empty and consist of only small English letters.
Print the minimum number of characters that must be replaced with "#" in order to obtain that the name of the phone doesn't occur in the name of AI as a substring.
[ "intellect\ntell\n", "google\napple\n", "sirisiri\nsir\n" ]
[ "1", "0", "2" ]
In the first sample AI's name may be replaced with "int#llect". In the second sample Gogol can just keep things as they are. In the third sample one of the new possible names of AI may be "s#ris#ri".
750
[ { "input": "intellect\ntell", "output": "1" }, { "input": "google\napple", "output": "0" }, { "input": "sirisiri\nsir", "output": "2" }, { "input": "sirisiri\nsiri", "output": "2" }, { "input": "aaaaaaa\naaaa", "output": "1" }, { "input": "bbbbbb\nbb",...
1,516,664,413
2,147,483,647
Python 3
OK
TESTS
56
62
5,836,800
a=input() b=input() c=a.count(b) print(c)
Title: War of the Corporations Time Limit: None seconds Memory Limit: None megabytes Problem Description: A long time ago, in a galaxy far far away two giant IT-corporations Pineapple and Gogol continue their fierce competition. Crucial moment is just around the corner: Gogol is ready to release it's new tablet Last...
```python a=input() b=input() c=a.count(b) print(c) ```
3
554
B
Ohana Cleans Up
PROGRAMMING
1,200
[ "brute force", "greedy", "strings" ]
null
null
Ohana Matsumae is trying to clean a room, which is divided up into an *n* by *n* grid of squares. Each square is initially either clean or dirty. Ohana can sweep her broom over columns of the grid. Her broom is very strange: if she sweeps over a clean square, it will become dirty, and if she sweeps over a dirty square,...
The first line of input will be a single integer *n* (1<=≤<=*n*<=≤<=100). The next *n* lines will describe the state of the room. The *i*-th line will contain a binary string with *n* characters denoting the state of the *i*-th row of the room. The *j*-th character on this line is '1' if the *j*-th square in the *i*-t...
The output should be a single line containing an integer equal to a maximum possible number of rows that are completely clean.
[ "4\n0101\n1000\n1111\n0101\n", "3\n111\n111\n111\n" ]
[ "2\n", "3\n" ]
In the first sample, Ohana can sweep the 1st and 3rd columns. This will make the 1st and 4th row be completely clean. In the second sample, everything is already clean, so Ohana doesn't need to do anything.
500
[ { "input": "4\n0101\n1000\n1111\n0101", "output": "2" }, { "input": "3\n111\n111\n111", "output": "3" }, { "input": "10\n0100000000\n0000000000\n0000000000\n0000000000\n0000000000\n0000000000\n0000000000\n0000000000\n0000000000\n0000000000", "output": "9" }, { "input": "1\n1"...
1,445,109,714
2,147,483,647
Python 3
OK
TESTS
36
62
512,000
n = int(input()) from collections import Counter print(Counter([input() for i in range(n)]).most_common(1)[0][1])
Title: Ohana Cleans Up Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ohana Matsumae is trying to clean a room, which is divided up into an *n* by *n* grid of squares. Each square is initially either clean or dirty. Ohana can sweep her broom over columns of the grid. Her broom is very str...
```python n = int(input()) from collections import Counter print(Counter([input() for i in range(n)]).most_common(1)[0][1]) ```
3
701
C
They Are Everywhere
PROGRAMMING
1,500
[ "binary search", "strings", "two pointers" ]
null
null
Sergei B., the young coach of Pokemons, has found the big house which consists of *n* flats ordered in a row from left to right. It is possible to enter each flat from the street. It is possible to go out from each flat. Also, each flat is connected with the flat to the left and the flat to the right. Flat number 1 is ...
The first line contains the integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of flats in the house. The second line contains the row *s* with the length *n*, it consists of uppercase and lowercase letters of English alphabet, the *i*-th letter equals the type of Pokemon, which is in the flat number *i*.
Print the minimum number of flats which Sergei B. should visit in order to catch Pokemons of all types which there are in the house.
[ "3\nAaA\n", "7\nbcAAcbc\n", "6\naaBCCe\n" ]
[ "2\n", "3\n", "5\n" ]
In the first test Sergei B. can begin, for example, from the flat number 1 and end in the flat number 2. In the second test Sergei B. can begin, for example, from the flat number 4 and end in the flat number 6. In the third test Sergei B. must begin from the flat number 2 and end in the flat number 6.
1,000
[ { "input": "3\nAaA", "output": "2" }, { "input": "7\nbcAAcbc", "output": "3" }, { "input": "6\naaBCCe", "output": "5" }, { "input": "1\nA", "output": "1" }, { "input": "1\ng", "output": "1" }, { "input": "52\nabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQ...
1,665,835,420
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
10
2,000
8,294,400
def ans1(): num = int(input()) str = input() s = set(str) l = len(s) res = [] def front(i): count = 0 temp_s = set() for m in range(i,len(str)): count +=1 if str[m] not in temp_s: temp_s.add(str[m]) if len(t...
Title: They Are Everywhere Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sergei B., the young coach of Pokemons, has found the big house which consists of *n* flats ordered in a row from left to right. It is possible to enter each flat from the street. It is possible to go out from each ...
```python def ans1(): num = int(input()) str = input() s = set(str) l = len(s) res = [] def front(i): count = 0 temp_s = set() for m in range(i,len(str)): count +=1 if str[m] not in temp_s: temp_s.add(str[m]) ...
0
803
A
Maximal Binary Matrix
PROGRAMMING
1,400
[ "constructive algorithms" ]
null
null
You are given matrix with *n* rows and *n* columns filled with zeroes. You should put *k* ones in it in such a way that the resulting matrix is symmetrical with respect to the main diagonal (the diagonal that goes from the top left to the bottom right corner) and is lexicographically maximal. One matrix is lexicograph...
The first line consists of two numbers *n* and *k* (1<=≤<=*n*<=≤<=100, 0<=≤<=*k*<=≤<=106).
If the answer exists then output resulting matrix. Otherwise output -1.
[ "2 1\n", "3 2\n", "2 5\n" ]
[ "1 0 \n0 0 \n", "1 0 0 \n0 1 0 \n0 0 0 \n", "-1\n" ]
none
0
[ { "input": "2 1", "output": "1 0 \n0 0 " }, { "input": "3 2", "output": "1 0 0 \n0 1 0 \n0 0 0 " }, { "input": "2 5", "output": "-1" }, { "input": "1 0", "output": "0 " }, { "input": "1 1", "output": "1 " }, { "input": "20 398", "output": "1 1 1 1 ...
1,698,413,501
2,147,483,647
Python 3
OK
TESTS
168
46
0
n,k = map(int,input().split()) matrix = [[0]*n for i in range(n)] for i in range(n): for j in range(i,n): if k>1 and i != j: matrix[i][j] = 1 matrix[j][i] = 1 k -= 2 elif k>0 and i == j: matrix[i][j] = 1 matrix[j][i] = 1 ...
Title: Maximal Binary Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given matrix with *n* rows and *n* columns filled with zeroes. You should put *k* ones in it in such a way that the resulting matrix is symmetrical with respect to the main diagonal (the diagonal that goes...
```python n,k = map(int,input().split()) matrix = [[0]*n for i in range(n)] for i in range(n): for j in range(i,n): if k>1 and i != j: matrix[i][j] = 1 matrix[j][i] = 1 k -= 2 elif k>0 and i == j: matrix[i][j] = 1 matrix[j][i]...
3
0
none
none
none
0
[ "none" ]
null
null
From beginning till end, this message has been waiting to be conveyed. For a given unordered multiset of *n* lowercase English letters ("multi" means that a letter may appear more than once), we treat all letters as strings of length 1, and repeat the following operation *n*<=-<=1 times: - Remove any two elements *s...
The first and only line of input contains a non-negative integer *k* (0<=≤<=*k*<=≤<=100<=000) — the required minimum cost.
Output a non-empty string of no more than 100<=000 lowercase English letters — any multiset satisfying the requirements, concatenated to be a string. Note that the printed string doesn't need to be the final concatenated string. It only needs to represent an unordered multiset of letters.
[ "12\n", "3\n" ]
[ "abababab\n", "codeforces\n" ]
For the multiset {'a', 'b', 'a', 'b', 'a', 'b', 'a', 'b'}, one of the ways to complete the process is as follows: - {"ab", "a", "b", "a", "b", "a", "b"}, with a cost of 0; - {"aba", "b", "a", "b", "a", "b"}, with a cost of 1; - {"abab", "a", "b", "a", "b"}, with a cost of 1; - {"abab", "ab", "a", "b"}, with a cost...
0
[ { "input": "12", "output": "abababab" }, { "input": "3", "output": "codeforces" }, { "input": "0", "output": "o" }, { "input": "2", "output": "aabb" }, { "input": "5", "output": "aaabbcc" }, { "input": "10", "output": "aaaaa" }, { "input": ...
1,504,278,985
6,085
Python 3
OK
TESTS
25
62
0
n = int(input()) def locos(n): cos = 0 i = 1 while cos + i <= n: cos += i i += 1 return i , cos rtn = '' for i in "abcdefghijklmnopqrstuvwxyz": #print(locos(n)) num , cos = locos(n) #print(num) rtn += i * num n -= cos if(n == 0): break print(rtn)
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: From beginning till end, this message has been waiting to be conveyed. For a given unordered multiset of *n* lowercase English letters ("multi" means that a letter may appear more than once), we treat all letters as strings of le...
```python n = int(input()) def locos(n): cos = 0 i = 1 while cos + i <= n: cos += i i += 1 return i , cos rtn = '' for i in "abcdefghijklmnopqrstuvwxyz": #print(locos(n)) num , cos = locos(n) #print(num) rtn += i * num n -= cos if(n == 0): break print(rtn) ```
3
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,657,260,463
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
46
0
a=input().lower() c=["h","e","l","o"] b="" for i in a: if i in c: if i in b: continue else: b+=i if b=="helo": print("YES") else: print("NO")
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python a=input().lower() c=["h","e","l","o"] b="" for i in a: if i in c: if i in b: continue else: b+=i if b=="helo": print("YES") else: print("NO") ```
0
703
A
Mishka and Game
PROGRAMMING
800
[ "implementation" ]
null
null
Mishka is a little polar bear. As known, little bears loves spending their free time playing dice for chocolates. Once in a wonderful sunny morning, walking around blocks of ice, Mishka met her friend Chris, and they started playing the game. Rules of the game are very simple: at first number of rounds *n* is defined....
The first line of the input contains single integer *n* *n* (1<=≤<=*n*<=≤<=100) — the number of game rounds. The next *n* lines contains rounds description. *i*-th of them contains pair of integers *m**i* and *c**i* (1<=≤<=*m**i*,<=<=*c**i*<=≤<=6) — values on dice upper face after Mishka's and Chris' throws in *i*-th ...
If Mishka is the winner of the game, print "Mishka" (without quotes) in the only line. If Chris is the winner of the game, print "Chris" (without quotes) in the only line. If the result of the game is draw, print "Friendship is magic!^^" (without quotes) in the only line.
[ "3\n3 5\n2 1\n4 2\n", "2\n6 1\n1 6\n", "3\n1 5\n3 3\n2 2\n" ]
[ "Mishka", "Friendship is magic!^^", "Chris" ]
In the first sample case Mishka loses the first round, but wins second and third rounds and thus she is the winner of the game. In the second sample case Mishka wins the first round, Chris wins the second round, and the game ends with draw with score 1:1. In the third sample case Chris wins the first round, but there...
500
[ { "input": "3\n3 5\n2 1\n4 2", "output": "Mishka" }, { "input": "2\n6 1\n1 6", "output": "Friendship is magic!^^" }, { "input": "3\n1 5\n3 3\n2 2", "output": "Chris" }, { "input": "6\n4 1\n4 2\n5 3\n5 1\n5 3\n4 1", "output": "Mishka" }, { "input": "8\n2 4\n1 4\n1 ...
1,676,625,275
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n = int(input()) for i in range(n): a, b = input().split a = int(a) b = int(b) if(a > b): print(Mishka) else: print(Chris) else: print(Friendship is magic!^^)
Title: Mishka and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mishka is a little polar bear. As known, little bears loves spending their free time playing dice for chocolates. Once in a wonderful sunny morning, walking around blocks of ice, Mishka met her friend Chris, and they st...
```python n = int(input()) for i in range(n): a, b = input().split a = int(a) b = int(b) if(a > b): print(Mishka) else: print(Chris) else: print(Friendship is magic!^^) ```
-1
770
A
New Password
PROGRAMMING
800
[ "*special", "implementation" ]
null
null
Innokentiy decides to change the password in the social net "Contact!", but he is too lazy to invent a new password by himself. That is why he needs your help. Innokentiy decides that new password should satisfy the following conditions: - the length of the password must be equal to *n*, - the password should cons...
The first line contains two positive integers *n* and *k* (2<=≤<=*n*<=≤<=100, 2<=≤<=*k*<=≤<=*min*(*n*,<=26)) — the length of the password and the number of distinct symbols in it. Pay attention that a desired new password always exists.
Print any password which satisfies all conditions given by Innokentiy.
[ "4 3\n", "6 6\n", "5 2\n" ]
[ "java\n", "python\n", "phphp\n" ]
In the first test there is one of the appropriate new passwords — java, because its length is equal to 4 and 3 distinct lowercase letters a, j and v are used in it. In the second test there is one of the appropriate new passwords — python, because its length is equal to 6 and it consists of 6 distinct lowercase letter...
500
[ { "input": "4 3", "output": "abca" }, { "input": "6 6", "output": "abcdef" }, { "input": "5 2", "output": "ababa" }, { "input": "3 2", "output": "aba" }, { "input": "10 2", "output": "ababababab" }, { "input": "26 13", "output": "abcdefghijklmabcde...
1,627,409,655
2,147,483,647
Python 3
OK
TESTS
47
77
7,065,600
import random condition=list(map(int,input().split(" "))) password,last,count="",0,0 while count< condition[1]: char = random.randrange(0,26) if chr(char+97)!= last and chr(char+97) not in password: password=password+chr(char+97) last=char count+=1 last,count=password[len(passw...
Title: New Password Time Limit: None seconds Memory Limit: None megabytes Problem Description: Innokentiy decides to change the password in the social net "Contact!", but he is too lazy to invent a new password by himself. That is why he needs your help. Innokentiy decides that new password should satisfy the foll...
```python import random condition=list(map(int,input().split(" "))) password,last,count="",0,0 while count< condition[1]: char = random.randrange(0,26) if chr(char+97)!= last and chr(char+97) not in password: password=password+chr(char+97) last=char count+=1 last,count=password...
3
275
A
Lights Out
PROGRAMMING
900
[ "implementation" ]
null
null
Lenny is playing a game on a 3<=×<=3 grid of lights. In the beginning of the game all lights are switched on. Pressing any of the lights will toggle it and all side-adjacent lights. The goal of the game is to switch all the lights off. We consider the toggling as follows: if the light was switched on then it will be sw...
The input consists of three rows. Each row contains three integers each between 0 to 100 inclusive. The *j*-th number in the *i*-th row is the number of times the *j*-th light of the *i*-th row of the grid is pressed.
Print three lines, each containing three characters. The *j*-th character of the *i*-th line is "1" if and only if the corresponding light is switched on, otherwise it's "0".
[ "1 0 0\n0 0 0\n0 0 1\n", "1 0 1\n8 8 8\n2 0 3\n" ]
[ "001\n010\n100\n", "010\n011\n100\n" ]
none
500
[ { "input": "1 0 0\n0 0 0\n0 0 1", "output": "001\n010\n100" }, { "input": "1 0 1\n8 8 8\n2 0 3", "output": "010\n011\n100" }, { "input": "13 85 77\n25 50 45\n65 79 9", "output": "000\n010\n000" }, { "input": "96 95 5\n8 84 74\n67 31 61", "output": "011\n011\n101" }, {...
1,599,719,209
2,147,483,647
PyPy 3
OK
TESTS
33
140
0
l = [[1, 1, 1], [1, 1, 1], [1, 1, 1]] i = [] for _ in range(3): i.append(list(input().split())) def switch(a): if int(a)==0: return 1 else: return 0 for a in range(len(i)): for b in range(len(i[a])): if int(i[a][b]) % 2 == 0 and int(i[a][b])!=0: pass ...
Title: Lights Out Time Limit: None seconds Memory Limit: None megabytes Problem Description: Lenny is playing a game on a 3<=×<=3 grid of lights. In the beginning of the game all lights are switched on. Pressing any of the lights will toggle it and all side-adjacent lights. The goal of the game is to switch all the ...
```python l = [[1, 1, 1], [1, 1, 1], [1, 1, 1]] i = [] for _ in range(3): i.append(list(input().split())) def switch(a): if int(a)==0: return 1 else: return 0 for a in range(len(i)): for b in range(len(i[a])): if int(i[a][b]) % 2 == 0 and int(i[a][b])!=0: ...
3
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,427,388,812
1,412
Python 3
RUNTIME_ERROR
PRETESTS
0
31
0
s = input() c,u = 0,[] for i in range(0,len(s),2): if(s[i]!=s[i+1].lower()): u.append(s[i]) if(not s[i+1].lower() in u): c+=1 else: u.pop(u.index(s[i+1].lower())) print(c)
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 s = input() c,u = 0,[] for i in range(0,len(s),2): if(s[i]!=s[i+1].lower()): u.append(s[i]) if(not s[i+1].lower() in u): c+=1 else: u.pop(u.index(s[i+1].lower())) print(c) ```
-1
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,537,681,570
2,147,483,647
Python 3
OK
TESTS
40
124
0
s=list(input()) p=list("hello") j=0 for i in s: if i==p[j]: j+=1 if j==5: print("YES") exit() print("NO")
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python s=list(input()) p=list("hello") j=0 for i in s: if i==p[j]: j+=1 if j==5: print("YES") exit() print("NO") ```
3.938
896
E
Welcome home, Chtholly
PROGRAMMING
3,100
[ "data structures", "dsu" ]
null
null
— I... I survived. — Welcome home, Chtholly. — I kept my promise... — I made it... I really made it! After several days of fighting, Chtholly Nota Seniorious miraculously returned from the fierce battle. As promised, Willem is now baking butter cake for her. However, although Willem is skilled in making dessert, ...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=105). The second line contains *n* integers, *i*-th of them is *a**i* (1<=≤<=*a**i*<=≤<=105). The next *m* lines are the *m* operations described above. It is guaranteed that 1<=≤<=*l*<=≤<=*r*<=≤<=*n* and 1<=≤<=*x*<=≤<=105.
For each operation of the second type, print the answer.
[ "5 6\n1 5 5 5 8\n2 2 5 5\n1 2 4 3\n2 2 5 2\n2 2 5 5\n1 3 5 1\n2 1 5 1\n", "7 7\n1 9 2 6 8 1 7\n2 1 7 1\n2 2 5 2\n1 4 7 7\n2 2 4 2\n1 3 4 5\n2 3 3 3\n2 3 7 2\n", "8 13\n75 85 88 100 105 120 122 128\n1 1 8 70\n2 3 8 30\n1 3 8 3\n2 2 5 15\n1 2 4 10\n2 1 5 5\n1 2 7 27\n2 1 5 5\n1 3 7 12\n1 1 7 4\n2 1 8 1\n1 4 8 5\n...
[ "3\n3\n0\n3\n", "2\n1\n1\n0\n1\n", "1\n2\n3\n4\n5\n6\n" ]
none
2,500
[]
1,512,278,982
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
5,529,600
def tkeInput(): cakesNum, operationsNum = [int(i) for i in input('n, m: '.strip()).strip().split(' ')] # time for each cake times = [int(i) for i in input('times: ').strip().split(' ')] assert len(times) == cakesNum cakesTimes = {} for i in range(len(times)): cakesTimes['c' + ...
Title: Welcome home, Chtholly Time Limit: None seconds Memory Limit: None megabytes Problem Description: — I... I survived. — Welcome home, Chtholly. — I kept my promise... — I made it... I really made it! After several days of fighting, Chtholly Nota Seniorious miraculously returned from the fierce battle. As ...
```python def tkeInput(): cakesNum, operationsNum = [int(i) for i in input('n, m: '.strip()).strip().split(' ')] # time for each cake times = [int(i) for i in input('times: ').strip().split(' ')] assert len(times) == cakesNum cakesTimes = {} for i in range(len(times)): cakesTi...
0
148
A
Insomnia cure
PROGRAMMING
800
[ "constructive algorithms", "implementation", "math" ]
null
null
«One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entertained herself at best she could. Tonight she imagined that all dragons were here to steal her, and ...
Input data contains integer numbers *k*,<=*l*,<=*m*,<=*n* and *d*, each number in a separate line (1<=≤<=*k*,<=*l*,<=*m*,<=*n*<=≤<=10, 1<=≤<=*d*<=≤<=105).
Output the number of damaged dragons.
[ "1\n2\n3\n4\n12\n", "2\n3\n4\n5\n24\n" ]
[ "12\n", "17\n" ]
In the first case every first dragon got punched with a frying pan. Some of the dragons suffered from other reasons as well, but the pan alone would be enough. In the second case dragons 1, 7, 11, 13, 17, 19 and 23 escaped unharmed.
1,000
[ { "input": "1\n2\n3\n4\n12", "output": "12" }, { "input": "2\n3\n4\n5\n24", "output": "17" }, { "input": "1\n1\n1\n1\n100000", "output": "100000" }, { "input": "10\n9\n8\n7\n6", "output": "0" }, { "input": "8\n4\n4\n3\n65437", "output": "32718" }, { "i...
1,699,114,118
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
2
2,000
512,000
k = int(input()) l = int(input()) m = int(input()) n = int(input()) d = int(input()) lst = [] l1 = [] l1.append(k) l1.append(l) l1.append(m) l1.append(n) for i in l1: j = 1 s = i while s<=d: if s not in lst: lst.append(s) j = j + 1 s = i*j print(len(lst...
Title: Insomnia cure Time Limit: None seconds Memory Limit: None megabytes Problem Description: «One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entert...
```python k = int(input()) l = int(input()) m = int(input()) n = int(input()) d = int(input()) lst = [] l1 = [] l1.append(k) l1.append(l) l1.append(m) l1.append(n) for i in l1: j = 1 s = i while s<=d: if s not in lst: lst.append(s) j = j + 1 s = i*j pri...
0
946
C
String Transformation
PROGRAMMING
1,300
[ "greedy", "strings" ]
null
null
You are given a string *s* consisting of |*s*| small english letters. In one move you can replace any character of this string to the next character in alphabetical order (a will be replaced with b, s will be replaced with t, etc.). You cannot replace letter z with any other letter. Your target is to make some number...
The only one line of the input consisting of the string *s* consisting of |*s*| (1<=≤<=|*s*|<=≤<=105) small english letters.
If you can get a string that can be obtained from the given string and will contain english alphabet as a subsequence, print it. Otherwise print «-1» (without quotes).
[ "aacceeggiikkmmooqqssuuwwyy\n", "thereisnoanswer\n" ]
[ "abcdefghijklmnopqrstuvwxyz\n", "-1\n" ]
none
0
[ { "input": "aacceeggiikkmmooqqssuuwwyy", "output": "abcdefghijklmnopqrstuvwxyz" }, { "input": "thereisnoanswer", "output": "-1" }, { "input": "jqcfvsaveaixhioaaeephbmsmfcgdyawscpyioybkgxlcrhaxs", "output": "-1" }, { "input": "rtdacjpsjjmjdhcoprjhaenlwuvpfqzurnrswngmpnkdnunaen...
1,690,018,593
1,593
PyPy 3-64
WRONG_ANSWER
TESTS
3
61
0
s = input() if(len(s) != 26): print("-1") exit() elif("z" in s[0:25]): print("1") exit() else: print("abcdefghijklmnopqrstuvwxyz") exit()
Title: String Transformation Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a string *s* consisting of |*s*| small english letters. In one move you can replace any character of this string to the next character in alphabetical order (a will be replaced with b, s will be rep...
```python s = input() if(len(s) != 26): print("-1") exit() elif("z" in s[0:25]): print("1") exit() else: print("abcdefghijklmnopqrstuvwxyz") exit() ```
0
404
D
Minesweeper 1D
PROGRAMMING
1,900
[ "dp", "implementation" ]
null
null
Game "Minesweeper 1D" is played on a line of squares, the line's height is 1 square, the line's width is *n* squares. Some of the squares contain bombs. If a square doesn't contain a bomb, then it contains a number from 0 to 2 — the total number of bombs in adjacent squares. For example, the correct field to play look...
The first line contains sequence of characters without spaces *s*1*s*2... *s**n* (1<=≤<=*n*<=≤<=106), containing only characters "*", "?" and digits "0", "1" or "2". If character *s**i* equals "*", then the *i*-th cell of the field contains a bomb. If character *s**i* equals "?", then Valera hasn't yet decided what to ...
Print a single integer — the number of ways Valera can fill the empty cells and get a correct field. As the answer can be rather large, print it modulo 1000000007 (109<=+<=7).
[ "?01???\n", "?\n", "**12\n", "1\n" ]
[ "4\n", "2\n", "0\n", "0\n" ]
In the first test sample you can get the following correct fields: 001**1, 001***, 001*2*, 001*10.
2,000
[ { "input": "?01???", "output": "4" }, { "input": "?", "output": "2" }, { "input": "**12", "output": "0" }, { "input": "1", "output": "0" }, { "input": "?01*??****", "output": "4" }, { "input": "0", "output": "1" }, { "input": "2", "outp...
1,699,500,765
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
77
0
s = input() n = len(s) Mod = 10**9+7 # 0 01 *1 * 2 pre = [1,0,0,0,0] for i in range(n): dp = [0,0,0,0,0] if s[i] == "0" or s[i] == "?": dp[0] += pre[0] + pre[2] dp[0] %= Mod if s[i] == "1" or s[i] == "?": dp[1] = pre[0] + pre[2] dp[2] = pre[3] dp[1] %= Mo...
Title: Minesweeper 1D Time Limit: None seconds Memory Limit: None megabytes Problem Description: Game "Minesweeper 1D" is played on a line of squares, the line's height is 1 square, the line's width is *n* squares. Some of the squares contain bombs. If a square doesn't contain a bomb, then it contains a number from ...
```python s = input() n = len(s) Mod = 10**9+7 # 0 01 *1 * 2 pre = [1,0,0,0,0] for i in range(n): dp = [0,0,0,0,0] if s[i] == "0" or s[i] == "?": dp[0] += pre[0] + pre[2] dp[0] %= Mod if s[i] == "1" or s[i] == "?": dp[1] = pre[0] + pre[2] dp[2] = pre[3] d...
0
352
B
Jeff and Periods
PROGRAMMING
1,300
[ "implementation", "sortings" ]
null
null
One day Jeff got hold of an integer sequence *a*1, *a*2, ..., *a**n* of length *n*. The boy immediately decided to analyze the sequence. For that, he needs to find all values of *x*, for which these conditions hold: - *x* occurs in sequence *a*. - Consider all positions of numbers *x* in the sequence *a* (such *i*, ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105). The next line contains integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105). The numbers are separated by spaces.
In the first line print integer *t* — the number of valid *x*. On each of the next *t* lines print two integers *x* and *p**x*, where *x* is current suitable value, *p**x* is the common difference between numbers in the progression (if *x* occurs exactly once in the sequence, *p**x* must equal 0). Print the pairs in th...
[ "1\n2\n", "8\n1 2 1 3 1 2 1 5\n" ]
[ "1\n2 0\n", "4\n1 2\n2 4\n3 0\n5 0\n" ]
In the first test 2 occurs exactly once in the sequence, ergo *p*<sub class="lower-index">2</sub> = 0.
1,000
[ { "input": "1\n2", "output": "1\n2 0" }, { "input": "8\n1 2 1 3 1 2 1 5", "output": "4\n1 2\n2 4\n3 0\n5 0" }, { "input": "3\n1 10 5", "output": "3\n1 0\n5 0\n10 0" }, { "input": "4\n9 9 3 5", "output": "3\n3 0\n5 0\n9 1" }, { "input": "6\n1 2 2 1 1 2", "outpu...
1,651,262,830
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
102,400
from collections import OrderedDict result = OrderedDict() amount = int(input()) info = [int(x) for x in input().split()] for i in range(amount): cur = info[i] if cur not in result.keys(): result[cur] = [1, i] else: if result[cur][0] == 1: result[cur] = [2, i - result[c...
Title: Jeff and Periods Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Jeff got hold of an integer sequence *a*1, *a*2, ..., *a**n* of length *n*. The boy immediately decided to analyze the sequence. For that, he needs to find all values of *x*, for which these conditions hold: -...
```python from collections import OrderedDict result = OrderedDict() amount = int(input()) info = [int(x) for x in input().split()] for i in range(amount): cur = info[i] if cur not in result.keys(): result[cur] = [1, i] else: if result[cur][0] == 1: result[cur] = [2, i ...
0
2
A
Winner
PROGRAMMING
1,500
[ "hashing", "implementation" ]
A. Winner
1
64
The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes more difficult if the number of such players is more than one. During each round a pla...
The first line contains an integer number *n* (1<=<=≤<=<=*n*<=<=≤<=<=1000), *n* is the number of rounds played. Then follow *n* lines, containing the information about the rounds in "name score" format in chronological order, where name is a string of lower-case Latin letters with the length from 1 to 32, and score is ...
Print the name of the winner.
[ "3\nmike 3\nandrew 5\nmike 2\n", "3\nandrew 3\nandrew 2\nmike 5\n" ]
[ "andrew\n", "andrew\n" ]
none
0
[ { "input": "3\nmike 3\nandrew 5\nmike 2", "output": "andrew" }, { "input": "3\nandrew 3\nandrew 2\nmike 5", "output": "andrew" }, { "input": "5\nkaxqybeultn -352\nmgochgrmeyieyskhuourfg -910\nkaxqybeultn 691\nmgochgrmeyieyskhuourfg -76\nkaxqybeultn -303", "output": "kaxqybeultn" },...
1,583,830,409
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
13
186
307,200
num_of_games = int(input()) game_records = {} best_one = ['noone', 0] counter = {} for i in range(num_of_games): record = input().split(' ') if game_records.get(record[0]): game_records[record[0]] += int(record[1]) if game_records[record[0]] > counter[record[0]][1]: co...
Title: Winner Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes...
```python num_of_games = int(input()) game_records = {} best_one = ['noone', 0] counter = {} for i in range(num_of_games): record = input().split(' ') if game_records.get(record[0]): game_records[record[0]] += int(record[1]) if game_records[record[0]] > counter[record[0]][1]: ...
0
127
B
Canvas Frames
PROGRAMMING
1,000
[ "implementation" ]
null
null
Nicholas, a painter is going to paint several new canvases. Nicholas is sure that the canvases will turn out so great that each one will need framing and being hung on the wall. Frames are what Nicholas decided to begin with. Nicholas has *n* sticks whose lengths equal *a*1,<=*a*2,<=... *a**n*. Nicholas does not want...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of sticks. The second line contains *n* space-separated integers. The *i*-th integer equals the length of the *i*-th stick *a**i* (1<=≤<=*a**i*<=≤<=100).
Print the single number — the maximum number of frames Nicholas can make for his future canvases.
[ "5\n2 4 3 2 3\n", "13\n2 2 4 4 4 4 6 6 6 7 7 9 9\n", "4\n3 3 3 5\n" ]
[ "1", "3", "0" ]
none
1,000
[ { "input": "5\n2 4 3 2 3", "output": "1" }, { "input": "13\n2 2 4 4 4 4 6 6 6 7 7 9 9", "output": "3" }, { "input": "4\n3 3 3 5", "output": "0" }, { "input": "2\n3 5", "output": "0" }, { "input": "9\n1 2 3 4 5 6 7 8 9", "output": "0" }, { "input": "14\...
1,686,471,311
2,147,483,647
Python 3
OK
TESTS
93
46
0
n=int(input()) ls=list(map(int,input().split())) le=set(ls) dis=[] for i in le: c=ls.count(i) dis.append([i,c]) for i in range(len(dis)): if dis[i][1]>=2: dis[i]=dis[i][1]//2 else: dis[i]=0 s=sum(dis) print(s//2)
Title: Canvas Frames Time Limit: None seconds Memory Limit: None megabytes Problem Description: Nicholas, a painter is going to paint several new canvases. Nicholas is sure that the canvases will turn out so great that each one will need framing and being hung on the wall. Frames are what Nicholas decided to begin w...
```python n=int(input()) ls=list(map(int,input().split())) le=set(ls) dis=[] for i in le: c=ls.count(i) dis.append([i,c]) for i in range(len(dis)): if dis[i][1]>=2: dis[i]=dis[i][1]//2 else: dis[i]=0 s=sum(dis) print(s//2) ```
3
699
A
Launch of Collider
PROGRAMMING
1,000
[ "implementation" ]
null
null
There will be a launch of a new, powerful and unusual collider very soon, which located along a straight line. *n* particles will be launched inside it. All of them are located in a straight line and there can not be two or more particles located in the same point. The coordinates of the particles coincide with the dis...
The first line contains the positive integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of particles. The second line contains *n* symbols "L" and "R". If the *i*-th symbol equals "L", then the *i*-th particle will move to the left, otherwise the *i*-th symbol equals "R" and the *i*-th particle will move to the right....
In the first line print the only integer — the first moment (in microseconds) when two particles are at the same point and there will be an explosion. Print the only integer -1, if the collision of particles doesn't happen.
[ "4\nRLRL\n2 4 6 10\n", "3\nLLR\n40 50 60\n" ]
[ "1\n", "-1\n" ]
In the first sample case the first explosion will happen in 1 microsecond because the particles number 1 and 2 will simultaneously be at the same point with the coordinate 3. In the second sample case there will be no explosion because there are no particles which will simultaneously be at the same point.
500
[ { "input": "4\nRLRL\n2 4 6 10", "output": "1" }, { "input": "3\nLLR\n40 50 60", "output": "-1" }, { "input": "4\nRLLR\n46 230 264 470", "output": "92" }, { "input": "6\nLLRLLL\n446 492 650 844 930 970", "output": "97" }, { "input": "8\nRRLLLLLL\n338 478 512 574 59...
1,579,098,431
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
108
0
#77 n=int(input()) a=input() b=list(map(int,input().split())) c=0 while ( len(set(b))==len(b) and c < n+1) : c+=1 for i in range(n): if a[i]=='R': b[i]+=1 elif a[i]=='L': b[i]-=1 if c >= n+1: print(-1) else: print(c)
Title: Launch of Collider Time Limit: None seconds Memory Limit: None megabytes Problem Description: There will be a launch of a new, powerful and unusual collider very soon, which located along a straight line. *n* particles will be launched inside it. All of them are located in a straight line and there can not be...
```python #77 n=int(input()) a=input() b=list(map(int,input().split())) c=0 while ( len(set(b))==len(b) and c < n+1) : c+=1 for i in range(n): if a[i]=='R': b[i]+=1 elif a[i]=='L': b[i]-=1 if c >= n+1: print(-1) else: print(c) ```
0
0
none
none
none
0
[ "none" ]
null
null
Barney lives in country USC (United States of Charzeh). USC has *n* cities numbered from 1 through *n* and *n*<=-<=1 roads between them. Cities and roads of USC form a rooted tree (Barney's not sure why it is rooted). Root of the tree is the city number 1. Thus if one will start his journey from city 1, he can visit an...
The first line of input contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of cities in USC. The second line contains *n*<=-<=1 integers *p*2,<=*p*3,<=...,<=*p**n* (1<=≤<=*p**i*<=&lt;<=*i*), where *p**i* is the number of the parent city of city number *i* in the tree, meaning there is a road between cities...
In the first and only line of output print *n* numbers, where *i*-th number is the expected value of starting_time[i]. Your answer for each city will be considered correct if its absolute or relative error does not exceed 10<=-<=6.
[ "7\n1 2 1 1 4 4\n", "12\n1 1 2 2 4 4 3 3 1 10 8\n" ]
[ "1.0 4.0 5.0 3.5 4.5 5.0 5.0 \n", "1.0 5.0 5.5 6.5 7.5 8.0 8.0 7.0 7.5 6.5 7.5 8.0 \n" ]
none
0
[ { "input": "7\n1 2 1 1 4 4", "output": "1.0 4.0 5.0 3.5 4.5 5.0 5.0 " }, { "input": "12\n1 1 2 2 4 4 3 3 1 10 8", "output": "1.0 5.0 5.5 6.5 7.5 8.0 8.0 7.0 7.5 6.5 7.5 8.0 " }, { "input": "3\n1 2", "output": "1.0 2.0 3.0 " }, { "input": "8\n1 1 2 2 3 6 1", "output": "1.0...
1,470,256,971
6,710
Python 3
RUNTIME_ERROR
TESTS
10
685
18,022,400
n = int(input()) ps = [None, None] + list(map(int, input().split())) tree_sizes = [None] + [0] * n children = [None] + [[] for _ in range(n)] expected = [None] + [0] * n for i, p in enumerate(ps[2:], 2): children[p].append(i) def dfs(v): for ch in children[v]: tree_sizes[v] += dfs(ch) tree_sizes[...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Barney lives in country USC (United States of Charzeh). USC has *n* cities numbered from 1 through *n* and *n*<=-<=1 roads between them. Cities and roads of USC form a rooted tree (Barney's not sure why it is rooted). Root of the ...
```python n = int(input()) ps = [None, None] + list(map(int, input().split())) tree_sizes = [None] + [0] * n children = [None] + [[] for _ in range(n)] expected = [None] + [0] * n for i, p in enumerate(ps[2:], 2): children[p].append(i) def dfs(v): for ch in children[v]: tree_sizes[v] += dfs(ch) t...
-1
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,683,485,082
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
31
0
a,b=map(int,input().split()) if (a-b)%10==0: print(1) else: i=2 while i>1: if (a*i)%10==0: print(i) break else: if ((a*i)-3)%10==0: print(i) break i=i+1
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 a,b=map(int,input().split()) if (a-b)%10==0: print(1) else: i=2 while i>1: if (a*i)%10==0: print(i) break else: if ((a*i)-3)%10==0: print(i) break i=i+1 ```
0
174
C
Range Increments
PROGRAMMING
1,800
[ "data structures", "greedy" ]
null
null
Polycarpus is an amateur programmer. Now he is analyzing a friend's program. He has already found there the function rangeIncrement(l, r), that adds 1 to each element of some array *a* for all indexes in the segment [*l*,<=*r*]. In other words, this function does the following: Polycarpus knows the state of the array...
The first input line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the length of the array *a*[1... *n*]. The second line contains its integer space-separated elements, *a*[1],<=*a*[2],<=...,<=*a*[*n*] (0<=≤<=*a*[*i*]<=≤<=105) after some series of function calls rangeIncrement(l, r). It is guaranteed that at ...
Print on the first line *t* — the minimum number of calls of function rangeIncrement(l, r), that lead to the array from the input data. It is guaranteed that this number will turn out not more than 105. Then print *t* lines — the descriptions of function calls, one per line. Each line should contain two integers *l**i...
[ "6\n1 2 1 1 4 1\n", "5\n1 0 1 0 1\n" ]
[ "5\n2 2\n5 5\n5 5\n5 5\n1 6\n", "3\n1 1\n3 3\n5 5\n" ]
The first sample requires a call for the entire array, and four additional calls: - one for the segment [2,2] (i.e. the second element of the array), - three for the segment [5,5] (i.e. the fifth element of the array).
1,500
[ { "input": "6\n1 2 1 1 4 1", "output": "5\n2 2\n5 5\n5 5\n5 5\n1 6" }, { "input": "5\n1 0 1 0 1", "output": "3\n1 1\n3 3\n5 5" }, { "input": "1\n1", "output": "1\n1 1" }, { "input": "1\n100000", "output": "100000\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1...
1,690,488,382
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
60
0
print("_RANDOM_GUESS_1690488382.1077118")# 1690488382.107734
Title: Range Increments Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus is an amateur programmer. Now he is analyzing a friend's program. He has already found there the function rangeIncrement(l, r), that adds 1 to each element of some array *a* for all indexes in the segment [*...
```python print("_RANDOM_GUESS_1690488382.1077118")# 1690488382.107734 ```
0
987
A
Infinity Gauntlet
PROGRAMMING
800
[ "implementation" ]
null
null
You took a peek on Thanos wearing Infinity Gauntlet. In the Gauntlet there is a place for six Infinity Gems: - the Power Gem of purple color, - the Time Gem of green color, - the Space Gem of blue color, - the Soul Gem of orange color, - the Reality Gem of red color, - the Mind Gem of yellow color. Using colors...
In the first line of input there is one integer $n$ ($0 \le n \le 6$) — the number of Gems in Infinity Gauntlet. In next $n$ lines there are colors of Gems you saw. Words used for colors are: purple, green, blue, orange, red, yellow. It is guaranteed that all the colors are distinct. All colors are given in lowercase ...
In the first line output one integer $m$ ($0 \le m \le 6$) — the number of absent Gems. Then in $m$ lines print the names of absent Gems, each on its own line. Words used for names are: Power, Time, Space, Soul, Reality, Mind. Names can be printed in any order. Keep the first letter uppercase, others lowercase.
[ "4\nred\npurple\nyellow\norange\n", "0\n" ]
[ "2\nSpace\nTime\n", "6\nTime\nMind\nSoul\nPower\nReality\nSpace\n" ]
In the first sample Thanos already has Reality, Power, Mind and Soul Gems, so he needs two more: Time and Space. In the second sample Thanos doesn't have any Gems, so he needs all six.
500
[ { "input": "4\nred\npurple\nyellow\norange", "output": "2\nSpace\nTime" }, { "input": "0", "output": "6\nMind\nSpace\nPower\nTime\nReality\nSoul" }, { "input": "6\npurple\nblue\nyellow\nred\ngreen\norange", "output": "0" }, { "input": "1\npurple", "output": "5\nTime\nReal...
1,654,575,244
2,147,483,647
Python 3
OK
TESTS
64
46
0
n = int(input()) s = [ ] d = [ ] for i in range(n): m = input() s += [m] if 'yellow' not in s: d += ['Mind'] if 'red' not in s: d += ['Reality'] if 'orange' not in s: d += ['Soul'] if 'blue' not in s: d += ['Space'] ...
Title: Infinity Gauntlet Time Limit: None seconds Memory Limit: None megabytes Problem Description: You took a peek on Thanos wearing Infinity Gauntlet. In the Gauntlet there is a place for six Infinity Gems: - the Power Gem of purple color, - the Time Gem of green color, - the Space Gem of blue color, - the So...
```python n = int(input()) s = [ ] d = [ ] for i in range(n): m = input() s += [m] if 'yellow' not in s: d += ['Mind'] if 'red' not in s: d += ['Reality'] if 'orange' not in s: d += ['Soul'] if 'blue' not in s: d += [...
3
492
B
Vanya and Lanterns
PROGRAMMING
1,200
[ "binary search", "implementation", "math", "sortings" ]
null
null
Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the point *l*. Then the *i*-th lantern is at the point *a**i*. The lantern lights all points of the street that...
The first line contains two integers *n*, *l* (1<=≤<=*n*<=≤<=1000, 1<=≤<=*l*<=≤<=109) — the number of lanterns and the length of the street respectively. The next line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=*l*). Multiple lanterns can be located at the same point. The lanterns may be located at the ends of th...
Print the minimum light radius *d*, needed to light the whole street. The answer will be considered correct if its absolute or relative error doesn't exceed 10<=-<=9.
[ "7 15\n15 5 3 7 9 14 0\n", "2 5\n2 5\n" ]
[ "2.5000000000\n", "2.0000000000\n" ]
Consider the second sample. At *d* = 2 the first lantern will light the segment [0, 4] of the street, and the second lantern will light segment [3, 5]. Thus, the whole street will be lit.
1,000
[ { "input": "7 15\n15 5 3 7 9 14 0", "output": "2.5000000000" }, { "input": "2 5\n2 5", "output": "2.0000000000" }, { "input": "46 615683844\n431749087 271781274 274974690 324606253 480870261 401650581 13285442 478090364 266585394 425024433 588791449 492057200 391293435 563090494 317950 1...
1,692,026,509
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
n,l = map(int,input().split()) a = sorted(list(map(int,input().split()))) maxi = 0 for i in range(1,n): maxi = max(maxi,a[i]-a[i-1]) x = a[0]==0 y = a[-1]==l b = 0 if not x: b=1 if not y: maxi = max(maxi/2.0,a[0],l-a[-1]) else: maxi = max(maxi/2.0,a[0]) if not y: ...
Title: Vanya and Lanterns Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the poi...
```python n,l = map(int,input().split()) a = sorted(list(map(int,input().split()))) maxi = 0 for i in range(1,n): maxi = max(maxi,a[i]-a[i-1]) x = a[0]==0 y = a[-1]==l b = 0 if not x: b=1 if not y: maxi = max(maxi/2.0,a[0],l-a[-1]) else: maxi = max(maxi/2.0,a[0]) ...
0
682
A
Alyona and Numbers
PROGRAMMING
1,100
[ "constructive algorithms", "math", "number theory" ]
null
null
After finishing eating her bun, Alyona came up with two integers *n* and *m*. She decided to write down two columns of integers — the first column containing integers from 1 to *n* and the second containing integers from 1 to *m*. Now the girl wants to count how many pairs of integers she can choose, one from the first...
The only line of the input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1<=000<=000).
Print the only integer — the number of pairs of integers (*x*,<=*y*) such that 1<=≤<=*x*<=≤<=*n*, 1<=≤<=*y*<=≤<=*m* and (*x*<=+<=*y*) is divisible by 5.
[ "6 12\n", "11 14\n", "1 5\n", "3 8\n", "5 7\n", "21 21\n" ]
[ "14\n", "31\n", "1\n", "5\n", "7\n", "88\n" ]
Following pairs are suitable in the first sample case: - for *x* = 1 fits *y* equal to 4 or 9; - for *x* = 2 fits *y* equal to 3 or 8; - for *x* = 3 fits *y* equal to 2, 7 or 12; - for *x* = 4 fits *y* equal to 1, 6 or 11; - for *x* = 5 fits *y* equal to 5 or 10; - for *x* = 6 fits *y* equal to 4 or 9. Only th...
500
[ { "input": "6 12", "output": "14" }, { "input": "11 14", "output": "31" }, { "input": "1 5", "output": "1" }, { "input": "3 8", "output": "5" }, { "input": "5 7", "output": "7" }, { "input": "21 21", "output": "88" }, { "input": "10 15", ...
1,662,991,374
2,147,483,647
Python 3
OK
TESTS
128
295
0
import math numbers = list(map(int , input().split())) bigest_reach_number = math.floor( (numbers[0] + numbers[1]) /5 ) counter = 0 for i in range (1 , bigest_reach_number+1): main_number = i * 5 if main_number <= numbers[0] and main_number <= numbers[1] : counter += main_number - 1 elif m...
Title: Alyona and Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: After finishing eating her bun, Alyona came up with two integers *n* and *m*. She decided to write down two columns of integers — the first column containing integers from 1 to *n* and the second containing integers ...
```python import math numbers = list(map(int , input().split())) bigest_reach_number = math.floor( (numbers[0] + numbers[1]) /5 ) counter = 0 for i in range (1 , bigest_reach_number+1): main_number = i * 5 if main_number <= numbers[0] and main_number <= numbers[1] : counter += main_number - 1 ...
3
1,008
A
Romaji
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
Vitya has just started learning Berlanese language. It is known that Berlanese uses the Latin alphabet. Vowel letters are "a", "o", "u", "i", and "e". Other letters are consonant. In Berlanese, there has to be a vowel after every consonant, but there can be any letter after any vowel. The only exception is a consonant...
The first line of the input contains the string $s$ consisting of $|s|$ ($1\leq |s|\leq 100$) lowercase Latin letters.
Print "YES" (without quotes) if there is a vowel after every consonant except "n", otherwise print "NO". You can print each letter in any case (upper or lower).
[ "sumimasen\n", "ninja\n", "codeforces\n" ]
[ "YES\n", "YES\n", "NO\n" ]
In the first and second samples, a vowel goes after each consonant except "n", so the word is Berlanese. In the third sample, the consonant "c" goes after the consonant "r", and the consonant "s" stands on the end, so the word is not Berlanese.
500
[ { "input": "sumimasen", "output": "YES" }, { "input": "ninja", "output": "YES" }, { "input": "codeforces", "output": "NO" }, { "input": "auuaoonntanonnuewannnnpuuinniwoonennyolonnnvienonpoujinndinunnenannmuveoiuuhikucuziuhunnnmunzancenen", "output": "YES" }, { "in...
1,636,911,336
2,147,483,647
Python 3
OK
TESTS
57
61
0
s = input() a = 'aeiou' b = 'aeioun' x = 'a' result = 'YES' for i in s: if x not in b and i not in a: result = 'NO' break x = i if x not in b: result = 'NO' print(result)
Title: Romaji Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vitya has just started learning Berlanese language. It is known that Berlanese uses the Latin alphabet. Vowel letters are "a", "o", "u", "i", and "e". Other letters are consonant. In Berlanese, there has to be a vowel after eve...
```python s = input() a = 'aeiou' b = 'aeioun' x = 'a' result = 'YES' for i in s: if x not in b and i not in a: result = 'NO' break x = i if x not in b: result = 'NO' print(result) ```
3
614
B
Gena's Code
PROGRAMMING
1,400
[ "implementation", "math" ]
null
null
It's the year 4527 and the tanks game that we all know and love still exists. There also exists Great Gena's code, written in 2016. The problem this code solves is: given the number of tanks that go into the battle from each country, find their product. If it is turns to be too large, then the servers might have not en...
The first line of the input contains the number of countries *n* (1<=≤<=*n*<=≤<=100<=000). The second line contains *n* non-negative integers *a**i* without leading zeroes — the number of tanks of the *i*-th country. It is guaranteed that the second line contains at least *n*<=-<=1 beautiful numbers and the total leng...
Print a single number without leading zeroes — the product of the number of tanks presented by each country.
[ "3\n5 10 1\n", "4\n1 1 10 11\n", "5\n0 3 1 100 1\n" ]
[ "50", "110", "0" ]
In sample 1 numbers 10 and 1 are beautiful, number 5 is not not. In sample 2 number 11 is not beautiful (contains two '1's), all others are beautiful. In sample 3 number 3 is not beautiful, all others are beautiful.
1,000
[ { "input": "3\n5 10 1", "output": "50" }, { "input": "4\n1 1 10 11", "output": "110" }, { "input": "5\n0 3 1 100 1", "output": "0" }, { "input": "40\n10 100 10 1 10 10 100 10 10 100 10 100 100 10 1824868942 100 100 1 10 100 100 10 100 100 10 100 10 1 10 100 100 100 10 1 10 1 ...
1,624,981,027
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
500
512,000
n = int(input()) sum1 = 1 for i in input().split(): sum1 *= int(i) print(sum1)
Title: Gena's Code Time Limit: None seconds Memory Limit: None megabytes Problem Description: It's the year 4527 and the tanks game that we all know and love still exists. There also exists Great Gena's code, written in 2016. The problem this code solves is: given the number of tanks that go into the battle from eac...
```python n = int(input()) sum1 = 1 for i in input().split(): sum1 *= int(i) print(sum1) ```
0
0
none
none
none
0
[ "none" ]
null
null
A dragon symbolizes wisdom, power and wealth. On Lunar New Year's Day, people model a dragon with bamboo strips and clothes, raise them with rods, and hold the rods high and low to resemble a flying dragon. A performer holding the rod low is represented by a 1, while one holding it high is represented by a 2. Thus, th...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=2000), denoting the length of the original sequence. The second line contains *n* space-separated integers, describing the original sequence *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=2,<=*i*<==<=1,<=2,<=...,<=*n*).
Print a single integer, which means the maximum possible length of the longest non-decreasing subsequence of the new sequence.
[ "4\n1 2 1 2\n", "10\n1 1 2 2 2 1 1 2 2 1\n" ]
[ "4\n", "9\n" ]
In the first example, after reversing [2, 3], the array will become [1, 1, 2, 2], where the length of the longest non-decreasing subsequence is 4. In the second example, after reversing [3, 7], the array will become [1, 1, 1, 1, 2, 2, 2, 2, 2, 1], where the length of the longest non-decreasing subsequence is 9.
0
[ { "input": "4\n1 2 1 2", "output": "4" }, { "input": "10\n1 1 2 2 2 1 1 2 2 1", "output": "9" }, { "input": "200\n2 1 1 2 1 2 2 2 2 2 1 2 2 1 1 2 2 1 1 1 2 1 1 2 2 2 2 2 1 1 2 1 2 1 1 2 1 1 1 1 2 1 2 2 1 2 1 1 1 2 1 1 1 2 2 2 1 1 1 1 2 2 2 1 2 2 2 1 2 2 2 1 2 1 2 1 2 1 1 1 1 2 2 2 1 1 2 ...
1,518,614,922
5,022
Python 3
WRONG_ANSWER
PRETESTS
2
61
5,632,000
import math n=int(input()) arr = list(map(int,input().split())) if n<4: print(n) else: brr = [] if arr[0] ==2: brr.append(0) count =0; sum=0 for i in range(n-1): if arr[i] == arr[i+1]: count += 1 else: brr.append(count +1) sum = sum + count + 1 count = 0 brr.append(n - sum) cr...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: A dragon symbolizes wisdom, power and wealth. On Lunar New Year's Day, people model a dragon with bamboo strips and clothes, raise them with rods, and hold the rods high and low to resemble a flying dragon. A performer holding th...
```python import math n=int(input()) arr = list(map(int,input().split())) if n<4: print(n) else: brr = [] if arr[0] ==2: brr.append(0) count =0; sum=0 for i in range(n-1): if arr[i] == arr[i+1]: count += 1 else: brr.append(count +1) sum = sum + count + 1 count = 0 brr.append(n -...
0
279
B
Books
PROGRAMMING
1,400
[ "binary search", "brute force", "implementation", "two pointers" ]
null
null
When Valera has got some free time, he goes to the library to read some books. Today he's got *t* free minutes to read. That's why Valera took *n* books in the library and for each book he estimated the time he is going to need to read it. Let's number the books by integers from 1 to *n*. Valera needs *a**i* minutes to...
The first line contains two integers *n* and *t* (1<=≤<=*n*<=≤<=105; 1<=≤<=*t*<=≤<=109) — the number of books and the number of free minutes Valera's got. The second line contains a sequence of *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=104), where number *a**i* shows the number of minutes that the boy n...
Print a single integer — the maximum number of books Valera can read.
[ "4 5\n3 1 2 1\n", "3 3\n2 2 3\n" ]
[ "3\n", "1\n" ]
none
1,000
[ { "input": "4 5\n3 1 2 1", "output": "3" }, { "input": "3 3\n2 2 3", "output": "1" }, { "input": "1 3\n5", "output": "0" }, { "input": "1 10\n4", "output": "1" }, { "input": "2 10\n6 4", "output": "2" }, { "input": "6 10\n2 3 4 2 1 1", "output": "4...
1,676,824,370
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
0
while l < N and r < N: while r < N: if timeUsed + B[r] < T: timeUsed += B[r] r += 1 else: break res = max(r - l, res) timeUsed -= B[l] l += 1 print(res)
Title: Books Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Valera has got some free time, he goes to the library to read some books. Today he's got *t* free minutes to read. That's why Valera took *n* books in the library and for each book he estimated the time he is going to need t...
```python while l < N and r < N: while r < N: if timeUsed + B[r] < T: timeUsed += B[r] r += 1 else: break res = max(r - l, res) timeUsed -= B[l] l += 1 print(res) ```
-1
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,679,236,210
2,147,483,647
PyPy 3-64
OK
TESTS
32
124
0
n=int(input()) points = list(map(int,input().strip().split()))[:n] ans=-1 e=0 o=0 for j in range(n): if(points[j]%2==0): e+=1 else: o+=1 if(e>o): ev=0 else: ev=1 for j in range(n): if(points[j]%2!=ev): ans=j+1 break print(ans)
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 n=int(input()) points = list(map(int,input().strip().split()))[:n] ans=-1 e=0 o=0 for j in range(n): if(points[j]%2==0): e+=1 else: o+=1 if(e>o): ev=0 else: ev=1 for j in range(n): if(points[j]%2!=ev): ans=j+1 break print(ans) ```
3.969
920
C
Swap Adjacent Elements
PROGRAMMING
1,400
[ "dfs and similar", "greedy", "math", "sortings", "two pointers" ]
null
null
You have an array *a* consisting of *n* integers. Each integer from 1 to *n* appears exactly once in this array. For some indices *i* (1<=≤<=*i*<=≤<=*n*<=-<=1) it is possible to swap *i*-th element with (*i*<=+<=1)-th, for other indices it is not possible. You may perform any number of swapping operations any order. T...
The first line contains one integer *n* (2<=≤<=*n*<=≤<=200000) — the number of elements in the array. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=200000) — the elements of the array. Each integer from 1 to *n* appears exactly once. The third line contains a string of *n*<=-<=1 char...
If it is possible to sort the array in ascending order using any sequence of swaps you are allowed to make, print YES. Otherwise, print NO.
[ "6\n1 2 5 3 4 6\n01110\n", "6\n1 2 5 3 4 6\n01010\n" ]
[ "YES\n", "NO\n" ]
In the first example you may swap *a*<sub class="lower-index">3</sub> and *a*<sub class="lower-index">4</sub>, and then swap *a*<sub class="lower-index">4</sub> and *a*<sub class="lower-index">5</sub>.
0
[ { "input": "6\n1 2 5 3 4 6\n01110", "output": "YES" }, { "input": "6\n1 2 5 3 4 6\n01010", "output": "NO" }, { "input": "6\n1 6 3 4 5 2\n01101", "output": "NO" }, { "input": "6\n2 3 1 4 5 6\n01111", "output": "NO" }, { "input": "4\n2 3 1 4\n011", "output": "NO...
1,517,655,917
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
56
545
28,057,600
""" 6 1 2 5 3 4 6 01110 """ if __name__ == '__main__': n = int(input().strip()) arr = [int(i) for i in input().strip().split()] indices = {} for i in range(n): indices[arr[i]] = i l = list(input().strip()) pre = [1 if l[0] == '1' else 0] for i in range(1, n - 1): ...
Title: Swap Adjacent Elements Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have an array *a* consisting of *n* integers. Each integer from 1 to *n* appears exactly once in this array. For some indices *i* (1<=≤<=*i*<=≤<=*n*<=-<=1) it is possible to swap *i*-th element with (*i*<=+<...
```python """ 6 1 2 5 3 4 6 01110 """ if __name__ == '__main__': n = int(input().strip()) arr = [int(i) for i in input().strip().split()] indices = {} for i in range(n): indices[arr[i]] = i l = list(input().strip()) pre = [1 if l[0] == '1' else 0] for i in range(1, n - 1...
0
625
C
K-special Tables
PROGRAMMING
1,300
[ "constructive algorithms", "implementation" ]
null
null
People do many crazy things to stand out in a crowd. Some of them dance, some learn by heart rules of Russian language, some try to become an outstanding competitive programmers, while others collect funny math objects. Alis is among these collectors. Right now she wants to get one of *k*-special tables. In case you f...
The first line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=500,<=1<=≤<=*k*<=≤<=*n*) — the size of the table Alice is looking for and the column that should have maximum possible sum.
First print the sum of the integers in the *k*-th column of the required table. Next *n* lines should contain the description of the table itself: first line should contains *n* elements of the first row, second line should contain *n* elements of the second row and so on. If there are multiple suitable table, you ar...
[ "4 1\n", "5 3\n" ]
[ "28\n1 2 3 4\n5 6 7 8\n9 10 11 12\n13 14 15 16\n", "85\n5 6 17 18 19\n9 10 23 24 25\n7 8 20 21 22\n3 4 14 15 16\n1 2 11 12 13\n\n" ]
none
1,000
[ { "input": "4 1", "output": "28\n1 2 3 4\n5 6 7 8\n9 10 11 12\n13 14 15 16" }, { "input": "5 3", "output": "85\n1 2 11 12 13\n3 4 14 15 16\n5 6 17 18 19\n7 8 20 21 22\n9 10 23 24 25" }, { "input": "1 1", "output": "1\n1" }, { "input": "2 1", "output": "4\n1 2\n3 4" }, ...
1,697,526,659
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
92
0
import math import sys from collections import defaultdict #input = sys.stdin.readline USE_FILE = False def declare_matrix(n, m): matrix = [[0 for i in range(m)] for i in range(n)] return matrix def main(): n, k = tuple(map(int, input().split())) m = declare_matrix(n, n) a = [i for i in range...
Title: K-special Tables Time Limit: None seconds Memory Limit: None megabytes Problem Description: People do many crazy things to stand out in a crowd. Some of them dance, some learn by heart rules of Russian language, some try to become an outstanding competitive programmers, while others collect funny math objects...
```python import math import sys from collections import defaultdict #input = sys.stdin.readline USE_FILE = False def declare_matrix(n, m): matrix = [[0 for i in range(m)] for i in range(n)] return matrix def main(): n, k = tuple(map(int, input().split())) m = declare_matrix(n, n) a = [i for ...
0
404
A
Valera and X
PROGRAMMING
1,000
[ "implementation" ]
null
null
Valera is a little boy. Yesterday he got a huge Math hometask at school, so Valera didn't have enough time to properly learn the English alphabet for his English lesson. Unfortunately, the English teacher decided to have a test on alphabet today. At the test Valera got a square piece of squared paper. The length of the...
The first line contains integer *n* (3<=≤<=*n*<=&lt;<=300; *n* is odd). Each of the next *n* lines contains *n* small English letters — the description of Valera's paper.
Print string "YES", if the letters on the paper form letter "X". Otherwise, print string "NO". Print the strings without quotes.
[ "5\nxooox\noxoxo\nsoxoo\noxoxo\nxooox\n", "3\nwsw\nsws\nwsw\n", "3\nxpx\npxp\nxpe\n" ]
[ "NO\n", "YES\n", "NO\n" ]
none
500
[ { "input": "5\nxooox\noxoxo\nsoxoo\noxoxo\nxooox", "output": "NO" }, { "input": "3\nwsw\nsws\nwsw", "output": "YES" }, { "input": "3\nxpx\npxp\nxpe", "output": "NO" }, { "input": "5\nliiil\nilili\niilii\nilili\nliiil", "output": "YES" }, { "input": "7\nbwccccb\nck...
1,695,970,003
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
31
0
n=int(input()) m=0 for i in range(n): x=input() if x[0]!=x[-1]: continue else: m+=1 continue if m==n: print("YES") else: print("NO")
Title: Valera and X Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera is a little boy. Yesterday he got a huge Math hometask at school, so Valera didn't have enough time to properly learn the English alphabet for his English lesson. Unfortunately, the English teacher decided to have a...
```python n=int(input()) m=0 for i in range(n): x=input() if x[0]!=x[-1]: continue else: m+=1 continue if m==n: print("YES") else: print("NO") ```
0
493
D
Vasya and Chess
PROGRAMMING
1,700
[ "constructive algorithms", "games", "math" ]
null
null
Vasya decided to learn to play chess. Classic chess doesn't seem interesting to him, so he plays his own sort of chess. The queen is the piece that captures all squares on its vertical, horizontal and diagonal lines. If the cell is located on the same vertical, horizontal or diagonal line with queen, and the cell cont...
The input contains a single number *n* (2<=≤<=*n*<=≤<=109) — the size of the board.
On the first line print the answer to problem — string "white" or string "black", depending on who wins if the both players play optimally. If the answer is "white", then you should also print two integers *r* and *c* representing the cell (*r*,<=*c*), where the first player should make his first move to win. If ther...
[ "2\n", "3\n" ]
[ "white\n1 2\n", "black\n" ]
In the first sample test the white queen can capture the black queen at the first move, so the white player wins. In the second test from the statement if the white queen captures the green pawn located on the central vertical line, then it will be captured by the black queen during the next move. So the only move for...
1,500
[ { "input": "2", "output": "white\n1 2" }, { "input": "3", "output": "black" }, { "input": "4", "output": "white\n1 2" }, { "input": "6", "output": "white\n1 2" }, { "input": "10", "output": "white\n1 2" }, { "input": "16", "output": "white\n1 2" ...
1,690,491,031
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
30
0
print("_RANDOM_GUESS_1690491031.5086684")# 1690491031.508687
Title: Vasya and Chess Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya decided to learn to play chess. Classic chess doesn't seem interesting to him, so he plays his own sort of chess. The queen is the piece that captures all squares on its vertical, horizontal and diagonal lines. I...
```python print("_RANDOM_GUESS_1690491031.5086684")# 1690491031.508687 ```
0