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
8
C
Looking for Order
PROGRAMMING
2,000
[ "bitmasks", "dp" ]
C. Looking for Order
4
512
Girl Lena likes it when everything is in order, and looks for order everywhere. Once she was getting ready for the University and noticed that the room was in a mess — all the objects from her handbag were thrown about the room. Of course, she wanted to put them back into her handbag. The problem is that the girl canno...
The first line of the input file contains the handbag's coordinates *x**s*,<=*y**s*. The second line contains number *n* (1<=≤<=*n*<=≤<=24) — the amount of objects the girl has. The following *n* lines contain the objects' coordinates. All the coordinates do not exceed 100 in absolute value. All the given positions are...
In the first line output the only number — the minimum time the girl needs to put the objects into her handbag. In the second line output the possible optimum way for Lena. Each object in the input is described by its index number (from 1 to *n*), the handbag's point is described by number 0. The path should start an...
[ "0 0\n2\n1 1\n-1 1\n", "1 1\n3\n4 3\n3 4\n0 0\n" ]
[ "8\n0 1 2 0 \n", "32\n0 1 2 0 3 0 \n" ]
none
0
[ { "input": "0 0\n2\n1 1\n-1 1", "output": "8\n0 1 2 0 " }, { "input": "1 1\n3\n4 3\n3 4\n0 0", "output": "32\n0 1 2 0 3 0 " }, { "input": "-3 4\n1\n2 2", "output": "58\n0 1 0 " }, { "input": "7 -7\n2\n3 1\n-3 8", "output": "490\n0 1 2 0 " }, { "input": "3 -9\n3\n0...
1,654,971,393
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
x0, y0 = map(int, input().split()) n = int(input()) point = [] for _ in range(n): x, y = map(int, input().split()) point.append([x, y]) end = (1 << n) - 1 dp = [1e10] * (1 << n) pre = [-1] * (1 << n) dp[0] = 0 for i in range(1 << n): f = 0 for j in range(n): if i & (1 << j): ...
Title: Looking for Order Time Limit: 4 seconds Memory Limit: 512 megabytes Problem Description: Girl Lena likes it when everything is in order, and looks for order everywhere. Once she was getting ready for the University and noticed that the room was in a mess — all the objects from her handbag were thrown about th...
```python x0, y0 = map(int, input().split()) n = int(input()) point = [] for _ in range(n): x, y = map(int, input().split()) point.append([x, y]) end = (1 << n) - 1 dp = [1e10] * (1 << n) pre = [-1] * (1 << n) dp[0] = 0 for i in range(1 << n): f = 0 for j in range(n): if i & (1 << j...
0
610
A
Pasha and Stick
PROGRAMMING
1,000
[ "combinatorics", "math" ]
null
null
Pasha has a wooden stick of some positive integer length *n*. He wants to perform exactly three cuts to get four parts of the stick. Each part must have some positive integer length and the sum of these lengths will obviously be *n*. Pasha likes rectangles but hates squares, so he wonders, how many ways are there to ...
The first line of the input contains a positive integer *n* (1<=≤<=*n*<=≤<=2·109) — the length of Pasha's stick.
The output should contain a single integer — the number of ways to split Pasha's stick into four parts of positive integer length so that it's possible to make a rectangle by connecting the ends of these parts, but is impossible to form a square.
[ "6\n", "20\n" ]
[ "1\n", "4\n" ]
There is only one way to divide the stick in the first sample {1, 1, 2, 2}. Four ways to divide the stick in the second sample are {1, 1, 9, 9}, {2, 2, 8, 8}, {3, 3, 7, 7} and {4, 4, 6, 6}. Note that {5, 5, 5, 5} doesn't work.
500
[ { "input": "6", "output": "1" }, { "input": "20", "output": "4" }, { "input": "1", "output": "0" }, { "input": "2", "output": "0" }, { "input": "3", "output": "0" }, { "input": "4", "output": "0" }, { "input": "2000000000", "output": "4...
1,602,179,034
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include <bits/stdc++.h> using namespace std; int main () { int n; cin >> n; int x = n / 2; cout << (x+1) / 2 - 1; }
Title: Pasha and Stick Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha has a wooden stick of some positive integer length *n*. He wants to perform exactly three cuts to get four parts of the stick. Each part must have some positive integer length and the sum of these lengths will obv...
```python #include <bits/stdc++.h> using namespace std; int main () { int n; cin >> n; int x = n / 2; cout << (x+1) / 2 - 1; } ```
-1
611
A
New Year and Days
PROGRAMMING
900
[ "implementation" ]
null
null
Today is Wednesday, the third day of the week. What's more interesting is that tomorrow is the last day of the year 2015. Limak is a little polar bear. He enjoyed this year a lot. Now, he is so eager to the coming year 2016. Limak wants to prove how responsible a bear he is. He is going to regularly save candies for ...
The only line of the input is in one of the following two formats: - "*x* of week" where *x* (1<=≤<=*x*<=≤<=7) denotes the day of the week. The 1-st day is Monday and the 7-th one is Sunday. - "*x* of month" where *x* (1<=≤<=*x*<=≤<=31) denotes the day of the month.
Print one integer — the number of candies Limak will save in the year 2016.
[ "4 of week\n", "30 of month\n" ]
[ "52\n", "11\n" ]
Polar bears use the Gregorian calendar. It is the most common calendar and you likely use it too. You can read about it on Wikipedia if you want to – [https://en.wikipedia.org/wiki/Gregorian_calendar](https://en.wikipedia.org/wiki/Gregorian_calendar). The week starts with Monday. In the first sample Limak wants to sav...
500
[ { "input": "4 of week", "output": "52" }, { "input": "30 of month", "output": "11" }, { "input": "17 of month", "output": "12" }, { "input": "31 of month", "output": "7" }, { "input": "6 of week", "output": "53" }, { "input": "1 of week", "output":...
1,585,563,715
535
PyPy 3
WRONG_ANSWER
TESTS
4
139
0
s = input().split() if s[-1]=='week': print(52) else: date = int(s[0]) if date<=29: print(12) if date==30: print(11) if date==31: print(7)
Title: New Year and Days Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today is Wednesday, the third day of the week. What's more interesting is that tomorrow is the last day of the year 2015. Limak is a little polar bear. He enjoyed this year a lot. Now, he is so eager to the coming ye...
```python s = input().split() if s[-1]=='week': print(52) else: date = int(s[0]) if date<=29: print(12) if date==30: print(11) if date==31: print(7) ```
0
96
A
Football
PROGRAMMING
900
[ "implementation", "strings" ]
A. Football
2
256
Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A zero corresponds to players of one team; a one corresponds to players of another team. If...
The first input line contains a non-empty string consisting of characters "0" and "1", which represents players. The length of the string does not exceed 100 characters. There's at least one player from each team present on the field.
Print "YES" if the situation is dangerous. Otherwise, print "NO".
[ "001001\n", "1000000001\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "001001", "output": "NO" }, { "input": "1000000001", "output": "YES" }, { "input": "00100110111111101", "output": "YES" }, { "input": "11110111111111111", "output": "YES" }, { "input": "01", "output": "NO" }, { "input": "10100101", "outp...
1,687,282,253
2,147,483,647
Python 3
OK
TESTS
44
92
0
STR=str(input()) str0="0000000" str1="1111111" if (str0 in STR) or (str1 in STR): print("YES") else: print("NO")
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A...
```python STR=str(input()) str0="0000000" str1="1111111" if (str0 in STR) or (str1 in STR): print("YES") else: print("NO") ```
3.977
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,420,910,198
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
0
x=input() y=input() i=0 t='' while i<len(x): if x[i]==y[i]:s='1' else:s='0' t=t+s i=i+1 print(t)
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() i=0 t='' while i<len(x): if x[i]==y[i]:s='1' else:s='0' t=t+s i=i+1 print(t) ```
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,661,670,335
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
60
0
n = input() n = int(n) a = list(input().split()) a = [int(i) for i in a] for i in range(1,n): sum = a[i] - a[i-1] b = a.copy() ans = 0 num = 0 for j in range(1,n): if not(b[j] - b[j-1] == sum): num+=1 ans = j + 1 b[j] = b[j-1] + sum i...
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 = input() n = int(n) a = list(input().split()) a = [int(i) for i in a] for i in range(1,n): sum = a[i] - a[i-1] b = a.copy() ans = 0 num = 0 for j in range(1,n): if not(b[j] - b[j-1] == sum): num+=1 ans = j + 1 b[j] = b[j-1] + sum ...
0
879
B
Table Tennis
PROGRAMMING
1,200
[ "data structures", "implementation" ]
null
null
*n* people are standing in a line to play table tennis. At first, the first two players in the line play a game. Then the loser goes to the end of the line, and the winner plays with the next person from the line, and so on. They play until someone wins *k* games in a row. This player becomes the winner. For each of t...
The first line contains two integers: *n* and *k* (2<=≤<=*n*<=≤<=500, 2<=≤<=*k*<=≤<=1012) — the number of people and the number of wins. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=*n*) — powers of the player. It's guaranteed that this line contains a valid permutation, i.e. all ...
Output a single integer — power of the winner.
[ "2 2\n1 2\n", "4 2\n3 1 2 4\n", "6 2\n6 5 3 1 2 4\n", "2 10000000000\n2 1\n" ]
[ "2 ", "3 ", "6 ", "2\n" ]
Games in the second sample: 3 plays with 1. 3 wins. 1 goes to the end of the line. 3 plays with 2. 3 wins. He wins twice in a row. He becomes the winner.
1,000
[ { "input": "2 2\n1 2", "output": "2 " }, { "input": "4 2\n3 1 2 4", "output": "3 " }, { "input": "6 2\n6 5 3 1 2 4", "output": "6 " }, { "input": "2 10000000000\n2 1", "output": "2" }, { "input": "4 4\n1 3 4 2", "output": "4 " }, { "input": "2 21474836...
1,572,788,874
2,147,483,647
Python 3
OK
TESTS
43
171
921,600
import math import os import random import re import sys playerWins = input().split() player = int(playerWins[0]) wins = int(playerWins[1]) powerValue = list(map(int, input().rstrip().split()[:player])) a=0 checker = [] if wins > 1000: wins = 1000 while len(checker) < wins: if powerValue[a] > powerValue[a+1]...
Title: Table Tennis Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* people are standing in a line to play table tennis. At first, the first two players in the line play a game. Then the loser goes to the end of the line, and the winner plays with the next person from the line, and so o...
```python import math import os import random import re import sys playerWins = input().split() player = int(playerWins[0]) wins = int(playerWins[1]) powerValue = list(map(int, input().rstrip().split()[:player])) a=0 checker = [] if wins > 1000: wins = 1000 while len(checker) < wins: if powerValue[a] > power...
3
591
A
Wizards' Duel
PROGRAMMING
900
[ "implementation", "math" ]
null
null
Harry Potter and He-Who-Must-Not-Be-Named engaged in a fight to the death once again. This time they are located at opposite ends of the corridor of length *l*. Two opponents simultaneously charge a deadly spell in the enemy. We know that the impulse of Harry's magic spell flies at a speed of *p* meters per second, and...
The first line of the input contains a single integer *l* (1<=≤<=*l*<=≤<=1<=000) — the length of the corridor where the fight takes place. The second line contains integer *p*, the third line contains integer *q* (1<=≤<=*p*,<=*q*<=≤<=500) — the speeds of magical impulses for Harry Potter and He-Who-Must-Not-Be-Named, ...
Print a single real number — the distance from the end of the corridor, where Harry is located, to the place of the second meeting of the spell impulses. Your answer will be considered correct if its absolute or relative error will not exceed 10<=-<=4. Namely: let's assume that your answer equals *a*, and the answer ...
[ "100\n50\n50\n", "199\n60\n40\n" ]
[ "50\n", "119.4\n" ]
In the first sample the speeds of the impulses are equal, so both of their meetings occur exactly in the middle of the corridor.
500
[ { "input": "100\n50\n50", "output": "50" }, { "input": "199\n60\n40", "output": "119.4" }, { "input": "1\n1\n1", "output": "0.5" }, { "input": "1\n1\n500", "output": "0.001996007984" }, { "input": "1\n500\n1", "output": "0.998003992" }, { "input": "1\n...
1,588,092,298
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
93
0
n = int(input()) p = int(input()) q = int(input()) mn = q*(n/(q+p)) ma = p*(n/(q+p)) print(max(mn,ma))
Title: Wizards' Duel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Harry Potter and He-Who-Must-Not-Be-Named engaged in a fight to the death once again. This time they are located at opposite ends of the corridor of length *l*. Two opponents simultaneously charge a deadly spell in the en...
```python n = int(input()) p = int(input()) q = int(input()) mn = q*(n/(q+p)) ma = p*(n/(q+p)) print(max(mn,ma)) ```
0
558
A
Lala Land and Apple Trees
PROGRAMMING
1,100
[ "brute force", "implementation", "sortings" ]
null
null
Amr lives in Lala Land. Lala Land is a very beautiful country that is located on a coordinate line. Lala Land is famous with its apple trees growing everywhere. Lala Land has exactly *n* apple trees. Tree number *i* is located in a position *x**i* and has *a**i* apples growing on it. Amr wants to collect apples from t...
The first line contains one number *n* (1<=≤<=*n*<=≤<=100), the number of apple trees in Lala Land. The following *n* lines contains two integers each *x**i*, *a**i* (<=-<=105<=≤<=*x**i*<=≤<=105, *x**i*<=≠<=0, 1<=≤<=*a**i*<=≤<=105), representing the position of the *i*-th tree and number of apples on it. It's guarant...
Output the maximum number of apples Amr can collect.
[ "2\n-1 5\n1 5\n", "3\n-2 2\n1 4\n-1 3\n", "3\n1 9\n3 5\n7 10\n" ]
[ "10", "9", "9" ]
In the first sample test it doesn't matter if Amr chose at first to go left or right. In both cases he'll get all the apples. In the second sample test the optimal solution is to go left to *x* =  - 1, collect apples from there, then the direction will be reversed, Amr has to go to *x* = 1, collect apples from there, ...
500
[ { "input": "2\n-1 5\n1 5", "output": "10" }, { "input": "3\n-2 2\n1 4\n-1 3", "output": "9" }, { "input": "3\n1 9\n3 5\n7 10", "output": "9" }, { "input": "1\n1 1", "output": "1" }, { "input": "4\n10000 100000\n-1000 100000\n-2 100000\n-1 100000", "output": "3...
1,437,095,896
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
46
0
def MBS(seq): L = len(seq) for i in range(L): for n in range(1, L): if seq[n][0] == seq[n - 1][0] and seq[n][1] > seq[n - 1][1]: seq[n - 1], seq[n] = seq[n], seq[n - 1] N=int(input()) Pos=[] Neg=[] for _ in range(N): X,A=map(int,input().split()) if X<...
Title: Lala Land and Apple Trees Time Limit: None seconds Memory Limit: None megabytes Problem Description: Amr lives in Lala Land. Lala Land is a very beautiful country that is located on a coordinate line. Lala Land is famous with its apple trees growing everywhere. Lala Land has exactly *n* apple trees. Tree num...
```python def MBS(seq): L = len(seq) for i in range(L): for n in range(1, L): if seq[n][0] == seq[n - 1][0] and seq[n][1] > seq[n - 1][1]: seq[n - 1], seq[n] = seq[n], seq[n - 1] N=int(input()) Pos=[] Neg=[] for _ in range(N): X,A=map(int,input().split()) ...
0
370
A
Rook, Bishop and King
PROGRAMMING
1,100
[ "graphs", "math", "shortest paths" ]
null
null
Little Petya is learning to play chess. He has already learned how to move a king, a rook and a bishop. Let us remind you the rules of moving chess pieces. A chessboard is 64 square fields organized into an 8<=×<=8 table. A field is represented by a pair of integers (*r*,<=*c*) — the number of the row and the number of...
The input contains four integers *r*1,<=*c*1,<=*r*2,<=*c*2 (1<=≤<=*r*1,<=*c*1,<=*r*2,<=*c*2<=≤<=8) — the coordinates of the starting and the final field. The starting field doesn't coincide with the final one. You can assume that the chessboard rows are numbered from top to bottom 1 through 8, and the columns are numb...
Print three space-separated integers: the minimum number of moves the rook, the bishop and the king (in this order) is needed to move from field (*r*1,<=*c*1) to field (*r*2,<=*c*2). If a piece cannot make such a move, print a 0 instead of the corresponding number.
[ "4 3 1 6\n", "5 5 5 6\n" ]
[ "2 1 3\n", "1 0 1\n" ]
none
500
[ { "input": "4 3 1 6", "output": "2 1 3" }, { "input": "5 5 5 6", "output": "1 0 1" }, { "input": "1 1 8 8", "output": "2 1 7" }, { "input": "1 1 8 1", "output": "1 0 7" }, { "input": "1 1 1 8", "output": "1 0 7" }, { "input": "8 1 1 1", "output": "...
1,698,977,233
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
17
46
0
def diags(r, c): return (r + c, r - c) r1, c1, r2, c2 = map(int, input().split()) d1 = diags(r1, c1) d2 = diags(r2, c2) print( 1 if r1 == r2 or c1 == c2 else 2, 0 if r1 ^ c1 ^ r2 ^ c2 else 1 if d1[0] == d2[0] or d1[1] == d2[1] else 2, max(abs(r1 - r2), abs(c1 - c2)), )
Title: Rook, Bishop and King Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya is learning to play chess. He has already learned how to move a king, a rook and a bishop. Let us remind you the rules of moving chess pieces. A chessboard is 64 square fields organized into an 8<=×<=...
```python def diags(r, c): return (r + c, r - c) r1, c1, r2, c2 = map(int, input().split()) d1 = diags(r1, c1) d2 = diags(r2, c2) print( 1 if r1 == r2 or c1 == c2 else 2, 0 if r1 ^ c1 ^ r2 ^ c2 else 1 if d1[0] == d2[0] or d1[1] == d2[1] else 2, max(abs(r1 - r2), abs(c1 - c2)), ) ```
0
894
D
Ralph And His Tour in Binary Country
PROGRAMMING
2,200
[ "brute force", "data structures", "trees" ]
null
null
Ralph is in the Binary Country. The Binary Country consists of *n* cities and (*n*<=-<=1) bidirectional roads connecting the cities. The roads are numbered from 1 to (*n*<=-<=1), the *i*-th road connects the city labeled (here ⌊ *x*⌋ denotes the *x* rounded down to the nearest integer) and the city labeled (*i*<=+<=1)...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=106, 1<=≤<=*m*<=≤<=105). (*n*<=-<=1) lines follow, each line contains one integer *L**i* (1<=≤<=*L**i*<=≤<=105), which denotes the length of the *i*-th road. *m* lines follow, each line contains two integers *A**i* and *H**i* (1<=≤<=*A**i*<=≤<=*n*, 0<=≤<...
Print *m* lines, on the *i*-th line print one integer — the answer for the *i*-th query.
[ "2 2\n5\n1 8\n2 4\n", "6 4\n2\n1\n1\n3\n2\n2 4\n1 3\n3 2\n1 7\n" ]
[ "11\n4\n", "11\n6\n3\n28\n" ]
Here is the explanation for the second sample. Ralph's first query is to start tours from city 2 and *H*<sub class="lower-index">*i*</sub> equals to 4. Here are the options: - He can choose city 5 as his terminal city. Since the distance between city 5 and city 2 is 3, he can gain happiness 4 - 3 = 1. - He can choo...
2,000
[ { "input": "2 2\n5\n1 8\n2 4", "output": "11\n4" }, { "input": "6 4\n2\n1\n1\n3\n2\n2 4\n1 3\n3 2\n1 7", "output": "11\n6\n3\n28" }, { "input": "8 1\n21725\n80273\n97276\n78838\n78474\n1896\n6570\n7 5267977", "output": "41283845" }, { "input": "4 2\n56025\n27554\n51024\n2 473...
1,693,928,157
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
2
46
2,867,200
import sys, os, io input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline def f(u, v): return u * m + v def make_graph(n, m): s = [0] * (n + 3) for i in range(0, 2 * m, 2): s[x[i] + 2] += 1 for i in range(3, n + 3): s[i] += s[i - 1] G = [0] * m for i in range...
Title: Ralph And His Tour in Binary Country Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ralph is in the Binary Country. The Binary Country consists of *n* cities and (*n*<=-<=1) bidirectional roads connecting the cities. The roads are numbered from 1 to (*n*<=-<=1), the *i*-th road con...
```python import sys, os, io input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline def f(u, v): return u * m + v def make_graph(n, m): s = [0] * (n + 3) for i in range(0, 2 * m, 2): s[x[i] + 2] += 1 for i in range(3, n + 3): s[i] += s[i - 1] G = [0] * m for ...
-1
263
A
Beautiful Matrix
PROGRAMMING
800
[ "implementation" ]
null
null
You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to right. In one move, you are allowed to apply one of the two following transformations to the matrix: 1....
The input consists of five lines, each line contains five integers: the *j*-th integer in the *i*-th line of the input represents the element of the matrix that is located on the intersection of the *i*-th row and the *j*-th column. It is guaranteed that the matrix consists of 24 zeroes and a single number one.
Print a single integer — the minimum number of moves needed to make the matrix beautiful.
[ "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n", "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n" ]
[ "3\n", "1\n" ]
none
500
[ { "input": "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "3" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "1" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 0 1 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "0" }, { "input": "0 0 0 0 0...
1,694,875,313
2,147,483,647
Python 3
OK
TESTS
25
92
0
rows = [input() for _ in range(5)] for j in range(5): ix = rows[j].find('1') if (ix != - 1): ix = ix - (ix // 2) print(abs(2-j)+abs(ix-2))
Title: Beautiful Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to ri...
```python rows = [input() for _ in range(5)] for j in range(5): ix = rows[j].find('1') if (ix != - 1): ix = ix - (ix // 2) print(abs(2-j)+abs(ix-2)) ```
3
938
A
Word Correction
PROGRAMMING
800
[ "implementation" ]
null
null
Victor tries to write his own text editor, with word correction included. However, the rules of word correction are really strange. Victor thinks that if a word contains two consecutive vowels, then it's kinda weird and it needs to be replaced. So the word corrector works in such a way: as long as there are two consec...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the number of letters in word *s* before the correction. The second line contains a string *s* consisting of exactly *n* lowercase Latin letters — the word before the correction.
Output the word *s* after the correction.
[ "5\nweird\n", "4\nword\n", "5\naaeaa\n" ]
[ "werd\n", "word\n", "a\n" ]
Explanations of the examples: 1. There is only one replace: weird <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> werd;1. No replace needed since there are no two consecutive vowels;1. aaeaa <i...
0
[ { "input": "5\nweird", "output": "werd" }, { "input": "4\nword", "output": "word" }, { "input": "5\naaeaa", "output": "a" }, { "input": "100\naaaaabbbbboyoyoyoyoyacadabbbbbiuiufgiuiuaahjabbbklboyoyoyoyoyaaaaabbbbbiuiuiuiuiuaaaaabbbbbeyiyuyzyw", "output": "abbbbbocadabbbbb...
1,526,834,702
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
0
n=int(input()) m=input() indice =0 vo = ['a', 'e', 'i', 'o', 'u', 'y'] while indice <(len(m)-1): if m[indice] in vo and m[indice+1]in vo: m.pop(indice) else: indice += 1 print(m)
Title: Word Correction Time Limit: None seconds Memory Limit: None megabytes Problem Description: Victor tries to write his own text editor, with word correction included. However, the rules of word correction are really strange. Victor thinks that if a word contains two consecutive vowels, then it's kinda weird an...
```python n=int(input()) m=input() indice =0 vo = ['a', 'e', 'i', 'o', 'u', 'y'] while indice <(len(m)-1): if m[indice] in vo and m[indice+1]in vo: m.pop(indice) else: indice += 1 print(m) ```
-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,598,482,626
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
280
1,228,800
from fractions import Fraction def main(): a = max(map(int, input().split())) -1 print(Fraction(a, 6) if Fraction(a, 6) > 0 else '1/1') main()
Title: Die Roll Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about T...
```python from fractions import Fraction def main(): a = max(map(int, input().split())) -1 print(Fraction(a, 6) if Fraction(a, 6) > 0 else '1/1') main() ```
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,573,048,768
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
108
0
s1 = input() s2 = 'hello' hello = 'NO' for i in range(len(s1)): if s1[i] == s2[0]: if len(s2) > 1: s2 = s2[1:] else: hello = 'YES' break elif i > 0 and s1[i] != s1[i-1]: break print(hello)
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 s1 = input() s2 = 'hello' hello = 'NO' for i in range(len(s1)): if s1[i] == s2[0]: if len(s2) > 1: s2 = s2[1:] else: hello = 'YES' break elif i > 0 and s1[i] != s1[i-1]: break print(hello) ```
0
978
A
Remove Duplicates
PROGRAMMING
800
[ "implementation" ]
null
null
Petya has an array $a$ consisting of $n$ integers. He wants to remove duplicate (equal) elements. Petya wants to leave only the rightmost entry (occurrence) for each element of the array. The relative order of the remaining unique elements should not be changed.
The first line contains a single integer $n$ ($1 \le n \le 50$) — the number of elements in Petya's array. The following line contains a sequence $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 1\,000$) — the Petya's array.
In the first line print integer $x$ — the number of elements which will be left in Petya's array after he removed the duplicates. In the second line print $x$ integers separated with a space — Petya's array after he removed the duplicates. For each unique element only the rightmost entry should be left.
[ "6\n1 5 5 1 6 1\n", "5\n2 4 2 4 4\n", "5\n6 6 6 6 6\n" ]
[ "3\n5 6 1 \n", "2\n2 4 \n", "1\n6 \n" ]
In the first example you should remove two integers $1$, which are in the positions $1$ and $4$. Also you should remove the integer $5$, which is in the position $2$. In the second example you should remove integer $2$, which is in the position $1$, and two integers $4$, which are in the positions $2$ and $4$. In the...
0
[ { "input": "6\n1 5 5 1 6 1", "output": "3\n5 6 1 " }, { "input": "5\n2 4 2 4 4", "output": "2\n2 4 " }, { "input": "5\n6 6 6 6 6", "output": "1\n6 " }, { "input": "7\n1 2 3 4 2 2 3", "output": "4\n1 4 2 3 " }, { "input": "9\n100 100 100 99 99 99 100 100 100", ...
1,661,552,804
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
409,600
from cmath import * from math import * from decimal import * from collections import * from re import X import sys def _input(): return map(int, input().split()) def _list(): return list(map(int, input().split())) def _int(): return int(input()) #ord -> chuyen asciiz thanh int def solves(): n= _int()...
Title: Remove Duplicates Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya has an array $a$ consisting of $n$ integers. He wants to remove duplicate (equal) elements. Petya wants to leave only the rightmost entry (occurrence) for each element of the array. The relative order of the re...
```python from cmath import * from math import * from decimal import * from collections import * from re import X import sys def _input(): return map(int, input().split()) def _list(): return list(map(int, input().split())) def _int(): return int(input()) #ord -> chuyen asciiz thanh int def solves(): ...
0
227
B
Effective Approach
PROGRAMMING
1,100
[ "implementation" ]
null
null
Once at a team training Vasya, Petya and Sasha got a problem on implementing linear search in an array. According to the boys, linear search works as follows. The array elements in a pre-selected order are in turn compared with the number that you need to find. Once you find the array element that is equal to the requ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of elements in the array. The second line contains *n* distinct space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=*n*) — the elements of array. The third line contains integer *m* (1<=≤<=*m*<=≤<=105) — the number of queries. The ...
Print two integers, showing how many comparisons Vasya's approach needs and how many comparisons Petya's approach needs. Separate the numbers by spaces. Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specifier.
[ "2\n1 2\n1\n1\n", "2\n2 1\n1\n1\n", "3\n3 1 2\n3\n1 2 3\n" ]
[ "1 2\n", "2 1\n", "6 6\n" ]
In the first sample Vasya's approach will make one comparison (it starts with the 1-st element and immediately finds the required number), and Petya's approach makes two comparisons (first he compares with the 2-nd array element, doesn't find the search item and compares with the 1-st element). In the second sample, o...
1,000
[ { "input": "2\n1 2\n1\n1", "output": "1 2" }, { "input": "2\n2 1\n1\n1", "output": "2 1" }, { "input": "3\n3 1 2\n3\n1 2 3", "output": "6 6" }, { "input": "9\n2 9 3 1 6 4 7 8 5\n9\n5 1 5 2 8 4 4 4 5", "output": "58 32" }, { "input": "10\n3 10 9 2 7 6 5 8 4 1\n1\n4...
1,654,776,247
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
6
2,000
9,318,400
n=int(input()) lstn=[int(x) for x in input().split()] m=int(input()) lstm=[int(x) for x in input().split()] vasya,petya=0,0 for i in lstm: vasya+=lstn.index(i)+1 petya+=n-lstn.index(i) print(vasya,petya)
Title: Effective Approach Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once at a team training Vasya, Petya and Sasha got a problem on implementing linear search in an array. According to the boys, linear search works as follows. The array elements in a pre-selected order are in turn c...
```python n=int(input()) lstn=[int(x) for x in input().split()] m=int(input()) lstm=[int(x) for x in input().split()] vasya,petya=0,0 for i in lstm: vasya+=lstn.index(i)+1 petya+=n-lstn.index(i) print(vasya,petya) ```
0
946
A
Partition
PROGRAMMING
800
[ "greedy" ]
null
null
You are given a sequence *a* consisting of *n* integers. You may partition this sequence into two sequences *b* and *c* in such a way that every element belongs exactly to one of these sequences. Let *B* be the sum of elements belonging to *b*, and *C* be the sum of elements belonging to *c* (if some of these sequenc...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in *a*. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (<=-<=100<=≤<=*a**i*<=≤<=100) — the elements of sequence *a*.
Print the maximum possible value of *B*<=-<=*C*, where *B* is the sum of elements of sequence *b*, and *C* is the sum of elements of sequence *c*.
[ "3\n1 -2 0\n", "6\n16 23 16 15 42 8\n" ]
[ "3\n", "120\n" ]
In the first example we may choose *b* = {1, 0}, *c* = { - 2}. Then *B* = 1, *C* =  - 2, *B* - *C* = 3. In the second example we choose *b* = {16, 23, 16, 15, 42, 8}, *c* = {} (an empty sequence). Then *B* = 120, *C* = 0, *B* - *C* = 120.
0
[ { "input": "3\n1 -2 0", "output": "3" }, { "input": "6\n16 23 16 15 42 8", "output": "120" }, { "input": "1\n-1", "output": "1" }, { "input": "100\n-100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -100 -10...
1,642,390,256
2,147,483,647
PyPy 3
OK
TESTS
72
155
3,481,600
import sys import math import collections import heapq import decimal input=sys.stdin.readline n=int(input()) l=sorted([int(i) for i in input().split()]) if(l[0]>=0): print(sum(l)) else: s1,s2=0,0 for i in range(n): if(l[i]<0): s1+=l[i] else: s2+=l[i] ...
Title: Partition Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a sequence *a* consisting of *n* integers. You may partition this sequence into two sequences *b* and *c* in such a way that every element belongs exactly to one of these sequences. Let *B* be the sum of eleme...
```python import sys import math import collections import heapq import decimal input=sys.stdin.readline n=int(input()) l=sorted([int(i) for i in input().split()]) if(l[0]>=0): print(sum(l)) else: s1,s2=0,0 for i in range(n): if(l[i]<0): s1+=l[i] else: ...
3
287
A
IQ Test
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
In the city of Ultima Thule job applicants are often offered an IQ test. The test is as follows: the person gets a piece of squared paper with a 4<=×<=4 square painted on it. Some of the square's cells are painted black and others are painted white. Your task is to repaint at most one cell the other color so that the...
Four lines contain four characters each: the *j*-th character of the *i*-th line equals "." if the cell in the *i*-th row and the *j*-th column of the square is painted white, and "#", if the cell is black.
Print "YES" (without the quotes), if the test can be passed and "NO" (without the quotes) otherwise.
[ "####\n.#..\n####\n....\n", "####\n....\n####\n....\n" ]
[ "YES\n", "NO\n" ]
In the first test sample it is enough to repaint the first cell in the second row. After such repainting the required 2 × 2 square is on the intersection of the 1-st and 2-nd row with the 1-st and 2-nd column.
500
[ { "input": "###.\n...#\n###.\n...#", "output": "NO" }, { "input": ".##.\n#..#\n.##.\n#..#", "output": "NO" }, { "input": ".#.#\n#.#.\n.#.#\n#.#.", "output": "NO" }, { "input": "##..\n..##\n##..\n..##", "output": "NO" }, { "input": "#.#.\n#.#.\n.#.#\n.#.#", "ou...
1,589,972,216
2,147,483,647
PyPy 3
OK
TESTS
30
140
0
def iq_test(): maze = [] for i in range(4): maze.append(input()) for i in range(len(maze) - 1): for j in range(len(maze[i]) - 1): dic = {'#': 0, '.': 0} dic[maze[i][j]] += 1 dic[maze[i + 1][j]] += 1 dic[maze[i + 1][j + 1]] += 1 di...
Title: IQ Test Time Limit: None seconds Memory Limit: None megabytes Problem Description: In the city of Ultima Thule job applicants are often offered an IQ test. The test is as follows: the person gets a piece of squared paper with a 4<=×<=4 square painted on it. Some of the square's cells are painted black and o...
```python def iq_test(): maze = [] for i in range(4): maze.append(input()) for i in range(len(maze) - 1): for j in range(len(maze[i]) - 1): dic = {'#': 0, '.': 0} dic[maze[i][j]] += 1 dic[maze[i + 1][j]] += 1 dic[maze[i + 1][j + 1]] += 1 ...
3
429
A
Xor-tree
PROGRAMMING
1,300
[ "dfs and similar", "trees" ]
null
null
Iahub is very proud of his recent discovery, propagating trees. Right now, he invented a new tree, called xor-tree. After this new revolutionary discovery, he invented a game for kids which uses xor-trees. The game is played on a tree having *n* nodes, numbered from 1 to *n*. Each node *i* has an initial value *init**...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=105). Each of the next *n*<=-<=1 lines contains two integers *u**i* and *v**i* (1<=≤<=*u**i*,<=*v**i*<=≤<=*n*; *u**i*<=≠<=*v**i*) meaning there is an edge between nodes *u**i* and *v**i*. The next line contains *n* integer numbers, the *i*-th of them corresponds t...
In the first line output an integer number *cnt*, representing the minimal number of operations you perform. Each of the next *cnt* lines should contain an integer *x**i*, representing that you pick a node *x**i*.
[ "10\n2 1\n3 1\n4 2\n5 1\n6 2\n7 5\n8 6\n9 8\n10 5\n1 0 1 1 0 1 0 1 0 1\n1 0 1 0 0 1 1 1 0 1\n" ]
[ "2\n4\n7\n" ]
none
500
[ { "input": "10\n2 1\n3 1\n4 2\n5 1\n6 2\n7 5\n8 6\n9 8\n10 5\n1 0 1 1 0 1 0 1 0 1\n1 0 1 0 0 1 1 1 0 1", "output": "2\n4\n7" }, { "input": "15\n2 1\n3 2\n4 3\n5 4\n6 5\n7 6\n8 7\n9 8\n10 9\n11 10\n12 11\n13 12\n14 13\n15 14\n0 1 0 0 1 1 1 1 1 1 0 0 0 1 1\n1 1 1 1 0 0 1 1 0 1 0 0 1 1 0", "output"...
1,648,229,830
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
12
951
66,764,800
n = int(input()) edges = [set() for _ in range(n)] for _ in range(n - 1): u, v = [int(i) - 1 for i in input().split()] edges[u].add(v) edges[v].add(u) inits = [int(i) for i in input().split()] goals = [int(i) for i in input().split()] require_change = set() for index, init, goal in zip(range(n)...
Title: Xor-tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub is very proud of his recent discovery, propagating trees. Right now, he invented a new tree, called xor-tree. After this new revolutionary discovery, he invented a game for kids which uses xor-trees. The game is played ...
```python n = int(input()) edges = [set() for _ in range(n)] for _ in range(n - 1): u, v = [int(i) - 1 for i in input().split()] edges[u].add(v) edges[v].add(u) inits = [int(i) for i in input().split()] goals = [int(i) for i in input().split()] require_change = set() for index, init, goal in zi...
-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,567,751,717
2,147,483,647
Python 3
OK
TESTS
32
248
0
n=int(input()) a=list(map(int,input().split())) o=[] e=[] for i in range(n): if(a[i]%2==0): o.append(i) else: e.append(i) print(e[0]+1) if(len(e)==1) else print(o[0]+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()) a=list(map(int,input().split())) o=[] e=[] for i in range(n): if(a[i]%2==0): o.append(i) else: e.append(i) print(e[0]+1) if(len(e)==1) else print(o[0]+1) ```
3.938
948
A
Protect Sheep
PROGRAMMING
900
[ "brute force", "dfs and similar", "graphs", "implementation" ]
null
null
Bob is a farmer. He has a large pasture with many sheep. Recently, he has lost some of them due to wolf attacks. He thus decided to place some shepherd dogs in such a way that all his sheep are protected. The pasture is a rectangle consisting of *R*<=×<=*C* cells. Each cell is either empty, contains a sheep, a wolf or...
First line contains two integers *R* (1<=≤<=*R*<=≤<=500) and *C* (1<=≤<=*C*<=≤<=500), denoting the number of rows and the numbers of columns respectively. Each of the following *R* lines is a string consisting of exactly *C* characters, representing one row of the pasture. Here, 'S' means a sheep, 'W' a wolf and '.' a...
If it is impossible to protect all sheep, output a single line with the word "No". Otherwise, output a line with the word "Yes". Then print *R* lines, representing the pasture after placing dogs. Again, 'S' means a sheep, 'W' a wolf, 'D' is a dog and '.' an empty space. You are not allowed to move, remove or add a she...
[ "6 6\n..S...\n..S.W.\n.S....\n..W...\n...W..\n......\n", "1 2\nSW\n", "5 5\n.S...\n...S.\nS....\n...S.\n.S...\n" ]
[ "Yes\n..SD..\n..SDW.\n.SD...\n.DW...\nDD.W..\n......\n", "No\n", "Yes\n.S...\n...S.\nS.D..\n...S.\n.S...\n" ]
In the first example, we can split the pasture into two halves, one containing wolves and one containing sheep. Note that the sheep at (2,1) is safe, as wolves cannot move diagonally. In the second example, there are no empty spots to put dogs that would guard the lone sheep. In the third example, there are no wolves...
500
[ { "input": "1 2\nSW", "output": "No" }, { "input": "10 10\n....W.W.W.\n.........S\n.S.S...S..\nW.......SS\n.W..W.....\n.W...W....\nS..S...S.S\n....W...S.\n..S..S.S.S\nSS.......S", "output": "Yes\nDDDDWDWDWD\nDDDDDDDDDS\nDSDSDDDSDD\nWDDDDDDDSS\nDWDDWDDDDD\nDWDDDWDDDD\nSDDSDDDSDS\nDDDDWDDDSD\nDDSD...
1,529,071,755
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
1,000
1,638,400
def bfs(arr): visited = [[False]*len(arr[0]) for i in range(len(arr))] q = [] q.append((0, 0)) visited[0][0] = True neighbors = [(1, 0), (-1, 0), (0, 1), (0, -1)] while len(q) != 0: nextLevel = [] for i, j in q: for dx, dy in neighbors: x = dx + i y = dy + j ...
Title: Protect Sheep Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bob is a farmer. He has a large pasture with many sheep. Recently, he has lost some of them due to wolf attacks. He thus decided to place some shepherd dogs in such a way that all his sheep are protected. The pasture is ...
```python def bfs(arr): visited = [[False]*len(arr[0]) for i in range(len(arr))] q = [] q.append((0, 0)) visited[0][0] = True neighbors = [(1, 0), (-1, 0), (0, 1), (0, -1)] while len(q) != 0: nextLevel = [] for i, j in q: for dx, dy in neighbors: x = dx + i y =...
0
399
A
Pages
PROGRAMMING
0
[ "implementation" ]
null
null
User ainta is making a web site. This time he is going to make a navigation of the pages. In his site, there are *n* pages numbered by integers from 1 to *n*. Assume that somebody is on the *p*-th page now. The navigation will look like this: When someone clicks the button "&lt;&lt;" he is redirected to page 1, and wh...
The first and the only line contains three integers *n*, *p*, *k* (3<=≤<=*n*<=≤<=100; 1<=≤<=*p*<=≤<=*n*; 1<=≤<=*k*<=≤<=*n*)
Print the proper navigation. Follow the format of the output from the test samples.
[ "17 5 2\n", "6 5 2\n", "6 1 2\n", "6 2 2\n", "9 6 3\n", "10 6 3\n", "8 5 4\n" ]
[ "&lt;&lt; 3 4 (5) 6 7 &gt;&gt; ", "&lt;&lt; 3 4 (5) 6 ", "(1) 2 3 &gt;&gt; ", "1 (2) 3 4 &gt;&gt;", "&lt;&lt; 3 4 5 (6) 7 8 9", "&lt;&lt; 3 4 5 (6) 7 8 9 &gt;&gt;", "1 2 3 4 (5) 6 7 8 " ]
none
500
[ { "input": "17 5 2", "output": "<< 3 4 (5) 6 7 >> " }, { "input": "6 5 2", "output": "<< 3 4 (5) 6 " }, { "input": "6 1 2", "output": "(1) 2 3 >> " }, { "input": "6 2 2", "output": "1 (2) 3 4 >> " }, { "input": "9 6 3", "output": "<< 3 4 5 (6) 7 8 9 " }, {...
1,585,235,351
2,147,483,647
PyPy 3
OK
TESTS
26
155
0
x=input() xx=x.split( ) n=int(xx[0]) p=int(xx[1]) k=int(xx[2]) if p-k<=1: kk=p-1 while kk!=0: print(p-kk,end=' ') kk-=1 else: kk=k print('<<',end=' ') while kk!=0: print(p-kk,end=' ') kk-=1 print('(',end='') print(p,end='') print(')',end=' ') ...
Title: Pages Time Limit: None seconds Memory Limit: None megabytes Problem Description: User ainta is making a web site. This time he is going to make a navigation of the pages. In his site, there are *n* pages numbered by integers from 1 to *n*. Assume that somebody is on the *p*-th page now. The navigation will lo...
```python x=input() xx=x.split( ) n=int(xx[0]) p=int(xx[1]) k=int(xx[2]) if p-k<=1: kk=p-1 while kk!=0: print(p-kk,end=' ') kk-=1 else: kk=k print('<<',end=' ') while kk!=0: print(p-kk,end=' ') kk-=1 print('(',end='') print(p,end='') print(')',end=' ...
3
552
B
Vanya and Books
PROGRAMMING
1,200
[ "implementation", "math" ]
null
null
Vanya got an important task — he should enumerate books in the library and label each book with its number. Each of the *n* books should be assigned with a number from 1 to *n*. Naturally, distinct books should be assigned distinct numbers. Vanya wants to know how many digits he will have to write down as he labels th...
The first line contains integer *n* (1<=≤<=*n*<=≤<=109) — the number of books in the library.
Print the number of digits needed to number all the books.
[ "13\n", "4\n" ]
[ "17\n", "4\n" ]
Note to the first test. The books get numbers 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, which totals to 17 digits. Note to the second sample. The books get numbers 1, 2, 3, 4, which totals to 4 digits.
1,000
[ { "input": "13", "output": "17" }, { "input": "4", "output": "4" }, { "input": "100", "output": "192" }, { "input": "99", "output": "189" }, { "input": "1000000000", "output": "8888888899" }, { "input": "1000000", "output": "5888896" }, { "...
1,567,625,026
2,147,483,647
Python 3
OK
TESTS
55
155
0
#encoding: utf-8 n = int(input()) digits_number = 0 power_10 = 1 while power_10 <= n: digits_number += n - (power_10 - 1) power_10 *= 10 print(digits_number)
Title: Vanya and Books Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya got an important task — he should enumerate books in the library and label each book with its number. Each of the *n* books should be assigned with a number from 1 to *n*. Naturally, distinct books should be assig...
```python #encoding: utf-8 n = int(input()) digits_number = 0 power_10 = 1 while power_10 <= n: digits_number += n - (power_10 - 1) power_10 *= 10 print(digits_number) ```
3
41
A
Translation
PROGRAMMING
800
[ "implementation", "strings" ]
A. Translation
2
256
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc....
The first line contains word *s*, the second line contains word *t*. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
If the word *t* is a word *s*, written reversely, print YES, otherwise print NO.
[ "code\nedoc\n", "abb\naba\n", "code\ncode\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "code\nedoc", "output": "YES" }, { "input": "abb\naba", "output": "NO" }, { "input": "code\ncode", "output": "NO" }, { "input": "abacaba\nabacaba", "output": "YES" }, { "input": "q\nq", "output": "YES" }, { "input": "asrgdfngfnmfgnhweratgjkk...
1,635,104,816
2,147,483,647
Python 3
OK
TESTS
40
92
4,300,800
# -*- coding: utf-8 -*- """ Created on Sun Oct 24 15:39:01 2021 @author: Nikiq """ s = input() s = s[::-1] #[::-1] reverses a string, s.reverse() reverses a list #print(s) n = input() if s == n: print("YES") else: print("NO")
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python # -*- coding: utf-8 -*- """ Created on Sun Oct 24 15:39:01 2021 @author: Nikiq """ s = input() s = s[::-1] #[::-1] reverses a string, s.reverse() reverses a list #print(s) n = input() if s == n: print("YES") else: print("NO") ```
3.968989
0
none
none
none
0
[ "none" ]
null
null
Andrew and Eugene are playing a game. Initially, Andrew has string *s*, consisting of digits. Eugene sends Andrew multiple queries of type "*d**i*<=→<=*t**i*", that means "replace all digits *d**i* in string *s* with substrings equal to *t**i*". For example, if *s*<==<=123123, then query "2<=→<=00" transforms *s* to 10...
The first line contains string *s* (1<=≤<=|*s*|<=≤<=105), consisting of digits — the string before processing all the requests. The second line contains a single integer *n* (0<=≤<=*n*<=≤<=105) — the number of queries. The next *n* lines contain the descriptions of the queries. The *i*-th query is described by string...
Print a single integer — remainder of division of the resulting number by 1000000007 (109<=+<=7).
[ "123123\n1\n2-&gt;00\n", "123123\n1\n3-&gt;\n", "222\n2\n2-&gt;0\n0-&gt;7\n", "1000000008\n0\n" ]
[ "10031003\n", "1212\n", "777\n", "1\n" ]
Note that the leading zeroes are not removed from string *s* after the replacement (you can see it in the third sample).
0
[ { "input": "123123\n1\n2->00", "output": "10031003" }, { "input": "123123\n1\n3->", "output": "1212" }, { "input": "222\n2\n2->0\n0->7", "output": "777" }, { "input": "1000000008\n0", "output": "1" }, { "input": "100\n5\n1->301\n0->013\n1->013\n0->103\n0->103", ...
1,410,110,831
7,031
Python 3
TIME_LIMIT_EXCEEDED
PRETESTS
4
1,000
204,800
a = input() if a == "": num = 0 else: num = str(int(a)) n = int(input()) for x in range(n): old, new = input().split('->') while True: onum = num num = onum.replace(old, new) if(onum == num): break print((int(num) + 1000000007) % 1000000007)
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andrew and Eugene are playing a game. Initially, Andrew has string *s*, consisting of digits. Eugene sends Andrew multiple queries of type "*d**i*<=→<=*t**i*", that means "replace all digits *d**i* in string *s* with substrings eq...
```python a = input() if a == "": num = 0 else: num = str(int(a)) n = int(input()) for x in range(n): old, new = input().split('->') while True: onum = num num = onum.replace(old, new) if(onum == num): break print((int(num) + 1000000007) % 1000000007) ```
0
493
B
Vasya and Wrestling
PROGRAMMING
1,400
[ "implementation" ]
null
null
Vasya has become interested in wrestling. In wrestling wrestlers use techniques for which they are awarded points by judges. The wrestler who gets the most points wins. When the numbers of points of both wrestlers are equal, the wrestler whose sequence of points is lexicographically greater, wins. If the sequences of...
The first line contains number *n* — the number of techniques that the wrestlers have used (1<=≤<=*n*<=≤<=2·105). The following *n* lines contain integer numbers *a**i* (|*a**i*|<=≤<=109, *a**i*<=≠<=0). If *a**i* is positive, that means that the first wrestler performed the technique that was awarded with *a**i* poin...
If the first wrestler wins, print string "first", otherwise print "second"
[ "5\n1\n2\n-3\n-4\n3\n", "3\n-1\n-2\n3\n", "2\n4\n-4\n" ]
[ "second\n", "first\n", "second\n" ]
Sequence *x*  =  *x*<sub class="lower-index">1</sub>*x*<sub class="lower-index">2</sub>... *x*<sub class="lower-index">|*x*|</sub> is lexicographically larger than sequence *y*  =  *y*<sub class="lower-index">1</sub>*y*<sub class="lower-index">2</sub>... *y*<sub class="lower-index">|*y*|</sub>, if either |*x*|  &gt;  |...
1,000
[ { "input": "5\n1\n2\n-3\n-4\n3", "output": "second" }, { "input": "3\n-1\n-2\n3", "output": "first" }, { "input": "2\n4\n-4", "output": "second" }, { "input": "7\n1\n2\n-3\n4\n5\n-6\n7", "output": "first" }, { "input": "14\n1\n2\n3\n4\n5\n6\n7\n-8\n-9\n-10\n-11\n-...
1,599,526,919
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
6
140
0
x=int(input()) first=[] second=[] for i in range(x): y=int(input()) if y>0: first.append(y) else: second.append(y) sumf=sum(first) sums=sum(second) if abs(sumf)>abs(sums): print("first") elif abs(sums)>abs(sumf): print("second") else: if y>0: print("first") else: ...
Title: Vasya and Wrestling Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has become interested in wrestling. In wrestling wrestlers use techniques for which they are awarded points by judges. The wrestler who gets the most points wins. When the numbers of points of both wrestlers ...
```python x=int(input()) first=[] second=[] for i in range(x): y=int(input()) if y>0: first.append(y) else: second.append(y) sumf=sum(first) sums=sum(second) if abs(sumf)>abs(sums): print("first") elif abs(sums)>abs(sumf): print("second") else: if y>0: print("first") ...
0
463
C
Gargari and Bishops
PROGRAMMING
1,900
[ "greedy", "hashing", "implementation" ]
null
null
Gargari is jealous that his friend Caisa won the game from the previous problem. He wants to prove that he is a genius. He has a *n*<=×<=*n* chessboard. Each cell of the chessboard has a number written on it. Gargari wants to place two bishops on the chessboard in such a way that there is no cell that is attacked by b...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=2000). Each of the next *n* lines contains *n* integers *a**ij* (0<=≤<=*a**ij*<=≤<=109) — description of the chessboard.
On the first line print the maximal number of dollars Gargari will get. On the next line print four integers: *x*1,<=*y*1,<=*x*2,<=*y*2 (1<=≤<=*x*1,<=*y*1,<=*x*2,<=*y*2<=≤<=*n*), where *x**i* is the number of the row where the *i*-th bishop should be placed, *y**i* is the number of the column where the *i*-th bishop sh...
[ "4\n1 1 1 1\n2 1 1 0\n1 1 1 0\n1 0 0 1\n" ]
[ "12\n2 2 3 2\n" ]
none
1,500
[ { "input": "4\n1 1 1 1\n2 1 1 0\n1 1 1 0\n1 0 0 1", "output": "12\n2 2 3 2" }, { "input": "10\n48 43 75 80 32 30 65 31 18 91\n99 5 12 43 26 90 54 91 4 88\n8 87 68 95 73 37 53 46 53 90\n50 1 85 24 32 16 5 48 98 74\n38 49 78 2 91 3 43 96 93 46\n35 100 84 2 94 56 90 98 54 43\n88 3 95 72 78 78 87 82 25 ...
1,589,892,271
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
7
1,028
31,334,400
import sys input=sys.stdin.buffer.readline def d3(i,j,a): n=len(a) i1,j1=i-1,j-1 a[i][j]=0 while j1>=0 and i1>=0: a[i1][j1]=0 i1-=1 j1-=1 i1,j1=i+1,j+1 while i1<n and j1<n: a[i1][j1]=0 i1+=1 j1+=1 def d4(i,j,a): n=len(a) ...
Title: Gargari and Bishops Time Limit: None seconds Memory Limit: None megabytes Problem Description: Gargari is jealous that his friend Caisa won the game from the previous problem. He wants to prove that he is a genius. He has a *n*<=×<=*n* chessboard. Each cell of the chessboard has a number written on it. Garga...
```python import sys input=sys.stdin.buffer.readline def d3(i,j,a): n=len(a) i1,j1=i-1,j-1 a[i][j]=0 while j1>=0 and i1>=0: a[i1][j1]=0 i1-=1 j1-=1 i1,j1=i+1,j+1 while i1<n and j1<n: a[i1][j1]=0 i1+=1 j1+=1 def d4(i,j,a): n=...
0
401
C
Team
PROGRAMMING
1,400
[ "constructive algorithms", "greedy", "implementation" ]
null
null
Now it's time of Olympiads. Vanya and Egor decided to make his own team to take part in a programming Olympiad. They've been best friends ever since primary school and hopefully, that can somehow help them in teamwork. For each team Olympiad, Vanya takes his play cards with numbers. He takes only the cards containing ...
The first line contains two integers: *n* (1<=≤<=*n*<=≤<=106) — the number of cards containing number 0; *m* (1<=≤<=*m*<=≤<=106) — the number of cards containing number 1.
In a single line print the required sequence of zeroes and ones without any spaces. If such sequence is impossible to obtain, print -1.
[ "1 2\n", "4 8\n", "4 10\n", "1 5\n" ]
[ "101\n", "110110110101\n", "11011011011011\n", "-1\n" ]
none
1,500
[ { "input": "1 2", "output": "101" }, { "input": "4 8", "output": "110110110101" }, { "input": "4 10", "output": "11011011011011" }, { "input": "1 5", "output": "-1" }, { "input": "3 4", "output": "1010101" }, { "input": "3 10", "output": "-1" }, ...
1,590,317,521
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
12
248
6,963,200
import math test = 1 for tes in range(test): n,m=list(map(int, input().split())) if m>=2*n: m = m-2*n if(m>2): print(-1) continue print('110'*n + '1'*m) else: print('110'*(m-n)+'10'*(2*n-m))
Title: Team Time Limit: None seconds Memory Limit: None megabytes Problem Description: Now it's time of Olympiads. Vanya and Egor decided to make his own team to take part in a programming Olympiad. They've been best friends ever since primary school and hopefully, that can somehow help them in teamwork. For each t...
```python import math test = 1 for tes in range(test): n,m=list(map(int, input().split())) if m>=2*n: m = m-2*n if(m>2): print(-1) continue print('110'*n + '1'*m) else: print('110'*(m-n)+'10'*(2*n-m)) ```
0
427
A
Police Recruits
PROGRAMMING
800
[ "implementation" ]
null
null
The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of the police force can investigate only one crime during his/her lifetime. If there is no police offi...
The first line of input will contain an integer *n* (1<=≤<=*n*<=≤<=105), the number of events. The next line will contain *n* space-separated integers. If the integer is -1 then it means a crime has occurred. Otherwise, the integer will be positive, the number of officers recruited together at that time. No more than ...
Print a single integer, the number of crimes which will go untreated.
[ "3\n-1 -1 1\n", "8\n1 -1 1 -1 -1 1 1 1\n", "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1\n" ]
[ "2\n", "1\n", "8\n" ]
Lets consider the second example: 1. Firstly one person is hired. 1. Then crime appears, the last hired person will investigate this crime. 1. One more person is hired. 1. One more crime appears, the last hired person will investigate this crime. 1. Crime appears. There is no free policeman at the time, so this c...
500
[ { "input": "3\n-1 -1 1", "output": "2" }, { "input": "8\n1 -1 1 -1 -1 1 1 1", "output": "1" }, { "input": "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1", "output": "8" }, { "input": "7\n-1 -1 1 1 -1 -1 1", "output": "2" }, { "input": "21\n-1 -1 -1 -1 -1 3 2 -1 6 -1 -1 2 1 ...
1,698,967,597
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
0
n = int(input()) z = list(map(int,input().split())) ans = 0 res = 0 for i in z : if i == -1 : if not res : ans +=1 else : res -=1 else : res +=1 print(ans)
Title: Police Recruits Time Limit: None seconds Memory Limit: None megabytes Problem Description: The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of...
```python n = int(input()) z = list(map(int,input().split())) ans = 0 res = 0 for i in z : if i == -1 : if not res : ans +=1 else : res -=1 else : res +=1 print(ans) ```
0
670
C
Cinema
PROGRAMMING
1,300
[ "implementation", "sortings" ]
null
null
Moscow is hosting a major international conference, which is attended by *n* scientists from different countries. Each of the scientists knows exactly one language. For convenience, we enumerate all languages of the world with integers from 1 to 109. In the evening after the conference, all *n* scientists decided to g...
The first line of the input contains a positive integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of scientists. The second line contains *n* positive integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109), where *a**i* is the index of a language, which the *i*-th scientist knows. The third line contains a positi...
Print the single integer — the index of a movie to which scientists should go. After viewing this movie the number of very pleased scientists should be maximum possible. If in the cinema there are several such movies, you need to choose among them one, after viewing which there will be the maximum possible number of al...
[ "3\n2 3 2\n2\n3 2\n2 3\n", "6\n6 3 1 1 3 7\n5\n1 2 3 4 5\n2 3 4 5 1\n" ]
[ "2\n", "1\n" ]
In the first sample, scientists must go to the movie with the index 2, as in such case the 1-th and the 3-rd scientists will be very pleased and the 2-nd scientist will be almost satisfied. In the second test case scientists can go either to the movie with the index 1 or the index 3. After viewing any of these movies ...
1,000
[ { "input": "3\n2 3 2\n2\n3 2\n2 3", "output": "2" }, { "input": "6\n6 3 1 1 3 7\n5\n1 2 3 4 5\n2 3 4 5 1", "output": "1" }, { "input": "1\n10\n1\n10\n3", "output": "1" }, { "input": "2\n1 6\n1\n6\n1", "output": "1" }, { "input": "1\n5\n2\n2 2\n5 5", "output": ...
1,611,722,150
2,147,483,647
PyPy 3
OK
TESTS
138
1,372
49,561,600
from collections import defaultdict n = int(input()) lang = list(map(int, input().split())) m = int(input()) B = list(map(int,input().split())) C = list(map(int, input().split())) ind = [i for i in range(m)] movies = [list(x) for x in zip(B,C,ind)] lcount = defaultdict(int) for i in lang: lcount[i] += 1...
Title: Cinema Time Limit: None seconds Memory Limit: None megabytes Problem Description: Moscow is hosting a major international conference, which is attended by *n* scientists from different countries. Each of the scientists knows exactly one language. For convenience, we enumerate all languages of the world with i...
```python from collections import defaultdict n = int(input()) lang = list(map(int, input().split())) m = int(input()) B = list(map(int,input().split())) C = list(map(int, input().split())) ind = [i for i in range(m)] movies = [list(x) for x in zip(B,C,ind)] lcount = defaultdict(int) for i in lang: lcou...
3
793
A
Oleg and shares
PROGRAMMING
900
[ "implementation", "math" ]
null
null
Oleg the bank client checks share prices every day. There are *n* share prices he is interested in. Today he observed that each second exactly one of these prices decreases by *k* rubles (note that each second exactly one price changes, but at different seconds different prices can change). Prices can become negative. ...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=105,<=1<=≤<=*k*<=≤<=109) — the number of share prices, and the amount of rubles some price decreases each second. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the initial prices.
Print the only line containing the minimum number of seconds needed for prices to become equal, of «-1» if it is impossible.
[ "3 3\n12 9 15\n", "2 2\n10 9\n", "4 1\n1 1000000000 1000000000 1000000000\n" ]
[ "3", "-1", "2999999997" ]
Consider the first example. Suppose the third price decreases in the first second and become equal 12 rubles, then the first price decreases and becomes equal 9 rubles, and in the third second the third price decreases again and becomes equal 9 rubles. In this case all prices become equal 9 rubles in 3 seconds. Ther...
500
[ { "input": "3 3\n12 9 15", "output": "3" }, { "input": "2 2\n10 9", "output": "-1" }, { "input": "4 1\n1 1000000000 1000000000 1000000000", "output": "2999999997" }, { "input": "1 11\n123", "output": "0" }, { "input": "20 6\n38 86 86 50 98 62 32 2 14 62 98 50 2 50...
1,494,146,294
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
124
9,216,000
n,k=map(int,input().split()) a=list(map(int,input().split())) q=True mi=a[0] for i in a: if i%k!=0: q=False break elif i<mi: mi=i ans=0 if q: for i in a: ans+=(i-mi)//k else: ans=-1 print(ans)
Title: Oleg and shares Time Limit: None seconds Memory Limit: None megabytes Problem Description: Oleg the bank client checks share prices every day. There are *n* share prices he is interested in. Today he observed that each second exactly one of these prices decreases by *k* rubles (note that each second exactly o...
```python n,k=map(int,input().split()) a=list(map(int,input().split())) q=True mi=a[0] for i in a: if i%k!=0: q=False break elif i<mi: mi=i ans=0 if q: for i in a: ans+=(i-mi)//k else: ans=-1 print(ans) ```
0
169
A
Chores
PROGRAMMING
800
[ "sortings" ]
null
null
Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do *n* chores. Each chore is characterized by a single parameter — its complexity. The complexity of the *i*-th chore equals *h**i*. As Petya is older, he wants to take the chores with complexit...
The first input line contains three integers *n*,<=*a* and *b* (2<=≤<=*n*<=≤<=2000; *a*,<=*b*<=≥<=1; *a*<=+<=*b*<==<=*n*) — the total number of chores, the number of Petya's chores and the number of Vasya's chores. The next line contains a sequence of integers *h*1,<=*h*2,<=...,<=*h**n* (1<=≤<=*h**i*<=≤<=109), *h**i* ...
Print the required number of ways to choose an integer value of *x*. If there are no such ways, print 0.
[ "5 2 3\n6 2 3 100 1\n", "7 3 4\n1 1 9 1 1 1 1\n" ]
[ "3\n", "0\n" ]
In the first sample the possible values of *x* are 3, 4 or 5. In the second sample it is impossible to find such *x*, that Petya got 3 chores and Vasya got 4.
500
[ { "input": "5 2 3\n6 2 3 100 1", "output": "3" }, { "input": "7 3 4\n1 1 9 1 1 1 1", "output": "0" }, { "input": "2 1 1\n10 2", "output": "8" }, { "input": "2 1 1\n7 7", "output": "0" }, { "input": "2 1 1\n1 1000000000", "output": "999999999" }, { "inp...
1,616,323,949
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
0
a, b, c=map(int, input().split()) d=sorted(list(map(int, input().split()))) print(d) e=d[b] f=d[b+1] print(f-e)
Title: Chores Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do *n* chores. Each chore is characterized by a single parameter — its complexity. The complexity of th...
```python a, b, c=map(int, input().split()) d=sorted(list(map(int, input().split()))) print(d) e=d[b] f=d[b+1] print(f-e) ```
0
0
none
none
none
0
[ "none" ]
null
null
One day, little Vasya found himself in a maze consisting of (*n*<=+<=1) rooms, numbered from 1 to (*n*<=+<=1). Initially, Vasya is at the first room and to get out of the maze, he needs to get to the (*n*<=+<=1)-th one. The maze is organized as follows. Each room of the maze has two one-way portals. Let's consider roo...
The first line contains integer *n* (1<=≤<=*n*<=≤<=103) — the number of rooms. The second line contains *n* integers *p**i* (1<=≤<=*p**i*<=≤<=*i*). Each *p**i* denotes the number of the room, that someone can reach, if he will use the second portal in the *i*-th room.
Print a single number — the number of portal moves the boy needs to go out of the maze. As the number can be rather large, print it modulo 1000000007 (109<=+<=7).
[ "2\n1 2\n", "4\n1 1 2 3\n", "5\n1 1 1 1 1\n" ]
[ "4\n", "20\n", "62\n" ]
none
0
[ { "input": "2\n1 2", "output": "4" }, { "input": "4\n1 1 2 3", "output": "20" }, { "input": "5\n1 1 1 1 1", "output": "62" }, { "input": "7\n1 2 1 3 1 2 1", "output": "154" }, { "input": "1\n1", "output": "2" }, { "input": "3\n1 1 3", "output": "8"...
1,581,810,156
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
8
1,000
1,228,800
n = int(input()) portals = [int(x)-1 for x in input().split()] crosses = [0]*n i = 0 moves = 0 while i != n: moves += 1 crosses[i] += 1 if crosses[i] % 2 == 0: i += 1 else: i = portals[i] print(moves)
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day, little Vasya found himself in a maze consisting of (*n*<=+<=1) rooms, numbered from 1 to (*n*<=+<=1). Initially, Vasya is at the first room and to get out of the maze, he needs to get to the (*n*<=+<=1)-th one. The maze ...
```python n = int(input()) portals = [int(x)-1 for x in input().split()] crosses = [0]*n i = 0 moves = 0 while i != n: moves += 1 crosses[i] += 1 if crosses[i] % 2 == 0: i += 1 else: i = portals[i] print(moves) ```
0
127
A
Wasted Time
PROGRAMMING
900
[ "geometry" ]
null
null
Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count the time he has wasted signing papers. Mr. Scrooge's signature can be represented as a polyline ...
The first line contains two integers *n* and *k* (2<=≤<=*n*<=≤<=100, 1<=≤<=*k*<=≤<=1000). Each of the following *n* lines contains the coordinates of the polyline's endpoints. The *i*-th one contains coordinates of the point *A**i* — integers *x**i* and *y**i*, separated by a space. All points *A**i* are different. Th...
Print one real number — the total time Scrooges wastes on signing the papers in seconds. The absolute or relative error should not exceed 10<=-<=6.
[ "2 1\n0 0\n10 0\n", "5 10\n3 1\n-5 6\n-2 -1\n3 2\n10 0\n", "6 10\n5 0\n4 0\n6 0\n3 0\n7 0\n2 0\n" ]
[ "0.200000000", "6.032163204", "3.000000000" ]
none
500
[ { "input": "2 1\n0 0\n10 0", "output": "0.200000000" }, { "input": "5 10\n3 1\n-5 6\n-2 -1\n3 2\n10 0", "output": "6.032163204" }, { "input": "6 10\n5 0\n4 0\n6 0\n3 0\n7 0\n2 0", "output": "3.000000000" }, { "input": "10 95\n-20 -5\n2 -8\n14 13\n10 3\n17 11\n13 -12\n-6 11\n1...
1,673,078,020
2,147,483,647
Python 3
OK
TESTS
42
92
0
import math n,k = map(int,input().split()) a,b = map(int,input().split()) sum = 0 for i in range(n-1): c,d = map(int,input().split()) if b == d or a == c: i = abs(a-c)+abs(b-d) else: t = (a-c)**2 + (b-d)**2 i = math.sqrt(t) sum += (i * k) a,b = c,d print(round(su...
Title: Wasted Time Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count ...
```python import math n,k = map(int,input().split()) a,b = map(int,input().split()) sum = 0 for i in range(n-1): c,d = map(int,input().split()) if b == d or a == c: i = abs(a-c)+abs(b-d) else: t = (a-c)**2 + (b-d)**2 i = math.sqrt(t) sum += (i * k) a,b = c,d prin...
3
835
A
Key races
PROGRAMMING
800
[ "math" ]
null
null
Two boys decided to compete in text typing on the site "Key races". During the competition, they have to type a text consisting of *s* characters. The first participant types one character in *v*1 milliseconds and has ping *t*1 milliseconds. The second participant types one character in *v*2 milliseconds and has ping *...
The first line contains five integers *s*, *v*1, *v*2, *t*1, *t*2 (1<=≤<=*s*,<=*v*1,<=*v*2,<=*t*1,<=*t*2<=≤<=1000) — the number of characters in the text, the time of typing one character for the first participant, the time of typing one character for the the second participant, the ping of the first participant and th...
If the first participant wins, print "First". If the second participant wins, print "Second". In case of a draw print "Friendship".
[ "5 1 2 1 2\n", "3 3 1 1 1\n", "4 5 3 1 5\n" ]
[ "First\n", "Second\n", "Friendship\n" ]
In the first example, information on the success of the first participant comes in 7 milliseconds, of the second participant — in 14 milliseconds. So, the first wins. In the second example, information on the success of the first participant comes in 11 milliseconds, of the second participant — in 5 milliseconds. So, ...
500
[ { "input": "5 1 2 1 2", "output": "First" }, { "input": "3 3 1 1 1", "output": "Second" }, { "input": "4 5 3 1 5", "output": "Friendship" }, { "input": "1000 1000 1000 1000 1000", "output": "Friendship" }, { "input": "1 1 1 1 1", "output": "Friendship" }, ...
1,626,628,095
2,147,483,647
Python 3
OK
TESTS
32
77
6,758,400
s,v1,v2,t1,t2=list(map(int,input().split())) c1=(s*v1)+(2*t1) c2=(s*v2)+(2*t2) if(c1<c2): print("First") elif c1==c2: print("Friendship") else: print("Second")
Title: Key races Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two boys decided to compete in text typing on the site "Key races". During the competition, they have to type a text consisting of *s* characters. The first participant types one character in *v*1 milliseconds and has ping *t...
```python s,v1,v2,t1,t2=list(map(int,input().split())) c1=(s*v1)+(2*t1) c2=(s*v2)+(2*t2) if(c1<c2): print("First") elif c1==c2: print("Friendship") else: print("Second") ```
3
567
A
Lineland Mail
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
All cities of Lineland are located on the *Ox* coordinate axis. Thus, each city is associated with its position *x**i* — a coordinate on the *Ox* axis. No two cities are located at a single point. Lineland residents love to send letters to each other. A person may send a letter only if the recipient lives in another c...
The first line of the input contains integer *n* (2<=≤<=*n*<=≤<=105) — the number of cities in Lineland. The second line contains the sequence of *n* distinct integers *x*1,<=*x*2,<=...,<=*x**n* (<=-<=109<=≤<=*x**i*<=≤<=109), where *x**i* is the *x*-coordinate of the *i*-th city. All the *x**i*'s are distinct and follo...
Print *n* lines, the *i*-th line must contain two integers *min**i*,<=*max**i*, separated by a space, where *min**i* is the minimum cost of sending a letter from the *i*-th city, and *max**i* is the maximum cost of sending a letter from the *i*-th city.
[ "4\n-5 -2 2 7\n", "2\n-1 1\n" ]
[ "3 12\n3 9\n4 7\n5 12\n", "2 2\n2 2\n" ]
none
500
[ { "input": "4\n-5 -2 2 7", "output": "3 12\n3 9\n4 7\n5 12" }, { "input": "2\n-1 1", "output": "2 2\n2 2" }, { "input": "3\n-1 0 1", "output": "1 2\n1 1\n1 2" }, { "input": "4\n-1 0 1 3", "output": "1 4\n1 3\n1 2\n2 4" }, { "input": "3\n-1000000000 0 1000000000", ...
1,618,568,015
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
10
3,000
7,065,600
n=int(input()) l=[int(x) for x in input().split()] for i in range(0,n): l1=[] for j in range(0,n): if j!=i: l1.append(abs(l[j]-l[i])) print(min(l1),max(l1),sep=' ')
Title: Lineland Mail Time Limit: None seconds Memory Limit: None megabytes Problem Description: All cities of Lineland are located on the *Ox* coordinate axis. Thus, each city is associated with its position *x**i* — a coordinate on the *Ox* axis. No two cities are located at a single point. Lineland residents love...
```python n=int(input()) l=[int(x) for x in input().split()] for i in range(0,n): l1=[] for j in range(0,n): if j!=i: l1.append(abs(l[j]-l[i])) print(min(l1),max(l1),sep=' ') ```
0
916
B
Jamie and Binary Sequence (changed after round)
PROGRAMMING
2,000
[ "bitmasks", "greedy", "math" ]
null
null
Jamie is preparing a Codeforces round. He has got an idea for a problem, but does not know how to solve it. Help him write a solution to the following problem: Find *k* integers such that the sum of two to the power of each number equals to the number *n* and the largest integer in the answer is as small as possible. ...
The first line consists of two integers *n* and *k* (1<=≤<=*n*<=≤<=1018,<=1<=≤<=*k*<=≤<=105) — the required sum and the length of the sequence.
Output "No" (without quotes) in a single line if there does not exist such sequence. Otherwise, output "Yes" (without quotes) in the first line, and *k* numbers separated by space in the second line — the required sequence. It is guaranteed that the integers in the answer sequence fit the range [<=-<=1018,<=1018].
[ "23 5\n", "13 2\n", "1 2\n" ]
[ "Yes\n3 3 2 1 0 \n", "No\n", "Yes\n-1 -1 \n" ]
Sample 1: 2<sup class="upper-index">3</sup> + 2<sup class="upper-index">3</sup> + 2<sup class="upper-index">2</sup> + 2<sup class="upper-index">1</sup> + 2<sup class="upper-index">0</sup> = 8 + 8 + 4 + 2 + 1 = 23 Answers like (3, 3, 2, 0, 1) or (0, 1, 2, 3, 3) are not lexicographically largest. Answers like (4, 1, 1...
1,000
[ { "input": "23 5", "output": "Yes\n3 3 2 1 0 " }, { "input": "13 2", "output": "No" }, { "input": "1 2", "output": "Yes\n-1 -1 " }, { "input": "1 1", "output": "Yes\n0 " }, { "input": "1000000000000000000 100000", "output": "Yes\n44 44 44 44 44 44 44 44 44 44 ...
1,517,456,793
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
61
5,632,000
import math n, k = map(int, input().split()) binn=[] t = n sb = 0 val=[0]*128 ind = 0 small = 0 one = True while t > 0: binn.append(t%2) if t%2 == 1: sb += 1 if one: small = ind one = False t = math.trunc(t/2) ind = ind + 1 #print("smal...
Title: Jamie and Binary Sequence (changed after round) Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jamie is preparing a Codeforces round. He has got an idea for a problem, but does not know how to solve it. Help him write a solution to the following problem: Find *k* integers such tha...
```python import math n, k = map(int, input().split()) binn=[] t = n sb = 0 val=[0]*128 ind = 0 small = 0 one = True while t > 0: binn.append(t%2) if t%2 == 1: sb += 1 if one: small = ind one = False t = math.trunc(t/2) ind = ind + 1 #p...
-1
500
A
New Year Transportation
PROGRAMMING
1,000
[ "dfs and similar", "graphs", "implementation" ]
null
null
New Year is coming in Line World! In this world, there are *n* cells numbered by integers from 1 to *n*, as a 1<=×<=*n* board. People live in cells. However, it was hard to move between distinct cells, because of the difficulty of escaping the cell. People wanted to meet people who live in other cells. So, user tncks0...
The first line contains two space-separated integers *n* (3<=≤<=*n*<=≤<=3<=×<=104) and *t* (2<=≤<=*t*<=≤<=*n*) — the number of cells, and the index of the cell which I want to go to. The second line contains *n*<=-<=1 space-separated integers *a*1,<=*a*2,<=...,<=*a**n*<=-<=1 (1<=≤<=*a**i*<=≤<=*n*<=-<=*i*). It is guara...
If I can go to cell *t* using the transportation system, print "YES". Otherwise, print "NO".
[ "8 4\n1 2 1 2 1 2 1\n", "8 5\n1 2 1 2 1 1 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample, the visited cells are: 1, 2, 4; so we can successfully visit the cell 4. In the second sample, the possible cells to visit are: 1, 2, 4, 6, 7, 8; so we can't visit the cell 5, which we want to visit.
500
[ { "input": "8 4\n1 2 1 2 1 2 1", "output": "YES" }, { "input": "8 5\n1 2 1 2 1 1 1", "output": "NO" }, { "input": "20 19\n13 16 7 6 12 1 5 7 8 6 5 7 5 5 3 3 2 2 1", "output": "YES" }, { "input": "50 49\n11 7 1 41 26 36 19 16 38 14 36 35 37 27 20 27 3 6 21 2 27 11 18 17 19 16 ...
1,665,686,476
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
6,041,600
n, t = list(map(int, input().split())) a = list(map(int, input().split())) f = False for i in range(n-1): c = i+1+a[i] if c == t: f = True break if f: print("YES") else: print("NO")
Title: New Year Transportation Time Limit: None seconds Memory Limit: None megabytes Problem Description: New Year is coming in Line World! In this world, there are *n* cells numbered by integers from 1 to *n*, as a 1<=×<=*n* board. People live in cells. However, it was hard to move between distinct cells, because o...
```python n, t = list(map(int, input().split())) a = list(map(int, input().split())) f = False for i in range(n-1): c = i+1+a[i] if c == t: f = True break if f: print("YES") else: print("NO") ```
0
707
A
Brain's Photos
PROGRAMMING
800
[ "implementation" ]
null
null
Small, but very brave, mouse Brain was not accepted to summer school of young villains. He was upset and decided to postpone his plans of taking over the world, but to become a photographer instead. As you may know, the coolest photos are on the film (because you can specify the hashtag #film for such). Brain took a ...
The first line of the input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of photo pixel matrix rows and columns respectively. Then *n* lines describing matrix rows follow. Each of them contains *m* space-separated characters describing colors of pixels in a row. Each character in the line i...
Print the "#Black&amp;White" (without quotes), if the photo is black-and-white and "#Color" (without quotes), if it is colored, in the only line.
[ "2 2\nC M\nY Y\n", "3 2\nW W\nW W\nB B\n", "1 1\nW\n" ]
[ "#Color", "#Black&amp;White", "#Black&amp;White" ]
none
500
[ { "input": "2 2\nC M\nY Y", "output": "#Color" }, { "input": "3 2\nW W\nW W\nB B", "output": "#Black&White" }, { "input": "1 1\nW", "output": "#Black&White" }, { "input": "2 3\nW W W\nB G Y", "output": "#Color" }, { "input": "1 1\nW", "output": "#Black&White" ...
1,660,045,282
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n , m =map(int,input().split()) a =[] color = 0 for i in range(n): a.append(list(map(str, input().split()))[:m]) for b in range(n): for C in range(m): if a[n][m]=="w" or a[n][m]=="G" or [n][m]=="B": color= color else: color = color+1 print(color) if color...
Title: Brain's Photos Time Limit: None seconds Memory Limit: None megabytes Problem Description: Small, but very brave, mouse Brain was not accepted to summer school of young villains. He was upset and decided to postpone his plans of taking over the world, but to become a photographer instead. As you may know, the...
```python n , m =map(int,input().split()) a =[] color = 0 for i in range(n): a.append(list(map(str, input().split()))[:m]) for b in range(n): for C in range(m): if a[n][m]=="w" or a[n][m]=="G" or [n][m]=="B": color= color else: color = color+1 print(color)...
-1
546
A
Soldier and Bananas
PROGRAMMING
800
[ "brute force", "implementation", "math" ]
null
null
A soldier wants to buy *w* bananas in the shop. He has to pay *k* dollars for the first banana, 2*k* dollars for the second one and so on (in other words, he has to pay *i*·*k* dollars for the *i*-th banana). He has *n* dollars. How many dollars does he have to borrow from his friend soldier to buy *w* bananas?
The first line contains three positive integers *k*,<=*n*,<=*w* (1<=<=≤<=<=*k*,<=*w*<=<=≤<=<=1000, 0<=≤<=*n*<=≤<=109), the cost of the first banana, initial number of dollars the soldier has and number of bananas he wants.
Output one integer — the amount of dollars that the soldier must borrow from his friend. If he doesn't have to borrow money, output 0.
[ "3 17 4\n" ]
[ "13" ]
none
500
[ { "input": "3 17 4", "output": "13" }, { "input": "1 2 1", "output": "0" }, { "input": "1 1 1", "output": "0" }, { "input": "1 5 6", "output": "16" }, { "input": "1 1000000000 1", "output": "0" }, { "input": "1000 0 1000", "output": "500500000" }...
1,695,229,100
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
k, n, w = [int(i) for i in "1 2 1".split()] price = 0 for i in range(w): price += (i+1)*k if n > price: print(0) else: print(price-n)
Title: Soldier and Bananas Time Limit: None seconds Memory Limit: None megabytes Problem Description: A soldier wants to buy *w* bananas in the shop. He has to pay *k* dollars for the first banana, 2*k* dollars for the second one and so on (in other words, he has to pay *i*·*k* dollars for the *i*-th banana). He h...
```python k, n, w = [int(i) for i in "1 2 1".split()] price = 0 for i in range(w): price += (i+1)*k if n > price: print(0) else: print(price-n) ```
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,664,593,404
2,147,483,647
Python 3
OK
TESTS
40
46
0
# -*- coding: utf-8 -*- """ Created on Sat Oct 1 10:20:34 2022 @author: thinkpad """ line = input() word = 'hello' c = 0 for i in range(len(line)): if c<5 and line[i] == word[c]: c+=1 if c==5: break if c == 5: print('YES') else: print('NO')
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python # -*- coding: utf-8 -*- """ Created on Sat Oct 1 10:20:34 2022 @author: thinkpad """ line = input() word = 'hello' c = 0 for i in range(len(line)): if c<5 and line[i] == word[c]: c+=1 if c==5: break if c == 5: print('YES') else: print('NO') ```
3.977
931
A
Friends Meeting
PROGRAMMING
800
[ "brute force", "greedy", "implementation", "math" ]
null
null
Two friends are on the coordinate axis *Ox* in points with integer coordinates. One of them is in the point *x*1<==<=*a*, another one is in the point *x*2<==<=*b*. Each of the friends can move by one along the line in any direction unlimited number of times. When a friend moves, the tiredness of a friend changes acco...
The first line contains a single integer *a* (1<=≤<=*a*<=≤<=1000) — the initial position of the first friend. The second line contains a single integer *b* (1<=≤<=*b*<=≤<=1000) — the initial position of the second friend. It is guaranteed that *a*<=≠<=*b*.
Print the minimum possible total tiredness if the friends meet in the same point.
[ "3\n4\n", "101\n99\n", "5\n10\n" ]
[ "1\n", "2\n", "9\n" ]
In the first example the first friend should move by one to the right (then the meeting happens at point 4), or the second friend should move by one to the left (then the meeting happens at point 3). In both cases, the total tiredness becomes 1. In the second example the first friend should move by one to the left, an...
500
[ { "input": "3\n4", "output": "1" }, { "input": "101\n99", "output": "2" }, { "input": "5\n10", "output": "9" }, { "input": "1\n2", "output": "1" }, { "input": "1\n1000", "output": "250000" }, { "input": "999\n1000", "output": "1" }, { "inpu...
1,672,277,144
2,147,483,647
Python 3
OK
TESTS
40
62
0
import math as m a=int(input()) b=int(input()) if b<a: a,b=b,a d=a+m.ceil(abs(a-b)/2) x=d-a y=b-d stress=0 for i in range(1,x+1): stress+=i for i in range(1,y+1): stress+=i print(stress)
Title: Friends Meeting Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two friends are on the coordinate axis *Ox* in points with integer coordinates. One of them is in the point *x*1<==<=*a*, another one is in the point *x*2<==<=*b*. Each of the friends can move by one along the line in...
```python import math as m a=int(input()) b=int(input()) if b<a: a,b=b,a d=a+m.ceil(abs(a-b)/2) x=d-a y=b-d stress=0 for i in range(1,x+1): stress+=i for i in range(1,y+1): stress+=i print(stress) ```
3
1,009
A
Game Shopping
PROGRAMMING
800
[ "implementation" ]
null
null
Maxim wants to buy some games at the local game shop. There are $n$ games in the shop, the $i$-th game costs $c_i$. Maxim has a wallet which can be represented as an array of integers. His wallet contains $m$ bills, the $j$-th bill has value $a_j$. Games in the shop are ordered from left to right, Maxim tries to buy ...
The first line of the input contains two integers $n$ and $m$ ($1 \le n, m \le 1000$) — the number of games and the number of bills in Maxim's wallet. The second line of the input contains $n$ integers $c_1, c_2, \dots, c_n$ ($1 \le c_i \le 1000$), where $c_i$ is the cost of the $i$-th game. The third line of the inp...
Print a single integer — the number of games Maxim will buy.
[ "5 4\n2 4 5 2 4\n5 3 4 6\n", "5 2\n20 40 50 20 40\n19 20\n", "6 4\n4 8 15 16 23 42\n1000 1000 1000 1000\n" ]
[ "3\n", "0\n", "4\n" ]
The first example is described in the problem statement. In the second example Maxim cannot buy any game because the value of the first bill in his wallet is smaller than the cost of any game in the shop. In the third example the values of the bills in Maxim's wallet are large enough to buy any game he encounter unti...
0
[ { "input": "5 4\n2 4 5 2 4\n5 3 4 6", "output": "3" }, { "input": "5 2\n20 40 50 20 40\n19 20", "output": "0" }, { "input": "6 4\n4 8 15 16 23 42\n1000 1000 1000 1000", "output": "4" }, { "input": "5 1\n1 1 1 1 1\n5", "output": "1" }, { "input": "5 1\n10 1 1 1 1\n...
1,592,909,059
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
2
218
22,220,800
def solution(l1,l2,l3): n,m=l1[0],l2[1] costs=l2 bills=l3 i=0 ans=0 while i<len(costs): bill=bills[0] if bill>=costs[i]: ans+=1 bills.remove(bill) i+=1 return ans def answer(): l1 = [int(x) for x in input().split()] l2 = ...
Title: Game Shopping Time Limit: None seconds Memory Limit: None megabytes Problem Description: Maxim wants to buy some games at the local game shop. There are $n$ games in the shop, the $i$-th game costs $c_i$. Maxim has a wallet which can be represented as an array of integers. His wallet contains $m$ bills, the ...
```python def solution(l1,l2,l3): n,m=l1[0],l2[1] costs=l2 bills=l3 i=0 ans=0 while i<len(costs): bill=bills[0] if bill>=costs[i]: ans+=1 bills.remove(bill) i+=1 return ans def answer(): l1 = [int(x) for x in input().split()] ...
-1
999
A
Mishka and Contest
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Mishka started participating in a programming contest. There are $n$ problems in the contest. Mishka's problem-solving skill is equal to $k$. Mishka arranges all problems from the contest into a list. Because of his weird principles, Mishka only solves problems from one of the ends of the list. Every time, he chooses ...
The first line of input contains two integers $n$ and $k$ ($1 \le n, k \le 100$) — the number of problems in the contest and Mishka's problem-solving skill. The second line of input contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 100$), where $a_i$ is the difficulty of the $i$-th problem. The problems are...
Print one integer — the maximum number of problems Mishka can solve.
[ "8 4\n4 2 3 1 5 1 6 4\n", "5 2\n3 1 2 1 3\n", "5 100\n12 34 55 43 21\n" ]
[ "5\n", "0\n", "5\n" ]
In the first example, Mishka can solve problems in the following order: $[4, 2, 3, 1, 5, 1, 6, 4] \rightarrow [2, 3, 1, 5, 1, 6, 4] \rightarrow [2, 3, 1, 5, 1, 6] \rightarrow [3, 1, 5, 1, 6] \rightarrow [1, 5, 1, 6] \rightarrow [5, 1, 6]$, so the number of solved problems will be equal to $5$. In the second example, M...
0
[ { "input": "8 4\n4 2 3 1 5 1 6 4", "output": "5" }, { "input": "5 2\n3 1 2 1 3", "output": "0" }, { "input": "5 100\n12 34 55 43 21", "output": "5" }, { "input": "100 100\n44 47 36 83 76 94 86 69 31 2 22 77 37 51 10 19 25 78 53 25 1 29 48 95 35 53 22 72 49 86 60 38 13 91 89 1...
1,676,967,323
2,147,483,647
PyPy 3-64
OK
TESTS
48
77
0
from collections import deque n, k = map(int, input().split()) lst = deque(map(int, input().split())) while len(lst) > 0 and lst[0] <= k: lst.popleft() while len(lst) > 0 and lst[-1] <= k: lst.pop() print(n - len(lst))
Title: Mishka and Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mishka started participating in a programming contest. There are $n$ problems in the contest. Mishka's problem-solving skill is equal to $k$. Mishka arranges all problems from the contest into a list. Because of his...
```python from collections import deque n, k = map(int, input().split()) lst = deque(map(int, input().split())) while len(lst) > 0 and lst[0] <= k: lst.popleft() while len(lst) > 0 and lst[-1] <= k: lst.pop() print(n - len(lst)) ```
3
491
B
New York Hotel
PROGRAMMING
2,100
[ "greedy", "math" ]
null
null
Think of New York as a rectangular grid consisting of *N* vertical avenues numerated from 1 to *N* and *M* horizontal streets numerated 1 to *M*. *C* friends are staying at *C* hotels located at some street-avenue crossings. They are going to celebrate birthday of one of them in the one of *H* restaurants also located ...
The first line contains two integers *N* и *M* — size of the city (1<=≤<=*N*,<=*M*<=≤<=109). In the next line there is a single integer *C* (1<=≤<=*C*<=≤<=105) — the number of hotels friends stayed at. Following *C* lines contain descriptions of hotels, each consisting of two coordinates *x* and *y* (1<=≤<=*x*<=≤<=*N*,...
In the first line output the optimal distance. In the next line output index of a restaurant that produces this optimal distance. If there are several possibilities, you are allowed to output any of them.
[ "10 10\n2\n1 1\n3 3\n2\n1 10\n4 4\n" ]
[ "6\n2\n" ]
none
1,000
[ { "input": "10 10\n2\n1 1\n3 3\n2\n1 10\n4 4", "output": "6\n2" }, { "input": "100 100\n10\n53 20\n97 6\n12 74\n48 92\n97 13\n47 96\n75 32\n69 21\n95 75\n1 54\n10\n36 97\n41 1\n1 87\n39 23\n27 44\n73 97\n1 1\n6 26\n48 3\n5 69", "output": "108\n4" }, { "input": "100 100\n10\n86 72\n25 73\...
1,419,910,593
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
0
#!/usr/bin/env python3 n, m = map(int, input().split()) minx = miny = n + m maxx = maxy = - minx dist = n + m + 1 c = int(input()) for _ in range(c): x, y = map(int, input().split()) minx = min(minx, x - y) miny = min(miny, x + y) maxx = max(maxx, x - y) maxy = max(maxy, x + y) h = int(input()) f...
Title: New York Hotel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Think of New York as a rectangular grid consisting of *N* vertical avenues numerated from 1 to *N* and *M* horizontal streets numerated 1 to *M*. *C* friends are staying at *C* hotels located at some street-avenue crossi...
```python #!/usr/bin/env python3 n, m = map(int, input().split()) minx = miny = n + m maxx = maxy = - minx dist = n + m + 1 c = int(input()) for _ in range(c): x, y = map(int, input().split()) minx = min(minx, x - y) miny = min(miny, x + y) maxx = max(maxx, x - y) maxy = max(maxy, x + y) h = int(...
0
761
A
Dasha and Stairs
PROGRAMMING
1,000
[ "brute force", "constructive algorithms", "implementation", "math" ]
null
null
On her way to programming school tiger Dasha faced her first test — a huge staircase! The steps were numbered from one to infinity. As we know, tigers are very fond of all striped things, it is possible that it has something to do with their color. So on some interval of her way she calculated two values — the number ...
In the only line you are given two integers *a*, *b* (0<=≤<=*a*,<=*b*<=≤<=100) — the number of even and odd steps, accordingly.
In the only line print "YES", if the interval of steps described above exists, and "NO" otherwise.
[ "2 3\n", "3 1\n" ]
[ "YES\n", "NO\n" ]
In the first example one of suitable intervals is from 1 to 5. The interval contains two even steps — 2 and 4, and three odd: 1, 3 and 5.
500
[ { "input": "2 3", "output": "YES" }, { "input": "3 1", "output": "NO" }, { "input": "5 4", "output": "YES" }, { "input": "9 9", "output": "YES" }, { "input": "85 95", "output": "NO" }, { "input": "0 1", "output": "YES" }, { "input": "89 25"...
1,558,541,880
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
11
93
0
s=[int(n) for n in input().split()] if abs(s[0]-s[1])<=1: print('YES') else: print('NO')
Title: Dasha and Stairs Time Limit: None seconds Memory Limit: None megabytes Problem Description: On her way to programming school tiger Dasha faced her first test — a huge staircase! The steps were numbered from one to infinity. As we know, tigers are very fond of all striped things, it is possible that it has so...
```python s=[int(n) for n in input().split()] if abs(s[0]-s[1])<=1: print('YES') else: print('NO') ```
0
0
none
none
none
0
[ "none" ]
null
null
Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answered Vova that *n* is the answer to the arithmetic task for first-graders. In the textbook, a certain ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=109).
In the first line print one integer *k* — number of different values of *x* satisfying the condition. In next *k* lines print these values in ascending order.
[ "21\n", "20\n" ]
[ "1\n15\n", "0\n" ]
In the first test case *x* = 15 there is only one variant: 15 + 1 + 5 = 21. In the second test case there are no such *x*.
0
[ { "input": "21", "output": "1\n15" }, { "input": "20", "output": "0" }, { "input": "1", "output": "0" }, { "input": "2", "output": "1\n1" }, { "input": "3", "output": "0" }, { "input": "100000001", "output": "2\n99999937\n100000000" }, { "i...
1,508,154,795
2,895
Python 3
RUNTIME_ERROR
PRETESTS
2
46
0
import math def sumn(n): k = str(n) ans = 0 for elem in k: ans += int(elem) return ans n = int(input()) a = int(math.log10(n)) + 1 res = [] for i in range(n - a * 10, n): if i + sumn(i) == n: res.append(i) print(len(res)) if res: print(*res)
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answered Vova th...
```python import math def sumn(n): k = str(n) ans = 0 for elem in k: ans += int(elem) return ans n = int(input()) a = int(math.log10(n)) + 1 res = [] for i in range(n - a * 10, n): if i + sumn(i) == n: res.append(i) print(len(res)) if res: print(*res) ```
-1
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,586,890,320
2,147,483,647
Python 3
OK
TESTS
102
124
0
x=str(input()) y=str(input()) c=0 l=len(x) ll=len(y) if(l==ll): for i in range(l): if(x[i]==y[i]): print("0",end="") else: print("1",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 x=str(input()) y=str(input()) c=0 l=len(x) ll=len(y) if(l==ll): for i in range(l): if(x[i]==y[i]): print("0",end="") else: print("1",end="") ```
3.969
651
A
Joysticks
PROGRAMMING
1,100
[ "dp", "greedy", "implementation", "math" ]
null
null
Friends are going to play console. They have two joysticks and only one charger for them. Initially first joystick is charged at *a*1 percent and second one is charged at *a*2 percent. You can connect charger to a joystick only at the beginning of each minute. In one minute joystick either discharges by 2 percent (if n...
The first line of the input contains two positive integers *a*1 and *a*2 (1<=≤<=*a*1,<=*a*2<=≤<=100), the initial charge level of first and second joystick respectively.
Output the only integer, the maximum number of minutes that the game can last. Game continues until some joystick is discharged.
[ "3 5\n", "4 4\n" ]
[ "6\n", "5\n" ]
In the first sample game lasts for 6 minute by using the following algorithm: - at the beginning of the first minute connect first joystick to the charger, by the end of this minute first joystick is at 4%, second is at 3%; - continue the game without changing charger, by the end of the second minute the first joyst...
500
[ { "input": "3 5", "output": "6" }, { "input": "4 4", "output": "5" }, { "input": "100 100", "output": "197" }, { "input": "1 100", "output": "98" }, { "input": "100 1", "output": "98" }, { "input": "1 4", "output": "2" }, { "input": "1 1", ...
1,609,147,657
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
109
0
a,b=map(int,input().split()) c=0 while(a and b): if a>b: a=max(a-2,0) b+=1 else: a+=1 b=max(b-2,0) c+=1 print(c)
Title: Joysticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Friends are going to play console. They have two joysticks and only one charger for them. Initially first joystick is charged at *a*1 percent and second one is charged at *a*2 percent. You can connect charger to a joystick on...
```python a,b=map(int,input().split()) c=0 while(a and b): if a>b: a=max(a-2,0) b+=1 else: a+=1 b=max(b-2,0) c+=1 print(c) ```
0
80
A
Panoramix's Prediction
PROGRAMMING
800
[ "brute force" ]
A. Panoramix's Prediction
2
256
A prime number is a number which has exactly two distinct divisors: one and itself. For example, numbers 2, 7, 3 are prime, and 1, 6, 4 are not. The next prime number after *x* is the smallest prime number greater than *x*. For example, the next prime number after 2 is 3, and the next prime number after 3 is 5. Note t...
The first and only input line contains two positive integers — *n* and *m* (2<=≤<=*n*<=&lt;<=*m*<=≤<=50). It is guaranteed that *n* is prime. Pretests contain all the cases with restrictions 2<=≤<=*n*<=&lt;<=*m*<=≤<=4.
Print YES, if *m* is the next prime number after *n*, or NO otherwise.
[ "3 5\n", "7 11\n", "7 9\n" ]
[ "YES", "YES", "NO" ]
none
500
[ { "input": "3 5", "output": "YES" }, { "input": "7 11", "output": "YES" }, { "input": "7 9", "output": "NO" }, { "input": "2 3", "output": "YES" }, { "input": "2 4", "output": "NO" }, { "input": "3 4", "output": "NO" }, { "input": "3 5", ...
1,666,917,221
2,147,483,647
Python 3
OK
TESTS
45
92
0
lst=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47] n,m=map(int,input().split()) ind=lst.index(n) if ind==len(lst)-1: print('NO') else: if m==lst[ind+1]: print('YES') else: print('NO')
Title: Panoramix's Prediction Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A prime number is a number which has exactly two distinct divisors: one and itself. For example, numbers 2, 7, 3 are prime, and 1, 6, 4 are not. The next prime number after *x* is the smallest prime number greater t...
```python lst=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47] n,m=map(int,input().split()) ind=lst.index(n) if ind==len(lst)-1: print('NO') else: if m==lst[ind+1]: print('YES') else: print('NO') ```
3.977
620
E
New Year Tree
PROGRAMMING
2,100
[ "bitmasks", "data structures", "trees" ]
null
null
The New Year holidays are over, but Resha doesn't want to throw away the New Year tree. He invited his best friends Kerim and Gural to help him to redecorate the New Year tree. The New Year tree is an undirected tree with *n* vertices and root in the vertex 1. You should process the queries of the two types: 1. Cha...
The first line contains two integers *n*,<=*m* (1<=≤<=*n*,<=*m*<=≤<=4·105) — the number of vertices in the tree and the number of the queries. The second line contains *n* integers *c**i* (1<=≤<=*c**i*<=≤<=60) — the colour of the *i*-th vertex. Each of the next *n*<=-<=1 lines contains two integers *x**j*,<=*y**j* (1...
For each query of the second type print the integer *a* — the number of different colours in the subtree of the vertex given in the query. Each of the numbers should be printed on a separate line in order of query appearing in the input.
[ "7 10\n1 1 1 1 1 1 1\n1 2\n1 3\n1 4\n3 5\n3 6\n3 7\n1 3 2\n2 1\n1 4 3\n2 1\n1 2 5\n2 1\n1 6 4\n2 1\n2 2\n2 3\n", "23 30\n1 2 2 6 5 3 2 1 1 1 2 4 5 3 4 4 3 3 3 3 3 4 6\n1 2\n1 3\n1 4\n2 5\n2 6\n3 7\n3 8\n4 9\n4 10\n4 11\n6 12\n6 13\n7 14\n7 15\n7 16\n8 17\n8 18\n10 19\n10 20\n10 21\n11 22\n11 23\n2 1\n2 5\n2 6\n2 ...
[ "2\n3\n4\n5\n1\n2\n", "6\n1\n3\n3\n2\n1\n2\n3\n5\n5\n1\n2\n2\n1\n1\n1\n2\n3\n" ]
none
0
[ { "input": "7 10\n1 1 1 1 1 1 1\n1 2\n1 3\n1 4\n3 5\n3 6\n3 7\n1 3 2\n2 1\n1 4 3\n2 1\n1 2 5\n2 1\n1 6 4\n2 1\n2 2\n2 3", "output": "2\n3\n4\n5\n1\n2" }, { "input": "23 30\n1 2 2 6 5 3 2 1 1 1 2 4 5 3 4 4 3 3 3 3 3 4 6\n1 2\n1 3\n1 4\n2 5\n2 6\n3 7\n3 8\n4 9\n4 10\n4 11\n6 12\n6 13\n7 14\n7 15\n7 16...
1,647,794,260
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
46
0
# # def should_i_stay_or_should_i_go(d,i,H,E,N): # # temp1=H # # temp2=E # # x=() # # if d[i]=='om': # # temp2 = temp2 - 2 # # if temp1>=N-1 and temp2>N-1: # # x.add(temp1) # # x.add(temp2) # # return x # # if d[i]=='Milk': # # temp1=temp1-...
Title: New Year Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: The New Year holidays are over, but Resha doesn't want to throw away the New Year tree. He invited his best friends Kerim and Gural to help him to redecorate the New Year tree. The New Year tree is an undirected tree wit...
```python # # def should_i_stay_or_should_i_go(d,i,H,E,N): # # temp1=H # # temp2=E # # x=() # # if d[i]=='om': # # temp2 = temp2 - 2 # # if temp1>=N-1 and temp2>N-1: # # x.add(temp1) # # x.add(temp2) # # return x # # if d[i]=='Milk': # # te...
-1
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,511,013,227
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n = int(input()) forces = [] for i in range(n): forces.append(list(map(int, input().split()))) for i in range(n): if sum(forces[i][0] == 0) and sum(forces[i][1] == 0) and sum(forces[i][1] == 0): print('YES') else : print('NO')
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python n = int(input()) forces = [] for i in range(n): forces.append(list(map(int, input().split()))) for i in range(n): if sum(forces[i][0] == 0) and sum(forces[i][1] == 0) and sum(forces[i][1] == 0): print('YES') else : print('NO') ```
-1
899
C
Dividing the numbers
PROGRAMMING
1,300
[ "constructive algorithms", "graphs", "math" ]
null
null
Petya has *n* integers: 1,<=2,<=3,<=...,<=*n*. He wants to split these integers in two non-empty groups in such a way that the absolute difference of sums of integers in each group is as small as possible. Help Petya to split the integers. Each of *n* integers should be exactly in one group.
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=60<=000) — the number of integers Petya has.
Print the smallest possible absolute difference in the first line. In the second line print the size of the first group, followed by the integers in that group. You can print these integers in arbitrary order. If there are multiple answers, print any of them.
[ "4\n", "2\n" ]
[ "0\n2 1 4 \n", "1\n1 1 \n" ]
In the first example you have to put integers 1 and 4 in the first group, and 2 and 3 in the second. This way the sum in each group is 5, and the absolute difference is 0. In the second example there are only two integers, and since both groups should be non-empty, you have to put one integer in the first group and on...
1,500
[ { "input": "4", "output": "0\n2 1 4 " }, { "input": "2", "output": "1\n1 1 " }, { "input": "3", "output": "0\n1\n3 " }, { "input": "5", "output": "1\n3\n1 2 5 " }, { "input": "59998", "output": "1\n29999 1 4 5 8 9 12 13 16 17 20 21 24 25 28 29 32 33 36 37 40 4...
1,679,607,189
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
4
1,000
223,744,000
import itertools n = int(input()) nums = list(range(1, n + 1)) total_sum = (n * (n + 1)) // 2 min_diff = total_sum min_group1 = [] dp = [[0 for _ in range(total_sum + 1)] for _ in range(n + 1)] for i in range(1, n + 1): for j in range(1, total_sum + 1): if j < i: dp[i][j] = dp[i-1][j] ...
Title: Dividing the numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya has *n* integers: 1,<=2,<=3,<=...,<=*n*. He wants to split these integers in two non-empty groups in such a way that the absolute difference of sums of integers in each group is as small as possible. Help P...
```python import itertools n = int(input()) nums = list(range(1, n + 1)) total_sum = (n * (n + 1)) // 2 min_diff = total_sum min_group1 = [] dp = [[0 for _ in range(total_sum + 1)] for _ in range(n + 1)] for i in range(1, n + 1): for j in range(1, total_sum + 1): if j < i: dp[i][j] = dp[i-1...
0
691
A
Fashion in Berland
PROGRAMMING
1,000
[ "implementation" ]
null
null
According to rules of the Berland fashion, a jacket should be fastened by all the buttons except only one, but not necessarily it should be the last one. Also if the jacket has only one button, it should be fastened, so the jacket will not swinging open. You are given a jacket with *n* buttons. Determine if it is fast...
The first line contains integer *n* (1<=≤<=*n*<=≤<=1000) — the number of buttons on the jacket. The second line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=1). The number *a**i*<==<=0 if the *i*-th button is not fastened. Otherwise *a**i*<==<=1.
In the only line print the word "YES" if the jacket is fastened in a right way. Otherwise print the word "NO".
[ "3\n1 0 1\n", "3\n1 0 0\n" ]
[ "YES\n", "NO\n" ]
none
0
[ { "input": "3\n1 0 1", "output": "YES" }, { "input": "3\n1 0 0", "output": "NO" }, { "input": "3\n1 1 0", "output": "YES" }, { "input": "3\n1 1 1", "output": "NO" }, { "input": "3\n0 0 1", "output": "NO" }, { "input": "3\n0 0 0", "output": "NO" }...
1,536,213,141
141
Python 3
WRONG_ANSWER
TESTS
12
109
0
n = int(input()) a = list(map(int, input().split())) print('YES' if a.count(0) == 1 else 'NO')
Title: Fashion in Berland Time Limit: None seconds Memory Limit: None megabytes Problem Description: According to rules of the Berland fashion, a jacket should be fastened by all the buttons except only one, but not necessarily it should be the last one. Also if the jacket has only one button, it should be fastened,...
```python n = int(input()) a = list(map(int, input().split())) print('YES' if a.count(0) == 1 else 'NO') ```
0
246
A
Buggy Sorting
PROGRAMMING
900
[ "constructive algorithms", "greedy", "sortings" ]
null
null
Little boy Valera studies an algorithm of sorting an integer array. After studying the theory, he went on to the practical tasks. As a result, he wrote a program that sorts an array of *n* integers *a*1,<=*a*2,<=...,<=*a**n* in the non-decreasing order. The pseudocode of the program, written by Valera, is given below. ...
You've got a single integer *n* (1<=≤<=*n*<=≤<=50) — the size of the sorted array.
Print *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100) — the counter-example, for which Valera's algorithm won't work correctly. If the counter-example that meets the described conditions is impossible to give, print -1. If there are several counter-examples, consisting of *n* numbers, yo...
[ "1\n" ]
[ "-1\n" ]
none
500
[ { "input": "1", "output": "-1" }, { "input": "2", "output": "-1" }, { "input": "3", "output": "3 2 1 " }, { "input": "4", "output": "4 3 2 1 " }, { "input": "5", "output": "5 4 3 2 1 " }, { "input": "6", "output": "6 5 4 3 2 1 " }, { "input...
1,628,775,430
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
6,963,200
n = int(input()) a = [0 for i in range(n)] a[0] = 1 for j in range(1, n): a[j] = 100-j def printArray(a): for k in range(0,len(a)): if k == len(a)-1: print(a[k]) else: print(a[k], end = " ") if n == 1: print("-1") else: printArray(a)
Title: Buggy Sorting Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little boy Valera studies an algorithm of sorting an integer array. After studying the theory, he went on to the practical tasks. As a result, he wrote a program that sorts an array of *n* integers *a*1,<=*a*2,<=...,<=*a*...
```python n = int(input()) a = [0 for i in range(n)] a[0] = 1 for j in range(1, n): a[j] = 100-j def printArray(a): for k in range(0,len(a)): if k == len(a)-1: print(a[k]) else: print(a[k], end = " ") if n == 1: print("-1") else: printArray(a) ...
0
514
C
Watto and Mechanism
PROGRAMMING
2,000
[ "binary search", "data structures", "hashing", "string suffix structures", "strings" ]
null
null
Watto, the owner of a spare parts store, has recently got an order for the mechanism that can process strings in a certain way. Initially the memory of the mechanism is filled with *n* strings. Then the mechanism should be able to process queries of the following type: "Given string *s*, determine if the memory of the ...
The first line contains two non-negative numbers *n* and *m* (0<=≤<=*n*<=≤<=3·105, 0<=≤<=*m*<=≤<=3·105) — the number of the initial strings and the number of queries, respectively. Next follow *n* non-empty strings that are uploaded to the memory of the mechanism. Next follow *m* non-empty strings that are the querie...
For each query print on a single line "YES" (without the quotes), if the memory of the mechanism contains the required string, otherwise print "NO" (without the quotes).
[ "2 3\naaaaa\nacacaca\naabaa\nccacacc\ncaaac\n" ]
[ "YES\nNO\nNO\n" ]
none
2,000
[ { "input": "2 3\naaaaa\nacacaca\naabaa\nccacacc\ncaaac", "output": "YES\nNO\nNO" }, { "input": "1 5\nacbacbacb\ncbacbacb\nacbacbac\naacbacbacb\nacbacbacbb\nacbaabacb", "output": "NO\nNO\nNO\nNO\nYES" }, { "input": "5 4\nab\ncacab\ncbabc\nacc\ncacab\nabc\naa\nacbca\ncb", "output": "YE...
1,668,615,063
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
3
62
0
from collections import deque class Trie: def __init__(self): self.root = {} def insert(self, word): t = self.root for i in word: if i not in t: t[i] = {} t = t[i] t["-"] = True def query(self,word): queue = de...
Title: Watto and Mechanism Time Limit: None seconds Memory Limit: None megabytes Problem Description: Watto, the owner of a spare parts store, has recently got an order for the mechanism that can process strings in a certain way. Initially the memory of the mechanism is filled with *n* strings. Then the mechanism sh...
```python from collections import deque class Trie: def __init__(self): self.root = {} def insert(self, word): t = self.root for i in word: if i not in t: t[i] = {} t = t[i] t["-"] = True def query(self,word): ...
0
263
A
Beautiful Matrix
PROGRAMMING
800
[ "implementation" ]
null
null
You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to right. In one move, you are allowed to apply one of the two following transformations to the matrix: 1....
The input consists of five lines, each line contains five integers: the *j*-th integer in the *i*-th line of the input represents the element of the matrix that is located on the intersection of the *i*-th row and the *j*-th column. It is guaranteed that the matrix consists of 24 zeroes and a single number one.
Print a single integer — the minimum number of moves needed to make the matrix beautiful.
[ "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n", "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n" ]
[ "3\n", "1\n" ]
none
500
[ { "input": "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "3" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "1" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 0 1 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "0" }, { "input": "0 0 0 0 0...
1,695,308,358
2,147,483,647
Python 3
OK
TESTS
25
92
0
for i in range(5): p=input() if '1' in p: x=abs(i-2) s=p.split() for j in range(5): if s[j]=='1': y=abs(j-2) print(x+y)
Title: Beautiful Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to ri...
```python for i in range(5): p=input() if '1' in p: x=abs(i-2) s=p.split() for j in range(5): if s[j]=='1': y=abs(j-2) print(x+y) ```
3
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,650,349,203
2,147,483,647
Python 3
OK
TESTS
18
62
409,600
#!/usr/bin/env python import math import sys import itertools import fractions if __name__ == '__main__': wtf = sys.stdin.read() wtf = wtf.strip().split('\n') k,n,s,p = map(int, wtf[0].split()) sp = math.ceil(n/s) pp = (sp/p) ans = math.ceil(k*pp) 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 #!/usr/bin/env python import math import sys import itertools import fractions if __name__ == '__main__': wtf = sys.stdin.read() wtf = wtf.strip().split('\n') k,n,s,p = map(int, wtf[0].split()) sp = math.ceil(n/s) pp = (sp/p) ans = math.ceil(k*pp) print(ans) ```
3
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,536,339,838
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
278
512,000
import random y = random.randint(1,6) w = random.randint(1,6) if y < w: y, w = w, y if y % w == 0: print('1/' + str(y // w)) else: print(str(w) + '/' + str(y)) else: if y % w == 0: print('1/' + str(y // w)) else: print(str(w) + '/' + str(y))
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 import random y = random.randint(1,6) w = random.randint(1,6) if y < w: y, w = w, y if y % w == 0: print('1/' + str(y // w)) else: print(str(w) + '/' + str(y)) else: if y % w == 0: print('1/' + str(y // w)) else: print(str(w) + '/' + str(y)) ...
0
744
A
Hongcow Builds A Nation
PROGRAMMING
1,500
[ "dfs and similar", "graphs" ]
null
null
Hongcow is ruler of the world. As ruler of the world, he wants to make it easier for people to travel by road within their own countries. The world can be modeled as an undirected graph with *n* nodes and *m* edges. *k* of the nodes are home to the governments of the *k* countries that make up the world. There is at ...
The first line of input will contain three integers *n*, *m* and *k* (1<=≤<=*n*<=≤<=1<=000, 0<=≤<=*m*<=≤<=100<=000, 1<=≤<=*k*<=≤<=*n*) — the number of vertices and edges in the graph, and the number of vertices that are homes of the government. The next line of input will contain *k* integers *c*1,<=*c*2,<=...,<=*c**...
Output a single integer, the maximum number of edges Hongcow can add to the graph while keeping it stable.
[ "4 1 2\n1 3\n1 2\n", "3 3 1\n2\n1 2\n1 3\n2 3\n" ]
[ "2\n", "0\n" ]
For the first sample test, the graph looks like this: For the second sample test, the graph looks like this:
500
[ { "input": "4 1 2\n1 3\n1 2", "output": "2" }, { "input": "3 3 1\n2\n1 2\n1 3\n2 3", "output": "0" }, { "input": "10 3 2\n1 10\n1 2\n1 3\n4 5", "output": "33" }, { "input": "1 0 1\n1", "output": "0" }, { "input": "1000 0 1\n72", "output": "499500" }, { ...
1,514,935,649
2,147,483,647
Python 3
OK
TESTS
61
514
5,632,000
class Union: def __init__(self, n): self.ancestors = [i for i in range(n+1)] self.size = [0]*(n+1) def get_root(self, node): if self.ancestors[node] == node: return node self.ancestors[node] = self.get_root(self.ancestors[node]) return self.ancestors[node] ...
Title: Hongcow Builds A Nation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hongcow is ruler of the world. As ruler of the world, he wants to make it easier for people to travel by road within their own countries. The world can be modeled as an undirected graph with *n* nodes and *m* e...
```python class Union: def __init__(self, n): self.ancestors = [i for i in range(n+1)] self.size = [0]*(n+1) def get_root(self, node): if self.ancestors[node] == node: return node self.ancestors[node] = self.get_root(self.ancestors[node]) return self.ancesto...
3
906
C
Party
PROGRAMMING
2,400
[ "bitmasks", "brute force", "dp", "graphs" ]
null
null
Arseny likes to organize parties and invite people to it. However, not only friends come to his parties, but friends of his friends, friends of friends of his friends and so on. That's why some of Arseny's guests can be unknown to him. He decided to fix this issue using the following procedure. At each step he selects...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=22; ) — the number of guests at the party (including Arseny) and the number of pairs of people which are friends. Each of the next *m* lines contains two integers *u* and *v* (1<=≤<=*u*,<=*v*<=≤<=*n*; *u*<=≠<=*v*), which means that people with numbers *u*...
In the first line print the minimum number of steps required to make all pairs of guests friends. In the second line print the ids of guests, who are selected at each step. If there are multiple solutions, you can output any of them.
[ "5 6\n1 2\n1 3\n2 3\n2 5\n3 4\n4 5\n", "4 4\n1 2\n1 3\n1 4\n3 4\n" ]
[ "2\n2 3 ", "1\n1 " ]
In the first test case there is no guest who is friend of all other guests, so at least two steps are required to perform the task. After second guest pairwise introduces all his friends, only pairs of guests (4, 1) and (4, 2) are not friends. Guest 3 or 5 can introduce them. In the second test case guest number 1 is ...
1,250
[ { "input": "5 6\n1 2\n1 3\n2 3\n2 5\n3 4\n4 5", "output": "2\n2 3 " }, { "input": "4 4\n1 2\n1 3\n1 4\n3 4", "output": "1\n1 " }, { "input": "1 0", "output": "0" }, { "input": "2 1\n2 1", "output": "0" }, { "input": "3 2\n1 3\n2 3", "output": "1\n3 " }, { ...
1,539,272,369
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
93
0
def minindex(arr): r = 0 min = float('inf') i = 0 for e in arr: if(min > e): min = e r = i i += 1 return r def maxindex(arr): r = 0 max = float('-inf') i = 0 for e in arr: if(max < e): max = e r = i i += 1 return r def lenh(arr,i): if len(addedarr) and (i ...
Title: Party Time Limit: None seconds Memory Limit: None megabytes Problem Description: Arseny likes to organize parties and invite people to it. However, not only friends come to his parties, but friends of his friends, friends of friends of his friends and so on. That's why some of Arseny's guests can be unknown t...
```python def minindex(arr): r = 0 min = float('inf') i = 0 for e in arr: if(min > e): min = e r = i i += 1 return r def maxindex(arr): r = 0 max = float('-inf') i = 0 for e in arr: if(max < e): max = e r = i i += 1 return r def lenh(arr,i): if len(addedar...
0
808
A
Lucky Year
PROGRAMMING
900
[ "implementation" ]
null
null
Apart from having lots of holidays throughout the year, residents of Berland also have whole lucky years. Year is considered lucky if it has no more than 1 non-zero digit in its number. So years 100, 40000, 5 are lucky and 12, 3001 and 12345 are not. You are given current year in Berland. Your task is to find how long...
The first line contains integer number *n* (1<=≤<=*n*<=≤<=109) — current year in Berland.
Output amount of years from the current year to the next lucky one.
[ "4\n", "201\n", "4000\n" ]
[ "1\n", "99\n", "1000\n" ]
In the first example next lucky year is 5. In the second one — 300. In the third — 5000.
0
[ { "input": "4", "output": "1" }, { "input": "201", "output": "99" }, { "input": "4000", "output": "1000" }, { "input": "9", "output": "1" }, { "input": "10", "output": "10" }, { "input": "1", "output": "1" }, { "input": "100000000", "ou...
1,681,842,590
2,147,483,647
PyPy 3-64
OK
TESTS
271
108
0
def is_ok(n): return len([i for i in str(n) if i != '0']) == 1 n = int(input()) if is_ok(n + 1): print(1) else: n_ = int(str(int(str(n)[0]) + 1) + '0' * (len(str(n)) - 1)) print(n_ - n)
Title: Lucky Year Time Limit: None seconds Memory Limit: None megabytes Problem Description: Apart from having lots of holidays throughout the year, residents of Berland also have whole lucky years. Year is considered lucky if it has no more than 1 non-zero digit in its number. So years 100, 40000, 5 are lucky and 1...
```python def is_ok(n): return len([i for i in str(n) if i != '0']) == 1 n = int(input()) if is_ok(n + 1): print(1) else: n_ = int(str(int(str(n)[0]) + 1) + '0' * (len(str(n)) - 1)) print(n_ - n) ```
3
197
B
Limit
PROGRAMMING
1,400
[ "math" ]
null
null
You are given two polynomials: - *P*(*x*)<==<=*a*0·*x**n*<=+<=*a*1·*x**n*<=-<=1<=+<=...<=+<=*a**n*<=-<=1·*x*<=+<=*a**n* and - *Q*(*x*)<==<=*b*0·*x**m*<=+<=*b*1·*x**m*<=-<=1<=+<=...<=+<=*b**m*<=-<=1·*x*<=+<=*b**m*. Calculate limit .
The first line contains two space-separated integers *n* and *m* (0<=≤<=*n*,<=*m*<=≤<=100) — degrees of polynomials *P*(*x*) and *Q*(*x*) correspondingly. The second line contains *n*<=+<=1 space-separated integers — the factors of polynomial *P*(*x*): *a*0, *a*1, ..., *a**n*<=-<=1, *a**n* (<=-<=100<=≤<=*a**i*<=≤<=100...
If the limit equals <=+<=∞, print "Infinity" (without quotes). If the limit equals <=-<=∞, print "-Infinity" (without the quotes). If the value of the limit equals zero, print "0/1" (without the quotes). Otherwise, print an irreducible fraction — the value of limit , in the format "p/q" (without the quotes), where *p...
[ "2 1\n1 1 1\n2 5\n", "1 0\n-1 3\n2\n", "0 1\n1\n1 0\n", "2 2\n2 1 6\n4 5 -7\n", "1 1\n9 0\n-5 2\n" ]
[ "Infinity\n", "-Infinity\n", "0/1\n", "1/2\n", "-9/5\n" ]
Let's consider all samples: 1. <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/c28febca257452afdfcbd6984ba8623911f9bdbc.png" style="max-width: 100.0%;max-height: 100.0%;"/> 1. <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/1e55ecd04e54a45e5e0092ec9a5c1ea03bb...
500
[ { "input": "2 1\n1 1 1\n2 5", "output": "Infinity" }, { "input": "1 0\n-1 3\n2", "output": "-Infinity" }, { "input": "0 1\n1\n1 0", "output": "0/1" }, { "input": "2 2\n2 1 6\n4 5 -7", "output": "1/2" }, { "input": "1 1\n9 0\n-5 2", "output": "-9/5" }, { ...
1,659,365,712
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
92
0
n, m = input().split() n = int(n) m = int(m) a = input().split() a = [int(x) for x in a] b = input().split() b = [int(x) for x in b] def hcf(x, y): x = abs(x) y = abs(y) for t in range(min(x,y)): if x%t == 0 and y%t==0: hcf = t return hcf if n > m: if a[0]/b[...
Title: Limit Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two polynomials: - *P*(*x*)<==<=*a*0·*x**n*<=+<=*a*1·*x**n*<=-<=1<=+<=...<=+<=*a**n*<=-<=1·*x*<=+<=*a**n* and - *Q*(*x*)<==<=*b*0·*x**m*<=+<=*b*1·*x**m*<=-<=1<=+<=...<=+<=*b**m*<=-<=1·*x*<=+<=*b**m*. Calculate l...
```python n, m = input().split() n = int(n) m = int(m) a = input().split() a = [int(x) for x in a] b = input().split() b = [int(x) for x in b] def hcf(x, y): x = abs(x) y = abs(y) for t in range(min(x,y)): if x%t == 0 and y%t==0: hcf = t return hcf if n > m: ...
0
869
C
The Intriguing Obsession
PROGRAMMING
1,800
[ "combinatorics", "dp", "math" ]
null
null
— This is not playing but duty as allies of justice, Nii-chan! — Not allies but justice itself, Onii-chan! With hands joined, go everywhere at a speed faster than our thoughts! This time, the Fire Sisters — Karen and Tsukihi — is heading for somewhere they've never reached — water-surrounded islands! There are three...
The first and only line of input contains three space-separated integers *a*, *b* and *c* (1<=≤<=*a*,<=*b*,<=*c*<=≤<=5<=000) — the number of islands in the red, blue and purple clusters, respectively.
Output one line containing an integer — the number of different ways to build bridges, modulo 998<=244<=353.
[ "1 1 1\n", "1 2 2\n", "1 3 5\n", "6 2 9\n" ]
[ "8\n", "63\n", "3264\n", "813023575\n" ]
In the first example, there are 3 bridges that can possibly be built, and no setup of bridges violates the restrictions. Thus the answer is 2<sup class="upper-index">3</sup> = 8. In the second example, the upper two structures in the figure below are instances of valid ones, while the lower two are invalid due to the ...
1,500
[ { "input": "1 1 1", "output": "8" }, { "input": "1 2 2", "output": "63" }, { "input": "1 3 5", "output": "3264" }, { "input": "6 2 9", "output": "813023575" }, { "input": "7 3 7", "output": "807577560" }, { "input": "135 14 39", "output": "41484950...
1,686,237,059
2,147,483,647
PyPy 3-64
OK
TESTS
30
421
36,761,600
import math import random import time from collections import defaultdict alfabet = {'a': 1, 'b': 2,'c': 3,'d': 4,'e': 5,'f': 6,'g': 7,'h': 8,'i': 9,'j': 10,'k': 11,'l': 12,'m': 13,'n': 14,'o': 15,'p': 16,'q': 17,'r': 18,'s': 19,'t': 20,'u': 21,'v': 22,'w': 23,'x': 24,'y': 25,'z': 26} alfabet_2={'1':"a", '2...
Title: The Intriguing Obsession Time Limit: None seconds Memory Limit: None megabytes Problem Description: — This is not playing but duty as allies of justice, Nii-chan! — Not allies but justice itself, Onii-chan! With hands joined, go everywhere at a speed faster than our thoughts! This time, the Fire Sisters — K...
```python import math import random import time from collections import defaultdict alfabet = {'a': 1, 'b': 2,'c': 3,'d': 4,'e': 5,'f': 6,'g': 7,'h': 8,'i': 9,'j': 10,'k': 11,'l': 12,'m': 13,'n': 14,'o': 15,'p': 16,'q': 17,'r': 18,'s': 19,'t': 20,'u': 21,'v': 22,'w': 23,'x': 24,'y': 25,'z': 26} alfabet_2={'...
3
461
A
Appleman and Toastman
PROGRAMMING
1,200
[ "greedy", "sortings" ]
null
null
Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all the numbers and adds this sum to the score. Then he gives the group to the Appleman. - Each time Appleman...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=3·105). The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=106) — the initial group that is given to Toastman.
Print a single integer — the largest possible score.
[ "3\n3 1 5\n", "1\n10\n" ]
[ "26\n", "10\n" ]
Consider the following situation in the first example. Initially Toastman gets group [3, 1, 5] and adds 9 to the score, then he give the group to Appleman. Appleman splits group [3, 1, 5] into two groups: [3, 5] and [1]. Both of them should be given to Toastman. When Toastman receives group [1], he adds 1 to score and ...
500
[ { "input": "3\n3 1 5", "output": "26" }, { "input": "1\n10", "output": "10" }, { "input": "10\n8 10 2 5 6 2 4 7 2 1", "output": "376" }, { "input": "10\n171308 397870 724672 431255 228496 892002 542924 718337 888642 161821", "output": "40204082" }, { "input": "10\...
1,439,747,696
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
6
2,000
6,041,600
n = int(input()) a = sorted(map(int, input().split())) res = sum(a[:-1]) for i in range(n): res += sum(a[i:]) print(res)
Title: Appleman and Toastman Time Limit: None seconds Memory Limit: None megabytes Problem Description: Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all...
```python n = int(input()) a = sorted(map(int, input().split())) res = sum(a[:-1]) for i in range(n): res += sum(a[i:]) print(res) ```
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,689,683,859
2,147,483,647
PyPy 3-64
OK
TESTS
128
77
1,536,000
n, m = map(int, input().split()) li = [0] * 5 for i in range(1, m + 1): if i % 5 == 0: li[0] += 1 elif i % 5 == 1: li[1] += 1 elif i % 5 == 2: li[2] += 1 elif i % 5 == 3: li[3] += 1 elif i % 5 == 4: li[4] += 1 ans = n // 5 * sum(li) if n % 5 == 0...
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 n, m = map(int, input().split()) li = [0] * 5 for i in range(1, m + 1): if i % 5 == 0: li[0] += 1 elif i % 5 == 1: li[1] += 1 elif i % 5 == 2: li[2] += 1 elif i % 5 == 3: li[3] += 1 elif i % 5 == 4: li[4] += 1 ans = n // 5 * sum(li) if ...
3
1,006
C
Three Parts of the Array
PROGRAMMING
1,200
[ "binary search", "data structures", "two pointers" ]
null
null
You are given an array $d_1, d_2, \dots, d_n$ consisting of $n$ integer numbers. Your task is to split this array into three parts (some of which may be empty) in such a way that each element of the array belongs to exactly one of the three parts, and each of the parts forms a consecutive contiguous subsegment (possib...
The first line of the input contains one integer $n$ ($1 \le n \le 2 \cdot 10^5$) — the number of elements in the array $d$. The second line of the input contains $n$ integers $d_1, d_2, \dots, d_n$ ($1 \le d_i \le 10^9$) — the elements of the array $d$.
Print a single integer — the maximum possible value of $sum_1$, considering that the condition $sum_1 = sum_3$ must be met. Obviously, at least one valid way to split the array exists (use $a=c=0$ and $b=n$).
[ "5\n1 3 1 1 4\n", "5\n1 3 2 1 4\n", "3\n4 1 2\n" ]
[ "5\n", "4\n", "0\n" ]
In the first example there is only one possible splitting which maximizes $sum_1$: $[1, 3, 1], [~], [1, 4]$. In the second example the only way to have $sum_1=4$ is: $[1, 3], [2, 1], [4]$. In the third example there is only one way to split the array: $[~], [4, 1, 2], [~]$.
0
[ { "input": "5\n1 3 1 1 4", "output": "5" }, { "input": "5\n1 3 2 1 4", "output": "4" }, { "input": "3\n4 1 2", "output": "0" }, { "input": "1\n1000000000", "output": "0" }, { "input": "2\n1 1", "output": "1" }, { "input": "5\n1 3 5 4 5", "output": ...
1,594,495,171
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
171
11,366,400
def call(l): x,y=0,len(l)-1 s1=l[0] n=len(l) s2,s2p=l[n-1],0 yo=[0] while(x<y): #print(s1,s2,s2p,x,y) if(s1==s2): yo.append(s1) if(s1==s2p): yo.append(s1) s2p=s2 if(y-x==2): x=x+1 s1=s1+l[x] ...
Title: Three Parts of the Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array $d_1, d_2, \dots, d_n$ consisting of $n$ integer numbers. Your task is to split this array into three parts (some of which may be empty) in such a way that each element of the array belo...
```python def call(l): x,y=0,len(l)-1 s1=l[0] n=len(l) s2,s2p=l[n-1],0 yo=[0] while(x<y): #print(s1,s2,s2p,x,y) if(s1==s2): yo.append(s1) if(s1==s2p): yo.append(s1) s2p=s2 if(y-x==2): x=x+1 s1=...
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,660,996,616
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
0
n, m, a = int(input()) counter = 0 if (m*n) > (a*a) and (m*n) % (a*a) != 0: counter += 1 while s1 > 0: s1 -= s2 counter += 1 print(counter)
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 = int(input()) counter = 0 if (m*n) > (a*a) and (m*n) % (a*a) != 0: counter += 1 while s1 > 0: s1 -= s2 counter += 1 print(counter) ```
-1
110
A
Nearly Lucky Number
PROGRAMMING
800
[ "implementation" ]
A. Nearly Lucky Number
2
256
Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Unfortunately, not all numbers are lucky. Petya calls a number nearly lucky if the number of lucky d...
The only line contains an integer *n* (1<=≤<=*n*<=≤<=1018). Please do not use the %lld specificator to read or write 64-bit numbers in С++. It is preferred to use the cin, cout streams or the %I64d specificator.
Print on the single line "YES" if *n* is a nearly lucky number. Otherwise, print "NO" (without the quotes).
[ "40047\n", "7747774\n", "1000000000000000000\n" ]
[ "NO\n", "YES\n", "NO\n" ]
In the first sample there are 3 lucky digits (first one and last two), so the answer is "NO". In the second sample there are 7 lucky digits, 7 is lucky number, so the answer is "YES". In the third sample there are no lucky digits, so the answer is "NO".
500
[ { "input": "40047", "output": "NO" }, { "input": "7747774", "output": "YES" }, { "input": "1000000000000000000", "output": "NO" }, { "input": "7", "output": "NO" }, { "input": "4", "output": "NO" }, { "input": "474404774", "output": "NO" }, { ...
1,698,693,274
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
62
0
n = input() yesNo = "No" s = 0 for i in n: if i == "4" or i == "7": s += 1 if s == 4 or s == 7: yesNo = "Yes" print(yesNo)
Title: Nearly Lucky Number Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python n = input() yesNo = "No" s = 0 for i in n: if i == "4" or i == "7": s += 1 if s == 4 or s == 7: yesNo = "Yes" print(yesNo) ```
0
34
A
Reconnaissance 2
PROGRAMMING
800
[ "implementation" ]
A. Reconnaissance 2
2
256
*n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So each of them will be less noticeable with the other. Output any pair of soldiers that can form a ...
The first line contains integer *n* (2<=≤<=*n*<=≤<=100) — amount of soldiers. Then follow the heights of the soldiers in their order in the circle — *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1000). The soldier heights are given in clockwise or counterclockwise direction.
Output two integers — indexes of neighbouring soldiers, who should form a reconnaissance unit. If there are many optimum solutions, output any of them. Remember, that the soldiers stand in a circle.
[ "5\n10 12 13 15 10\n", "4\n10 20 30 40\n" ]
[ "5 1\n", "1 2\n" ]
none
500
[ { "input": "5\n10 12 13 15 10", "output": "5 1" }, { "input": "4\n10 20 30 40", "output": "1 2" }, { "input": "6\n744 359 230 586 944 442", "output": "2 3" }, { "input": "5\n826 747 849 687 437", "output": "1 2" }, { "input": "5\n999 999 993 969 999", "output"...
1,641,366,566
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
2
310
11,161,600
n1 = int(input()) list1 = [] x = input().split() for i in x: list1.append(int(i)) min1 = list1[1] - list1[0] for i in range(len(list1)-1): y = abs(list1[i+1]- list1[i]) if y <= min1: temp = [] min1 = y temp.append(i) temp.append(i+1) if abs(list1[-1]- l...
Title: Reconnaissance 2 Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: *n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So...
```python n1 = int(input()) list1 = [] x = input().split() for i in x: list1.append(int(i)) min1 = list1[1] - list1[0] for i in range(len(list1)-1): y = abs(list1[i+1]- list1[i]) if y <= min1: temp = [] min1 = y temp.append(i) temp.append(i+1) if abs(li...
-1
126
B
Password
PROGRAMMING
1,700
[ "binary search", "dp", "hashing", "string suffix structures", "strings" ]
null
null
Asterix, Obelix and their temporary buddies Suffix and Prefix has finally found the Harmony temple. However, its doors were firmly locked and even Obelix had no luck opening them. A little later they found a string *s*, carved on a rock below the temple's gates. Asterix supposed that that's the password that opens the...
You are given the string *s* whose length can vary from 1 to 106 (inclusive), consisting of small Latin letters.
Print the string *t*. If a suitable *t* string does not exist, then print "Just a legend" without the quotes.
[ "fixprefixsuffix\n", "abcdabc\n" ]
[ "fix", "Just a legend" ]
none
1,000
[ { "input": "fixprefixsuffix", "output": "fix" }, { "input": "abcdabc", "output": "Just a legend" }, { "input": "qwertyqwertyqwerty", "output": "qwerty" }, { "input": "papapapap", "output": "papap" }, { "input": "aaaaaaaaaa", "output": "aaaaaaaa" }, { "...
1,656,330,923
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
154
31,744,000
from requests import delete str = input() l = len(str) toBeChkd = list(range(1,l-1)) i = 0;lps = 0;check = True while(check == True): for j in range(len(toBeChkd)): if(toBeChkd[j] == l): toBeChkd[j] = -1 lps = i elif(toBeChkd[j] == -1): continu...
Title: Password Time Limit: None seconds Memory Limit: None megabytes Problem Description: Asterix, Obelix and their temporary buddies Suffix and Prefix has finally found the Harmony temple. However, its doors were firmly locked and even Obelix had no luck opening them. A little later they found a string *s*, carve...
```python from requests import delete str = input() l = len(str) toBeChkd = list(range(1,l-1)) i = 0;lps = 0;check = True while(check == True): for j in range(len(toBeChkd)): if(toBeChkd[j] == l): toBeChkd[j] = -1 lps = i elif(toBeChkd[j] == -1): ...
-1
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,636,995,977
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
92
0
yakko, wakko=input().split() if yakko<wakko: if wakko=="1": print("6/6") elif wakko=="2": print("5/6") elif wakko=="3": print("2/3") elif wakko=="4": print("1/2") elif wakko=="5": print("1/3") elif wakko=="6": print("1/6") else: ...
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 yakko, wakko=input().split() if yakko<wakko: if wakko=="1": print("6/6") elif wakko=="2": print("5/6") elif wakko=="3": print("2/3") elif wakko=="4": print("1/2") elif wakko=="5": print("1/3") elif wakko=="6": print("1/6") e...
0
284
A
Cows and Primitive Roots
PROGRAMMING
1,400
[ "implementation", "math", "number theory" ]
null
null
The cows have just learned what a primitive root is! Given a prime *p*, a primitive root is an integer *x* (1<=≤<=*x*<=&lt;<=*p*) such that none of integers *x*<=-<=1,<=*x*2<=-<=1,<=...,<=*x**p*<=-<=2<=-<=1 are divisible by *p*, but *x**p*<=-<=1<=-<=1 is. Unfortunately, computing primitive roots can be time consumin...
The input contains a single line containing an integer *p* (2<=≤<=*p*<=&lt;<=2000). It is guaranteed that *p* is a prime.
Output on a single line the number of primitive roots .
[ "3\n", "5\n" ]
[ "1\n", "2\n" ]
The only primitive root <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/3722298ba062e95b18705d1253eb4e5d31e3b2d1.png" style="max-width: 100.0%;max-height: 100.0%;"/> is 2. The primitive roots <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/1d85c6a17ef1c42b53cf9...
500
[ { "input": "3", "output": "1" }, { "input": "5", "output": "2" }, { "input": "7", "output": "2" }, { "input": "11", "output": "4" }, { "input": "17", "output": "8" }, { "input": "19", "output": "6" }, { "input": "1583", "output": "672" ...
1,467,795,838
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
92
0
p = int(input()) cnt = 0 for i in range(1, p): pr = True val = i / i for j in range(1, p - 1): if (val * i - 1) % p is 0: val *= i pr = False break if not pr: continue if (val * i - 1) % p is 0: cnt += 1 print(cnt)
Title: Cows and Primitive Roots Time Limit: None seconds Memory Limit: None megabytes Problem Description: The cows have just learned what a primitive root is! Given a prime *p*, a primitive root is an integer *x* (1<=≤<=*x*<=&lt;<=*p*) such that none of integers *x*<=-<=1,<=*x*2<=-<=1,<=...,<=*x**p*<=-<=2<=-<=1 ar...
```python p = int(input()) cnt = 0 for i in range(1, p): pr = True val = i / i for j in range(1, p - 1): if (val * i - 1) % p is 0: val *= i pr = False break if not pr: continue if (val * i - 1) % p is 0: cnt += 1 print(cnt) ```
0
127
A
Wasted Time
PROGRAMMING
900
[ "geometry" ]
null
null
Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count the time he has wasted signing papers. Mr. Scrooge's signature can be represented as a polyline ...
The first line contains two integers *n* and *k* (2<=≤<=*n*<=≤<=100, 1<=≤<=*k*<=≤<=1000). Each of the following *n* lines contains the coordinates of the polyline's endpoints. The *i*-th one contains coordinates of the point *A**i* — integers *x**i* and *y**i*, separated by a space. All points *A**i* are different. Th...
Print one real number — the total time Scrooges wastes on signing the papers in seconds. The absolute or relative error should not exceed 10<=-<=6.
[ "2 1\n0 0\n10 0\n", "5 10\n3 1\n-5 6\n-2 -1\n3 2\n10 0\n", "6 10\n5 0\n4 0\n6 0\n3 0\n7 0\n2 0\n" ]
[ "0.200000000", "6.032163204", "3.000000000" ]
none
500
[ { "input": "2 1\n0 0\n10 0", "output": "0.200000000" }, { "input": "5 10\n3 1\n-5 6\n-2 -1\n3 2\n10 0", "output": "6.032163204" }, { "input": "6 10\n5 0\n4 0\n6 0\n3 0\n7 0\n2 0", "output": "3.000000000" }, { "input": "10 95\n-20 -5\n2 -8\n14 13\n10 3\n17 11\n13 -12\n-6 11\n1...
1,690,628,374
2,147,483,647
PyPy 3-64
OK
TESTS
42
124
0
from math import sqrt n, k = [int(i) for i in input().split()] dur = 0 x, y = [int(i) for i in input().split()] for i in range(n - 1): x1, y1 = [int(i) for i in input().split()] dur += (sqrt((x1 - x) ** 2 + (y1 - y) ** 2)) / 50 x, y = x1, y1 print(dur * k)
Title: Wasted Time Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count ...
```python from math import sqrt n, k = [int(i) for i in input().split()] dur = 0 x, y = [int(i) for i in input().split()] for i in range(n - 1): x1, y1 = [int(i) for i in input().split()] dur += (sqrt((x1 - x) ** 2 + (y1 - y) ** 2)) / 50 x, y = x1, y1 print(dur * k) ```
3
817
A
Treasure Hunt
PROGRAMMING
1,200
[ "implementation", "math", "number theory" ]
null
null
Captain Bill the Hummingbird and his crew recieved an interesting challenge offer. Some stranger gave them a map, potion of teleportation and said that only this potion might help them to reach the treasure. Bottle with potion has two values *x* and *y* written on it. These values define four moves which can be perfo...
The first line contains four integer numbers *x*1,<=*y*1,<=*x*2,<=*y*2 (<=-<=105<=≤<=*x*1,<=*y*1,<=*x*2,<=*y*2<=≤<=105) — positions of Captain Bill the Hummingbird and treasure respectively. The second line contains two integer numbers *x*,<=*y* (1<=≤<=*x*,<=*y*<=≤<=105) — values on the potion bottle.
Print "YES" if it is possible for Captain to reach the treasure using the potion, otherwise print "NO" (without quotes).
[ "0 0 0 6\n2 3\n", "1 1 3 6\n1 5\n" ]
[ "YES\n", "NO\n" ]
In the first example there exists such sequence of moves: 1. <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/7c939890fb4ed35688177327dac981bfa9216c00.png" style="max-width: 100.0%;max-height: 100.0%;"/> — the first type of move 1. <img align="middle" class="tex-formula" src="https://espr...
0
[ { "input": "0 0 0 6\n2 3", "output": "YES" }, { "input": "1 1 3 6\n1 5", "output": "NO" }, { "input": "5 4 6 -10\n1 1", "output": "NO" }, { "input": "6 -3 -7 -7\n1 2", "output": "NO" }, { "input": "2 -5 -8 8\n2 1", "output": "YES" }, { "input": "70 -81...
1,670,598,912
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
62
0
x1, y1, x2, y2 = map(int, input().split()) x, y = map(int, input().split()) if abs(x1 - x2) % 2 * x != 0 or abs(y2 - y1) % 2 * x != 0: print("NO") else: print("YES")
Title: Treasure Hunt Time Limit: None seconds Memory Limit: None megabytes Problem Description: Captain Bill the Hummingbird and his crew recieved an interesting challenge offer. Some stranger gave them a map, potion of teleportation and said that only this potion might help them to reach the treasure. Bottle with...
```python x1, y1, x2, y2 = map(int, input().split()) x, y = map(int, input().split()) if abs(x1 - x2) % 2 * x != 0 or abs(y2 - y1) % 2 * x != 0: print("NO") else: print("YES") ```
0
27
A
Next Test
PROGRAMMING
1,200
[ "implementation", "sortings" ]
A. Next Test
2
256
«Polygon» is a system which allows to create programming tasks in a simple and professional way. When you add a test to the problem, the corresponding form asks you for the test index. As in most cases it is clear which index the next test will have, the system suggests the default value of the index. It is calculated ...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=3000) — the amount of previously added tests. The second line contains *n* distinct integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=3000) — indexes of these tests.
Output the required default value for the next test index.
[ "3\n1 7 2\n" ]
[ "3\n" ]
none
500
[ { "input": "1\n1", "output": "2" }, { "input": "2\n2 1", "output": "3" }, { "input": "3\n3 4 1", "output": "2" }, { "input": "4\n6 4 3 5", "output": "1" }, { "input": "5\n3 2 1 7 4", "output": "5" }, { "input": "6\n4 1 2 5 3 7", "output": "6" }, ...
1,613,457,051
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
216
2,150,400
n = int(input()) arr = list(map(int,input().split())) arr =sorted(arr) for i in range(1,3001): if i!=arr[i-1]: print(i) break
Title: Next Test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: «Polygon» is a system which allows to create programming tasks in a simple and professional way. When you add a test to the problem, the corresponding form asks you for the test index. As in most cases it is clear which index the...
```python n = int(input()) arr = list(map(int,input().split())) arr =sorted(arr) for i in range(1,3001): if i!=arr[i-1]: print(i) break ```
-1
637
B
Chat Order
PROGRAMMING
1,200
[ "*special", "binary search", "constructive algorithms", "data structures", "sortings" ]
null
null
Polycarp is a big lover of killing time in social networks. A page with a chatlist in his favourite network is made so that when a message is sent to some friend, his friend's chat rises to the very top of the page. The relative order of the other chats doesn't change. If there was no chat with this friend before, then...
The first line contains integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of Polycarpus' messages. Next *n* lines enlist the message recipients in the order in which the messages were sent. The name of each participant is a non-empty sequence of lowercase English letters of length at most 10.
Print all the recipients to who Polycarp talked to in the order of chats with them, from top to bottom.
[ "4\nalex\nivan\nroman\nivan\n", "8\nalina\nmaria\nekaterina\ndarya\ndarya\nekaterina\nmaria\nalina\n" ]
[ "ivan\nroman\nalex\n", "alina\nmaria\nekaterina\ndarya\n" ]
In the first test case Polycarpus first writes to friend by name "alex", and the list looks as follows: 1. alex Then Polycarpus writes to friend by name "ivan" and the list looks as follows: 1. ivan 1. alex Polycarpus writes the third message to friend by name "roman" and the list looks as follows: 1. roman 1...
1,000
[ { "input": "4\nalex\nivan\nroman\nivan", "output": "ivan\nroman\nalex" }, { "input": "8\nalina\nmaria\nekaterina\ndarya\ndarya\nekaterina\nmaria\nalina", "output": "alina\nmaria\nekaterina\ndarya" }, { "input": "1\nwdi", "output": "wdi" }, { "input": "2\nypg\nypg", "outpu...
1,457,889,275
18,875
Python 3
TIME_LIMIT_EXCEEDED
PRETESTS
12
3,000
1,228,800
n = int(input()) names = [] for i in range(n): name = input() if name in names: names.remove(name) names = [name] + names for name in names: print(name)
Title: Chat Order Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp is a big lover of killing time in social networks. A page with a chatlist in his favourite network is made so that when a message is sent to some friend, his friend's chat rises to the very top of the page. The rela...
```python n = int(input()) names = [] for i in range(n): name = input() if name in names: names.remove(name) names = [name] + names for name in names: print(name) ```
0
92
B
Binary Number
PROGRAMMING
1,300
[ "greedy" ]
B. Binary Number
1
256
Little walrus Fangy loves math very much. That's why when he is bored he plays with a number performing some operations. Fangy takes some positive integer *x* and wants to get a number one from it. While *x* is not equal to 1, Fangy repeats the following action: if *x* is odd, then he adds 1 to it, otherwise he divide...
The first line contains a positive integer *x* in a binary system. It is guaranteed that the first digit of *x* is different from a zero and the number of its digits does not exceed 106.
Print the required number of actions.
[ "1\n", "1001001\n", "101110\n" ]
[ "0\n", "12\n", "8\n" ]
Let's consider the third sample. Number 101110 is even, which means that we should divide it by 2. After the dividing Fangy gets an odd number 10111 and adds one to it. Number 11000 can be divided by 2 three times in a row and get number 11. All that's left is to increase the number by one (we get 100), and then divide...
1,000
[ { "input": "1", "output": "0" }, { "input": "1001001", "output": "12" }, { "input": "101110", "output": "8" }, { "input": "11", "output": "3" }, { "input": "11110001101", "output": "16" }, { "input": "101010100100111100011111001111100001010101111110101...
1,697,351,929
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
3
46
0
t=input() if t=="1": print(0) else: cnt=t.count('1') cnt1=t.count('0') print(max(cnt*cnt1,cnt1+cnt))
Title: Binary Number Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Little walrus Fangy loves math very much. That's why when he is bored he plays with a number performing some operations. Fangy takes some positive integer *x* and wants to get a number one from it. While *x* is not equal to ...
```python t=input() if t=="1": print(0) else: cnt=t.count('1') cnt1=t.count('0') print(max(cnt*cnt1,cnt1+cnt)) ```
0
242
B
Big Segment
PROGRAMMING
1,100
[ "implementation", "sortings" ]
null
null
A coordinate line has *n* segments, the *i*-th segment starts at the position *l**i* and ends at the position *r**i*. We will denote such a segment as [*l**i*,<=*r**i*]. You have suggested that one of the defined segments covers all others. In other words, there is such segment in the given set, which contains all oth...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of segments. Next *n* lines contain the descriptions of the segments. The *i*-th line contains two space-separated integers *l**i*,<=*r**i* (1<=≤<=*l**i*<=≤<=*r**i*<=≤<=109) — the borders of the *i*-th segment. It is guaranteed that no two segments c...
Print a single integer — the number of the segment that covers all other segments in the set. If there's no solution, print -1. The segments are numbered starting from 1 in the order in which they appear in the input.
[ "3\n1 1\n2 2\n3 3\n", "6\n1 5\n2 3\n1 10\n7 10\n7 7\n10 10\n" ]
[ "-1\n", "3\n" ]
none
1,000
[ { "input": "3\n1 1\n2 2\n3 3", "output": "-1" }, { "input": "6\n1 5\n2 3\n1 10\n7 10\n7 7\n10 10", "output": "3" }, { "input": "4\n1 5\n2 2\n2 4\n2 5", "output": "1" }, { "input": "5\n3 3\n1 3\n2 2\n2 3\n1 2", "output": "2" }, { "input": "7\n7 7\n8 8\n3 7\n1 6\n1 ...
1,634,142,386
2,147,483,647
PyPy 3
OK
TESTS
45
1,838
20,172,800
n = int(input()) data = [] while len(data) != n: data.append(list(map(int, input().split(' ')))) res = -1 minx = data[0][0] maxx = 0 for i in data: minx = min(minx, i[0]) maxx = max(maxx, i[1]) for i in range(0, len(data)): if data[i][0] <= minx and data[i][1] >= maxx: res ...
Title: Big Segment Time Limit: None seconds Memory Limit: None megabytes Problem Description: A coordinate line has *n* segments, the *i*-th segment starts at the position *l**i* and ends at the position *r**i*. We will denote such a segment as [*l**i*,<=*r**i*]. You have suggested that one of the defined segments ...
```python n = int(input()) data = [] while len(data) != n: data.append(list(map(int, input().split(' ')))) res = -1 minx = data[0][0] maxx = 0 for i in data: minx = min(minx, i[0]) maxx = max(maxx, i[1]) for i in range(0, len(data)): if data[i][0] <= minx and data[i][1] >= maxx: ...
3
581
A
Vasya the Hipster
PROGRAMMING
800
[ "implementation", "math" ]
null
null
One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red one on the left foot, a blue one on the right foot. Every day Vasya puts on new socks in the morning ...
The single line of the input contains two positive integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=100) — the number of red and blue socks that Vasya's got.
Print two space-separated integers — the maximum number of days when Vasya can wear different socks and the number of days when he can wear the same socks until he either runs out of socks or cannot make a single pair from the socks he's got. Keep in mind that at the end of the day Vasya throws away the socks that he'...
[ "3 1\n", "2 3\n", "7 3\n" ]
[ "1 1\n", "2 0\n", "3 2\n" ]
In the first sample Vasya can first put on one pair of different socks, after that he has two red socks left to wear on the second day.
500
[ { "input": "3 1", "output": "1 1" }, { "input": "2 3", "output": "2 0" }, { "input": "7 3", "output": "3 2" }, { "input": "100 100", "output": "100 0" }, { "input": "4 10", "output": "4 3" }, { "input": "6 10", "output": "6 2" }, { "input":...
1,673,240,018
2,147,483,647
Python 3
OK
TESTS
30
46
0
ips = [int(i) for i in input().split()] a, b = ips[0], ips[1] diffSocks = min(a, b) sameSocks = (max(a, b) - min(a, b)) // 2 print(diffSocks, sameSocks)
Title: Vasya the Hipster Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red...
```python ips = [int(i) for i in input().split()] a, b = ips[0], ips[1] diffSocks = min(a, b) sameSocks = (max(a, b) - min(a, b)) // 2 print(diffSocks, sameSocks) ```
3
558
A
Lala Land and Apple Trees
PROGRAMMING
1,100
[ "brute force", "implementation", "sortings" ]
null
null
Amr lives in Lala Land. Lala Land is a very beautiful country that is located on a coordinate line. Lala Land is famous with its apple trees growing everywhere. Lala Land has exactly *n* apple trees. Tree number *i* is located in a position *x**i* and has *a**i* apples growing on it. Amr wants to collect apples from t...
The first line contains one number *n* (1<=≤<=*n*<=≤<=100), the number of apple trees in Lala Land. The following *n* lines contains two integers each *x**i*, *a**i* (<=-<=105<=≤<=*x**i*<=≤<=105, *x**i*<=≠<=0, 1<=≤<=*a**i*<=≤<=105), representing the position of the *i*-th tree and number of apples on it. It's guarant...
Output the maximum number of apples Amr can collect.
[ "2\n-1 5\n1 5\n", "3\n-2 2\n1 4\n-1 3\n", "3\n1 9\n3 5\n7 10\n" ]
[ "10", "9", "9" ]
In the first sample test it doesn't matter if Amr chose at first to go left or right. In both cases he'll get all the apples. In the second sample test the optimal solution is to go left to *x* =  - 1, collect apples from there, then the direction will be reversed, Amr has to go to *x* = 1, collect apples from there, ...
500
[ { "input": "2\n-1 5\n1 5", "output": "10" }, { "input": "3\n-2 2\n1 4\n-1 3", "output": "9" }, { "input": "3\n1 9\n3 5\n7 10", "output": "9" }, { "input": "1\n1 1", "output": "1" }, { "input": "4\n10000 100000\n-1000 100000\n-2 100000\n-1 100000", "output": "3...
1,612,639,085
2,147,483,647
Python 3
OK
TESTS
46
62
307,200
n=int(input()) trees=[] left=0 for _ in range(n): trees.append([int(x) for x in input().split()]) left+=trees[-1][0]<0 right=n-left trees.sort() ans=0 if right>=left: for _ in range(min(left,right)*2+(left!=right)): ans+=trees[_][1] else: for _ in range(len(trees)-1,len(trees)-min(left,right)*2-...
Title: Lala Land and Apple Trees Time Limit: None seconds Memory Limit: None megabytes Problem Description: Amr lives in Lala Land. Lala Land is a very beautiful country that is located on a coordinate line. Lala Land is famous with its apple trees growing everywhere. Lala Land has exactly *n* apple trees. Tree num...
```python n=int(input()) trees=[] left=0 for _ in range(n): trees.append([int(x) for x in input().split()]) left+=trees[-1][0]<0 right=n-left trees.sort() ans=0 if right>=left: for _ in range(min(left,right)*2+(left!=right)): ans+=trees[_][1] else: for _ in range(len(trees)-1,len(trees)-min(left...
3
559
B
Equivalent Strings
PROGRAMMING
1,700
[ "divide and conquer", "hashing", "sortings", "strings" ]
null
null
Today on a lecture about strings Gerald learned a new definition of string equivalency. Two strings *a* and *b* of equal length are called equivalent in one of the two cases: 1. They are equal. 1. If we split string *a* into two halves of the same size *a*1 and *a*2, and string *b* into two halves of the same size ...
The first two lines of the input contain two strings given by the teacher. Each of them has the length from 1 to 200<=000 and consists of lowercase English letters. The strings have the same length.
Print "YES" (without the quotes), if these two strings are equivalent, and "NO" (without the quotes) otherwise.
[ "aaba\nabaa\n", "aabb\nabab\n" ]
[ "YES\n", "NO\n" ]
In the first sample you should split the first string into strings "aa" and "ba", the second one — into strings "ab" and "aa". "aa" is equivalent to "aa"; "ab" is equivalent to "ba" as "ab" = "a" + "b", "ba" = "b" + "a". In the second sample the first string can be splitted into strings "aa" and "bb", that are equival...
1,000
[ { "input": "aaba\nabaa", "output": "YES" }, { "input": "aabb\nabab", "output": "NO" }, { "input": "a\na", "output": "YES" }, { "input": "a\nb", "output": "NO" }, { "input": "ab\nab", "output": "YES" }, { "input": "ab\nba", "output": "YES" }, { ...
1,692,466,679
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include <bits/stdc++.h> using namespace std; bool solve(string s,string z){ if(s.size() == 1) { return s==z; } if(s == z){ return true; } else{ string s1 = s.substr(0, s.size()/2); string s2 = s.substr(s.size()/2,s.size()/2); string z1 = z.substr(0,s.size()/2);...
Title: Equivalent Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today on a lecture about strings Gerald learned a new definition of string equivalency. Two strings *a* and *b* of equal length are called equivalent in one of the two cases: 1. They are equal. 1. If we split str...
```python #include <bits/stdc++.h> using namespace std; bool solve(string s,string z){ if(s.size() == 1) { return s==z; } if(s == z){ return true; } else{ string s1 = s.substr(0, s.size()/2); string s2 = s.substr(s.size()/2,s.size()/2); string z1 = z.substr(0,s....
-1
151
A
Soft Drinking
PROGRAMMING
800
[ "implementation", "math" ]
null
null
This winter is so cold in Nvodsk! A group of *n* friends decided to buy *k* bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has *l* milliliters of the drink. Also they bought *c* limes and cut each of them into *d* slices. After that they found *p* grams of salt. To make a toast, each frie...
The first and only line contains positive integers *n*, *k*, *l*, *c*, *d*, *p*, *nl*, *np*, not exceeding 1000 and no less than 1. The numbers are separated by exactly one space.
Print a single integer — the number of toasts each friend can make.
[ "3 4 5 10 8 100 3 1\n", "5 100 10 1 19 90 4 3\n", "10 1000 1000 25 23 1 50 1\n" ]
[ "2\n", "3\n", "0\n" ]
A comment to the first sample: Overall the friends have 4 * 5 = 20 milliliters of the drink, it is enough to make 20 / 3 = 6 toasts. The limes are enough for 10 * 8 = 80 toasts and the salt is enough for 100 / 1 = 100 toasts. However, there are 3 friends in the group, so the answer is *min*(6, 80, 100) / 3 = 2.
500
[ { "input": "3 4 5 10 8 100 3 1", "output": "2" }, { "input": "5 100 10 1 19 90 4 3", "output": "3" }, { "input": "10 1000 1000 25 23 1 50 1", "output": "0" }, { "input": "1 7 4 5 5 8 3 2", "output": "4" }, { "input": "2 3 3 5 5 10 1 3", "output": "1" }, { ...
1,699,268,262
2,147,483,647
Python 3
OK
TESTS
27
92
0
n, k, l, c, d, p, nl, nd = map(int, input().split()) toasts_with_drink = (k * l) // (n * nl) toasts_with_lime = (c * d) // n toasts_with_salt = p // (n * nd) max_toasts = min(toasts_with_drink, toasts_with_lime, toasts_with_salt) print(max_toasts)
Title: Soft Drinking Time Limit: None seconds Memory Limit: None megabytes Problem Description: This winter is so cold in Nvodsk! A group of *n* friends decided to buy *k* bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has *l* milliliters of the drink. Also they bought *c* limes and cut...
```python n, k, l, c, d, p, nl, nd = map(int, input().split()) toasts_with_drink = (k * l) // (n * nl) toasts_with_lime = (c * d) // n toasts_with_salt = p // (n * nd) max_toasts = min(toasts_with_drink, toasts_with_lime, toasts_with_salt) print(max_toasts) ```
3
294
A
Shaass and Oskols
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Shaass has decided to hunt some birds. There are *n* horizontal electricity wires aligned parallel to each other. Wires are numbered 1 to *n* from top to bottom. On each wire there are some oskols sitting next to each other. Oskol is the name of a delicious kind of birds in Shaass's territory. Supposed there are *a**i*...
The first line of the input contains an integer *n*, (1<=≤<=*n*<=≤<=100). The next line contains a list of space-separated integers *a*1,<=*a*2,<=...,<=*a**n*, (0<=≤<=*a**i*<=≤<=100). The third line contains an integer *m*, (0<=≤<=*m*<=≤<=100). Each of the next *m* lines contains two integers *x**i* and *y**i*. The i...
On the *i*-th line of the output print the number of birds on the *i*-th wire.
[ "5\n10 10 10 10 10\n5\n2 5\n3 13\n2 12\n1 13\n4 6\n", "3\n2 4 1\n1\n2 2\n" ]
[ "0\n12\n5\n0\n16\n", "3\n0\n3\n" ]
none
500
[ { "input": "5\n10 10 10 10 10\n5\n2 5\n3 13\n2 12\n1 13\n4 6", "output": "0\n12\n5\n0\n16" }, { "input": "3\n2 4 1\n1\n2 2", "output": "3\n0\n3" }, { "input": "5\n58 51 45 27 48\n5\n4 9\n5 15\n4 5\n5 8\n1 43", "output": "0\n66\n57\n7\n0" }, { "input": "10\n48 53 10 28 91 56 8...
1,696,599,881
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
26
92
0
n = int(input()) arr = [int(i) for i in input().split()] q = int(input()) for i in range(q): a, b = input().split() a = int(a) b = int(b) a -= 1 if a == 0: arr[a+1] += arr[a] - b arr[a] = 0 elif a == n - 1: arr[a-1] += b - 1 arr[a] = 0 else: arr[a + 1]...
Title: Shaass and Oskols Time Limit: None seconds Memory Limit: None megabytes Problem Description: Shaass has decided to hunt some birds. There are *n* horizontal electricity wires aligned parallel to each other. Wires are numbered 1 to *n* from top to bottom. On each wire there are some oskols sitting next to each...
```python n = int(input()) arr = [int(i) for i in input().split()] q = int(input()) for i in range(q): a, b = input().split() a = int(a) b = int(b) a -= 1 if a == 0: arr[a+1] += arr[a] - b arr[a] = 0 elif a == n - 1: arr[a-1] += b - 1 arr[a] = 0 else: ...
-1
339
A
Helpful Maths
PROGRAMMING
800
[ "greedy", "implementation", "sortings", "strings" ]
null
null
Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation. The teacher has written down the sum of multiple numbers. Pupils should calculate the sum. To make the calculation easier, the sum only contains numbers 1, 2 and 3. Still, that isn't enough for Xe...
The first line contains a non-empty string *s* — the sum Xenia needs to count. String *s* contains no spaces. It only contains digits and characters "+". Besides, string *s* is a correct sum of numbers 1, 2 and 3. String *s* is at most 100 characters long.
Print the new sum that Xenia can count.
[ "3+2+1\n", "1+1+3+1+3\n", "2\n" ]
[ "1+2+3\n", "1+1+1+3+3\n", "2\n" ]
none
500
[ { "input": "3+2+1", "output": "1+2+3" }, { "input": "1+1+3+1+3", "output": "1+1+1+3+3" }, { "input": "2", "output": "2" }, { "input": "2+2+1+1+3", "output": "1+1+2+2+3" }, { "input": "2+1+2+2+2+3+1+3+1+2", "output": "1+1+1+2+2+2+2+2+3+3" }, { "input": ...
1,696,045,573
2,147,483,647
Python 3
OK
TESTS
21
62
0
# -*- coding: utf-8 -*- """ Created on Sat Sep 30 11:31:03 2023 @author: 20311 """ order=list(map(str,input().split('+'))) order.sort() print('+'.join(order))
Title: Helpful Maths Time Limit: None seconds Memory Limit: None megabytes Problem Description: Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation. The teacher has written down the sum of multiple numbers. Pupils should calculate the sum. To mak...
```python # -*- coding: utf-8 -*- """ Created on Sat Sep 30 11:31:03 2023 @author: 20311 """ order=list(map(str,input().split('+'))) order.sort() print('+'.join(order)) ```
3
1,004
B
Sonya and Exhibition
PROGRAMMING
1,300
[ "constructive algorithms", "greedy", "implementation", "math" ]
null
null
Sonya decided to organize an exhibition of flowers. Since the girl likes only roses and lilies, she decided that only these two kinds of flowers should be in this exhibition. There are $n$ flowers in a row in the exhibition. Sonya can put either a rose or a lily in the $i$-th position. Thus each of $n$ positions shoul...
The first line contains two integers $n$ and $m$ ($1\leq n, m\leq 10^3$) — the number of flowers and visitors respectively. Each of the next $m$ lines contains two integers $l_i$ and $r_i$ ($1\leq l_i\leq r_i\leq n$), meaning that $i$-th visitor will visit all flowers from $l_i$ to $r_i$ inclusive.
Print the string of $n$ characters. The $i$-th symbol should be «0» if you want to put a rose in the $i$-th position, otherwise «1» if you want to put a lily. If there are multiple answers, print any.
[ "5 3\n1 3\n2 4\n2 5\n", "6 3\n5 6\n1 4\n4 6\n" ]
[ "01100", "110010" ]
In the first example, Sonya can put roses in the first, fourth, and fifth positions, and lilies in the second and third positions; - in the segment $[1\ldots3]$, there are one rose and two lilies, so the beauty is equal to $1\cdot 2=2$; - in the segment $[2\ldots4]$, there are one rose and two lilies, so the beauty ...
1,000
[ { "input": "5 3\n1 3\n2 4\n2 5", "output": "01010" }, { "input": "6 3\n5 6\n1 4\n4 6", "output": "010101" }, { "input": "10 4\n3 3\n1 6\n9 9\n10 10", "output": "0101010101" }, { "input": "1 1\n1 1", "output": "0" }, { "input": "1000 10\n3 998\n2 1000\n1 999\n2 100...
1,530,809,534
1,034
Python 3
OK
TESTS
27
124
0
n, d = map(int, input().split()) print(''.join(str(i % 2) for i in range(n)))
Title: Sonya and Exhibition Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sonya decided to organize an exhibition of flowers. Since the girl likes only roses and lilies, she decided that only these two kinds of flowers should be in this exhibition. There are $n$ flowers in a row in the ...
```python n, d = map(int, input().split()) print(''.join(str(i % 2) for i in range(n))) ```
3
954
A
Diagonal Walking
PROGRAMMING
800
[ "implementation" ]
null
null
Mikhail walks on a 2D plane. He can go either up or right. You are given a sequence of Mikhail's moves. He thinks that this sequence is too long and he wants to make it as short as possible. In the given sequence moving up is described by character U and moving right is described by character R. Mikhail can replace an...
The first line of the input contains one integer *n* (1<=≤<=*n*<=≤<=100) — the length of the sequence. The second line contains the sequence consisting of *n* characters U and R.
Print the minimum possible length of the sequence of moves after all replacements are done.
[ "5\nRUURU\n", "17\nUUURRRRRUUURURUUU\n" ]
[ "3\n", "13\n" ]
In the first test the shortened sequence of moves may be DUD (its length is 3). In the second test the shortened sequence of moves can be UUDRRRDUDDUUU (its length is 13).
0
[ { "input": "5\nRUURU", "output": "3" }, { "input": "17\nUUURRRRRUUURURUUU", "output": "13" }, { "input": "100\nUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU", "output": "100" }, { "input": "100\nRRURRUUUURURRRURRRRURRRRRR...
1,637,685,530
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
15
0
n=int(input()) a=input() k=0 while (i<n-1): if a[i]!=a[i+1]: k=k+1 i=i+2 else : i=i+1 print (n-k)
Title: Diagonal Walking Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mikhail walks on a 2D plane. He can go either up or right. You are given a sequence of Mikhail's moves. He thinks that this sequence is too long and he wants to make it as short as possible. In the given sequence movi...
```python n=int(input()) a=input() k=0 while (i<n-1): if a[i]!=a[i+1]: k=k+1 i=i+2 else : i=i+1 print (n-k) ```
-1
540
A
Combination Lock
PROGRAMMING
800
[ "implementation" ]
null
null
Scrooge McDuck keeps his most treasured savings in a home safe with a combination lock. Each time he wants to put there the treasures that he's earned fair and square, he has to open the lock. The combination lock is represented by *n* rotating disks with digits from 0 to 9 written on them. Scrooge McDuck has to turn ...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of disks on the combination lock. The second line contains a string of *n* digits — the original state of the disks. The third line contains a string of *n* digits — Scrooge McDuck's combination that opens the lock.
Print a single integer — the minimum number of moves Scrooge McDuck needs to open the lock.
[ "5\n82195\n64723\n" ]
[ "13\n" ]
In the sample he needs 13 moves: - 1 disk: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/b8967f65a723782358b93eff9ce69f336817cf70.png" style="max-width: 100.0%;max-height: 100.0%;"/> - 2 disk: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/07fa58573ece0d32...
500
[ { "input": "5\n82195\n64723", "output": "13" }, { "input": "12\n102021090898\n010212908089", "output": "16" }, { "input": "1\n8\n1", "output": "3" }, { "input": "2\n83\n57", "output": "7" }, { "input": "10\n0728592530\n1362615763", "output": "27" }, { ...
1,650,081,732
2,147,483,647
Python 3
OK
TESTS
43
46
0
def get_least_moves(num1, num2): if num1 > num2: num1, num2 = num2, num1 if abs(num1 - num2) < 6: return abs(num1 - num2) else: return (10 - num2) + num1 def main(): disks = int(input()) original = input() combination = input() min_moves = 0 ...
Title: Combination Lock Time Limit: None seconds Memory Limit: None megabytes Problem Description: Scrooge McDuck keeps his most treasured savings in a home safe with a combination lock. Each time he wants to put there the treasures that he's earned fair and square, he has to open the lock. The combination lock is ...
```python def get_least_moves(num1, num2): if num1 > num2: num1, num2 = num2, num1 if abs(num1 - num2) < 6: return abs(num1 - num2) else: return (10 - num2) + num1 def main(): disks = int(input()) original = input() combination = input() min_moves...
3
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,653,863,626
2,147,483,647
PyPy 3-64
OK
TESTS
30
92
0
num=int(input())+1 total=sum(list(map(int,input().split()))) count=0 for i in range(total+1,total+6): if i%num==1: count+=1 print(5-count)
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 num=int(input())+1 total=sum(list(map(int,input().split()))) count=0 for i in range(total+1,total+6): if i%num==1: count+=1 print(5-count) ```
3
372
A
Counting Kangaroos is Fun
PROGRAMMING
1,600
[ "binary search", "greedy", "sortings", "two pointers" ]
null
null
There are *n* kangaroos with pockets. Each kangaroo has a size (integer number). A kangaroo can go into another kangaroo's pocket if and only if the size of kangaroo who hold the kangaroo is at least twice as large as the size of kangaroo who is held. Each kangaroo can hold at most one kangaroo, and the kangaroo who i...
The first line contains a single integer — *n* (1<=≤<=*n*<=≤<=5·105). Each of the next *n* lines contains an integer *s**i* — the size of the *i*-th kangaroo (1<=≤<=*s**i*<=≤<=105).
Output a single integer — the optimal number of visible kangaroos.
[ "8\n2\n5\n7\n6\n9\n8\n4\n2\n", "8\n9\n1\n6\n2\n6\n5\n8\n3\n" ]
[ "5\n", "5\n" ]
none
500
[ { "input": "8\n2\n5\n7\n6\n9\n8\n4\n2", "output": "5" }, { "input": "8\n9\n1\n6\n2\n6\n5\n8\n3", "output": "5" }, { "input": "12\n3\n99\n24\n46\n75\n63\n57\n55\n10\n62\n34\n52", "output": "7" }, { "input": "12\n55\n75\n1\n98\n63\n64\n9\n39\n82\n18\n47\n9", "output": "6" ...
1,668,899,698
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
8
1,000
13,721,600
from copy import copy def solve(): n = int(input()) sizes = [int(input()) for i in range(n)] sizes.sort() right = n - 1 left = n // 2 - 1 merges = 0 while True: if left < 0 or right < n // 2 - 1: break if sizes[left] * 2 <= sizes[right]: merges += 1 ...
Title: Counting Kangaroos is Fun Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* kangaroos with pockets. Each kangaroo has a size (integer number). A kangaroo can go into another kangaroo's pocket if and only if the size of kangaroo who hold the kangaroo is at least twice as ...
```python from copy import copy def solve(): n = int(input()) sizes = [int(input()) for i in range(n)] sizes.sort() right = n - 1 left = n // 2 - 1 merges = 0 while True: if left < 0 or right < n // 2 - 1: break if sizes[left] * 2 <= sizes[right]: me...
0
712
B
Memory and Trident
PROGRAMMING
1,100
[ "implementation", "strings" ]
null
null
Memory is performing a walk on the two-dimensional plane, starting at the origin. He is given a string *s* with his directions for motion: - An 'L' indicates he should move one unit left. - An 'R' indicates he should move one unit right. - A 'U' indicates he should move one unit up. - A 'D' indicates he should move...
The first and only line contains the string *s* (1<=≤<=|*s*|<=≤<=100<=000) — the instructions Memory is given.
If there is a string satisfying the conditions, output a single integer — the minimum number of edits required. In case it's not possible to change the sequence in such a way that it will bring Memory to to the origin, output -1.
[ "RRU\n", "UDUR\n", "RUUR\n" ]
[ "-1\n", "1\n", "2\n" ]
In the first sample test, Memory is told to walk right, then right, then up. It is easy to see that it is impossible to edit these instructions to form a valid walk. In the second sample test, Memory is told to walk up, then down, then up, then right. One possible solution is to change *s* to "LDUR". This string uses ...
1,000
[ { "input": "RRU", "output": "-1" }, { "input": "UDUR", "output": "1" }, { "input": "RUUR", "output": "2" }, { "input": "DDDD", "output": "2" }, { "input": "RRRR", "output": "2" }, { "input": "RRRUUD", "output": "2" }, { "input": "UDURLRDURL...
1,473,527,350
1,450
Python 3
OK
TESTS
75
77
307,200
s = input() countr = 0 countu = 0 for i in s: if i == 'U': countu += 1 elif i == 'D': countu -= 1 elif i == 'R': countr += 1 else: countr -= 1 if (countr + countu) % 2 == 1: print(-1) else: print((abs(countr) + abs(countu)) // 2)
Title: Memory and Trident Time Limit: None seconds Memory Limit: None megabytes Problem Description: Memory is performing a walk on the two-dimensional plane, starting at the origin. He is given a string *s* with his directions for motion: - An 'L' indicates he should move one unit left. - An 'R' indicates he shou...
```python s = input() countr = 0 countu = 0 for i in s: if i == 'U': countu += 1 elif i == 'D': countu -= 1 elif i == 'R': countr += 1 else: countr -= 1 if (countr + countu) % 2 == 1: print(-1) else: print((abs(countr) + abs(countu)) // 2) ```
3
764
A
Taymyr is calling you
PROGRAMMING
800
[ "brute force", "implementation", "math" ]
null
null
Comrade Dujikov is busy choosing artists for Timofey's birthday and is recieving calls from Taymyr from Ilia-alpinist. Ilia-alpinist calls every *n* minutes, i.e. in minutes *n*, 2*n*, 3*n* and so on. Artists come to the comrade every *m* minutes, i.e. in minutes *m*, 2*m*, 3*m* and so on. The day is *z* minutes long,...
The only string contains three integers — *n*, *m* and *z* (1<=≤<=*n*,<=*m*,<=*z*<=≤<=104).
Print single integer — the minimum number of artists that should be killed so that there are no artists in the room when Ilia calls.
[ "1 1 10\n", "1 2 5\n", "2 3 9\n" ]
[ "10\n", "2\n", "1\n" ]
Taymyr is a place in the north of Russia. In the first test the artists come each minute, as well as the calls, so we need to kill all of them. In the second test we need to kill artists which come on the second and the fourth minutes. In the third test — only the artist which comes on the sixth minute.
500
[ { "input": "1 1 10", "output": "10" }, { "input": "1 2 5", "output": "2" }, { "input": "2 3 9", "output": "1" }, { "input": "4 8 9", "output": "1" }, { "input": "7 9 2", "output": "0" }, { "input": "10000 10000 10000", "output": "1" }, { "i...
1,487,498,287
2,147,483,647
Python 3
OK
TESTS
32
62
4,608,000
import math if __name__ == '__main__': n, m, z = str(input()).split() n = int(n) m = int(m) z = int(z) print((z * math.gcd(n, m)) // (n * m))
Title: Taymyr is calling you Time Limit: None seconds Memory Limit: None megabytes Problem Description: Comrade Dujikov is busy choosing artists for Timofey's birthday and is recieving calls from Taymyr from Ilia-alpinist. Ilia-alpinist calls every *n* minutes, i.e. in minutes *n*, 2*n*, 3*n* and so on. Artists com...
```python import math if __name__ == '__main__': n, m, z = str(input()).split() n = int(n) m = int(m) z = int(z) print((z * math.gcd(n, m)) // (n * m)) ```
3
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,634,476,088
2,147,483,647
Python 3
OK
TESTS
35
124
0
m=input().split() m=list(map(int,m)) p=m[0]*m[1] d=p//2 print(d)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python m=input().split() m=list(map(int,m)) p=m[0]*m[1] d=p//2 print(d) ```
3.969
940
B
Our Tanya is Crying Out Loud
PROGRAMMING
1,400
[ "dp", "greedy" ]
null
null
Right now she actually isn't. But she will be, if you don't solve this problem. You are given integers *n*, *k*, *A* and *B*. There is a number *x*, which is initially equal to *n*. You are allowed to perform two types of operations: 1. Subtract 1 from *x*. This operation costs you *A* coins. 1. Divide *x* by *k*....
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=2·109). The second line contains a single integer *k* (1<=≤<=*k*<=≤<=2·109). The third line contains a single integer *A* (1<=≤<=*A*<=≤<=2·109). The fourth line contains a single integer *B* (1<=≤<=*B*<=≤<=2·109).
Output a single integer — the minimum amount of coins you have to pay to make *x* equal to 1.
[ "9\n2\n3\n1\n", "5\n5\n2\n20\n", "19\n3\n4\n2\n" ]
[ "6\n", "8\n", "12\n" ]
In the first testcase, the optimal strategy is as follows: - Subtract 1 from *x* (9 → 8) paying 3 coins. - Divide *x* by 2 (8 → 4) paying 1 coin. - Divide *x* by 2 (4 → 2) paying 1 coin. - Divide *x* by 2 (2 → 1) paying 1 coin. The total cost is 6 coins. In the second test case the optimal strategy is to subtra...
1,250
[ { "input": "9\n2\n3\n1", "output": "6" }, { "input": "5\n5\n2\n20", "output": "8" }, { "input": "19\n3\n4\n2", "output": "12" }, { "input": "1845999546\n999435865\n1234234\n2323423", "output": "1044857680578777" }, { "input": "1604353664\n1604353665\n9993432\n1", ...
1,519,478,659
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
5,632,000
n = int(input()) k = int(input()) A = int(input()) B = int(input()) cost = 0 while n > 1: if n % k == 0: if B <= (n - n / k) * A: cost += B n //= k else: cost += (n - n / k) * A n //= k else: if n > k: cost += (n % k) * A ...
Title: Our Tanya is Crying Out Loud Time Limit: None seconds Memory Limit: None megabytes Problem Description: Right now she actually isn't. But she will be, if you don't solve this problem. You are given integers *n*, *k*, *A* and *B*. There is a number *x*, which is initially equal to *n*. You are allowed to perf...
```python n = int(input()) k = int(input()) A = int(input()) B = int(input()) cost = 0 while n > 1: if n % k == 0: if B <= (n - n / k) * A: cost += B n //= k else: cost += (n - n / k) * A n //= k else: if n > k: cost += (n % k)...
0
734
B
Anton and Digits
PROGRAMMING
800
[ "brute force", "greedy", "implementation", "math" ]
null
null
Recently Anton found a box with digits in his room. There are *k*2 digits 2, *k*3 digits 3, *k*5 digits 5 and *k*6 digits 6. Anton's favorite integers are 32 and 256. He decided to compose this integers from digits he has. He wants to make the sum of these integers as large as possible. Help him solve this task! Each...
The only line of the input contains four integers *k*2, *k*3, *k*5 and *k*6 — the number of digits 2, 3, 5 and 6 respectively (0<=≤<=*k*2,<=*k*3,<=*k*5,<=*k*6<=≤<=5·106).
Print one integer — maximum possible sum of Anton's favorite integers that can be composed using digits from the box.
[ "5 1 3 4\n", "1 1 1 1\n" ]
[ "800\n", "256\n" ]
In the first sample, there are five digits 2, one digit 3, three digits 5 and four digits 6. Anton can compose three integers 256 and one integer 32 to achieve the value 256 + 256 + 256 + 32 = 800. Note, that there is one unused integer 2 and one unused integer 6. They are not counted in the answer. In the second samp...
750
[ { "input": "5 1 3 4", "output": "800" }, { "input": "1 1 1 1", "output": "256" }, { "input": "10 2 1 5", "output": "320" }, { "input": "4 2 7 2", "output": "576" }, { "input": "489 292 127 263", "output": "41856" }, { "input": "9557 5242 1190 7734", ...
1,700,102,665
2,147,483,647
Python 3
OK
TESTS
60
46
0
a,b,c,d = map(int,input().split()) dic = {2:a,3:b,5:c,6:d} k = min([a,c,d]) res = 0 res += k*256 dic[2] -= k dic[5] -= k dic[6] -= k if dic[2] > 0 and dic[3] > 0: k = min([dic[2],dic[3]]) res += 32 *k print(res)
Title: Anton and Digits Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently Anton found a box with digits in his room. There are *k*2 digits 2, *k*3 digits 3, *k*5 digits 5 and *k*6 digits 6. Anton's favorite integers are 32 and 256. He decided to compose this integers from digits he...
```python a,b,c,d = map(int,input().split()) dic = {2:a,3:b,5:c,6:d} k = min([a,c,d]) res = 0 res += k*256 dic[2] -= k dic[5] -= k dic[6] -= k if dic[2] > 0 and dic[3] > 0: k = min([dic[2],dic[3]]) res += 32 *k print(res) ```
3
651
B
Beautiful Paintings
PROGRAMMING
1,200
[ "greedy", "sortings" ]
null
null
There are *n* pictures delivered for the new exhibition. The *i*-th painting has beauty *a**i*. We know that a visitor becomes happy every time he passes from a painting to a more beautiful one. We are allowed to arranged pictures in any order. What is the maximum possible number of times the visitor may become happy ...
The first line of the input contains integer *n* (1<=≤<=*n*<=≤<=1000) — the number of painting. The second line contains the sequence *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1000), where *a**i* means the beauty of the *i*-th painting.
Print one integer — the maximum possible number of neighbouring pairs, such that *a**i*<=+<=1<=&gt;<=*a**i*, after the optimal rearrangement.
[ "5\n20 30 10 50 40\n", "4\n200 100 100 200\n" ]
[ "4\n", "2\n" ]
In the first sample, the optimal order is: 10, 20, 30, 40, 50. In the second sample, the optimal order is: 100, 200, 100, 200.
1,000
[ { "input": "5\n20 30 10 50 40", "output": "4" }, { "input": "4\n200 100 100 200", "output": "2" }, { "input": "10\n2 2 2 2 2 2 2 2 2 2", "output": "0" }, { "input": "1\n1000", "output": "0" }, { "input": "2\n444 333", "output": "1" }, { "input": "100\n...
1,677,272,361
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
46
0
n = int(input()) l = list(map(int,input().split())) c = 0 if n == len(set(l)): print(n-1) else : l.sort() if n % 2 != 0 : l1 = l[:n//2] l2 = l[n//2+1:] else : l1 = l[:n//2] l2 = l[n//2:] if n % 2 != 0 : e = l[n//2] if e > l1[0]...
Title: Beautiful Paintings Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* pictures delivered for the new exhibition. The *i*-th painting has beauty *a**i*. We know that a visitor becomes happy every time he passes from a painting to a more beautiful one. We are allowed to a...
```python n = int(input()) l = list(map(int,input().split())) c = 0 if n == len(set(l)): print(n-1) else : l.sort() if n % 2 != 0 : l1 = l[:n//2] l2 = l[n//2+1:] else : l1 = l[:n//2] l2 = l[n//2:] if n % 2 != 0 : e = l[n//2] if...
0
443
A
Anton and Letters
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
Recently, Anton has found a set. The set consists of small English letters. Anton carefully wrote out all the letters from the set in one line, separated by a comma. He also added an opening curved bracket at the beginning of the line and a closing curved bracket at the end of the line. Unfortunately, from time to ti...
The first and the single line contains the set of letters. The length of the line doesn't exceed 1000. It is guaranteed that the line starts from an opening curved bracket and ends with a closing curved bracket. Between them, small English letters are listed, separated by a comma. Each comma is followed by a space.
Print a single number — the number of distinct letters in Anton's set.
[ "{a, b, c}\n", "{b, a, b, a}\n", "{}\n" ]
[ "3\n", "2\n", "0\n" ]
none
500
[ { "input": "{a, b, c}", "output": "3" }, { "input": "{b, a, b, a}", "output": "2" }, { "input": "{}", "output": "0" }, { "input": "{a, a, c, b, b, b, c, c, c, c}", "output": "3" }, { "input": "{a, c, b, b}", "output": "3" }, { "input": "{a, b}", "o...
1,693,201,023
2,147,483,647
Python 3
OK
TESTS
27
46
0
str = input() res = 0 arr = str[1:-1].split(', ') let = [0 for i in range(26)] for c in arr: if(c!= ''): let[ord(c)-ord('a')] = 1 for el in let: if(el==1): res += 1 print(res)
Title: Anton and Letters Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently, Anton has found a set. The set consists of small English letters. Anton carefully wrote out all the letters from the set in one line, separated by a comma. He also added an opening curved bracket at the begi...
```python str = input() res = 0 arr = str[1:-1].split(', ') let = [0 for i in range(26)] for c in arr: if(c!= ''): let[ord(c)-ord('a')] = 1 for el in let: if(el==1): res += 1 print(res) ```
3
632
C
The Smallest String Concatenation
PROGRAMMING
1,700
[ "sortings", "strings" ]
null
null
You're given a list of *n* strings *a*1,<=*a*2,<=...,<=*a**n*. You'd like to concatenate them together in some order such that the resulting string would be lexicographically smallest. Given the list of strings, output the lexicographically smallest concatenation.
The first line contains integer *n* — the number of strings (1<=≤<=*n*<=≤<=5·104). Each of the next *n* lines contains one string *a**i* (1<=≤<=|*a**i*|<=≤<=50) consisting of only lowercase English letters. The sum of string lengths will not exceed 5·104.
Print the only string *a* — the lexicographically smallest string concatenation.
[ "4\nabba\nabacaba\nbcd\ner\n", "5\nx\nxx\nxxa\nxxaa\nxxaaa\n", "3\nc\ncb\ncba\n" ]
[ "abacabaabbabcder\n", "xxaaaxxaaxxaxxx\n", "cbacbc\n" ]
none
0
[ { "input": "4\nabba\nabacaba\nbcd\ner", "output": "abacabaabbabcder" }, { "input": "5\nx\nxx\nxxa\nxxaa\nxxaaa", "output": "xxaaaxxaaxxaxxx" }, { "input": "3\nc\ncb\ncba", "output": "cbacbc" }, { "input": "10\naba\nabaaca\naba\nacaaaabbac\nabaacac\nb\ncabbcccaab\nbaacbb\nbcab...
1,637,643,202
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
62
0
n = int(input().strip()) inp = [] for i in range(n): s = input().strip() inp.append((len(s), s+'z'*(50-len(s)))) inp.sort(key=lambda x: x[1]) print(''.join([e[:l] for l, e in inp]))
Title: The Smallest String Concatenation Time Limit: None seconds Memory Limit: None megabytes Problem Description: You're given a list of *n* strings *a*1,<=*a*2,<=...,<=*a**n*. You'd like to concatenate them together in some order such that the resulting string would be lexicographically smallest. Given the list ...
```python n = int(input().strip()) inp = [] for i in range(n): s = input().strip() inp.append((len(s), s+'z'*(50-len(s)))) inp.sort(key=lambda x: x[1]) print(''.join([e[:l] for l, e in inp])) ```
0
784
E
Twisted Circuit
PROGRAMMING
2,000
[ "*special", "brute force", "implementation" ]
null
null
The input consists of four lines, each line containing a single digit 0 or 1.
Output a single digit, 0 or 1.
[ "0\n1\n1\n0\n" ]
[ "0\n" ]
none
0
[ { "input": "0\n1\n1\n0", "output": "0" }, { "input": "0\n0\n0\n0", "output": "0" }, { "input": "1\n0\n0\n0", "output": "1" }, { "input": "0\n1\n0\n0", "output": "0" }, { "input": "1\n1\n0\n0", "output": "1" }, { "input": "0\n0\n1\n0", "output": "0"...
1,492,422,893
1,493
Python 3
WRONG_ANSWER
TESTS
2
46
5,529,600
a = bool(input()) b = bool(input()) c = bool(input()) d = bool(input()) a, b, c, d = a or b, not(c or d), b and c, a or d a, b = a and b, not(c or d) a = a or b print(1 if a else 0)
Title: Twisted Circuit Time Limit: None seconds Memory Limit: None megabytes Problem Description: Input Specification: The input consists of four lines, each line containing a single digit 0 or 1. Output Specification: Output a single digit, 0 or 1. Demo Input: ['0\n1\n1\n0\n'] Demo Output: ['0\n'] Note: none
```python a = bool(input()) b = bool(input()) c = bool(input()) d = bool(input()) a, b, c, d = a or b, not(c or d), b and c, a or d a, b = a and b, not(c or d) a = a or b print(1 if a else 0) ```
0