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
967
B
Watering System
PROGRAMMING
1,000
[ "math", "sortings" ]
null
null
Arkady wants to water his only flower. Unfortunately, he has a very poor watering system that was designed for $n$ flowers and so it looks like a pipe with $n$ holes. Arkady can only use the water that flows from the first hole. Arkady can block some of the holes, and then pour $A$ liters of water into the pipe. After...
The first line contains three integers $n$, $A$, $B$ ($1 \le n \le 100\,000$, $1 \le B \le A \le 10^4$) — the number of holes, the volume of water Arkady will pour into the system, and the volume he wants to get out of the first hole. The second line contains $n$ integers $s_1, s_2, \ldots, s_n$ ($1 \le s_i \le 10^4$)...
Print a single integer — the number of holes Arkady should block.
[ "4 10 3\n2 2 2 2\n", "4 80 20\n3 2 1 4\n", "5 10 10\n1000 1 1 1 1\n" ]
[ "1\n", "0\n", "4\n" ]
In the first example Arkady should block at least one hole. After that, $\frac{10 \cdot 2}{6} \approx 3.333$ liters of water will flow out of the first hole, and that suits Arkady. In the second example even without blocking any hole, $\frac{80 \cdot 3}{10} = 24$ liters will flow out of the first hole, that is not les...
1,000
[ { "input": "4 10 3\n2 2 2 2", "output": "1" }, { "input": "4 80 20\n3 2 1 4", "output": "0" }, { "input": "5 10 10\n1000 1 1 1 1", "output": "4" }, { "input": "10 300 100\n20 1 3 10 8 5 3 6 4 3", "output": "1" }, { "input": "10 300 100\n20 25 68 40 60 37 44 85 23 ...
1,525,015,683
7,983
Python 3
RUNTIME_ERROR
PRETESTS
0
77
6,963,200
b=[input().split(' ')] s=int(b[0][0]) n=int(a[0][0]) A=int(a[0][1]) B=int(a[0][2]) x=int((s*A)/B) j=0 sum=0 i=0 for m in range (n): sum = sum+int(b[i][j]) j+=1 y=sum-x sorted(b) l=0 t=0 k=1 if y>0: if int(b[l][t])==s: t=t+1 if (((int(b[l][t])*A)/(n-k...
Title: Watering System Time Limit: None seconds Memory Limit: None megabytes Problem Description: Arkady wants to water his only flower. Unfortunately, he has a very poor watering system that was designed for $n$ flowers and so it looks like a pipe with $n$ holes. Arkady can only use the water that flows from the fi...
```python b=[input().split(' ')] s=int(b[0][0]) n=int(a[0][0]) A=int(a[0][1]) B=int(a[0][2]) x=int((s*A)/B) j=0 sum=0 i=0 for m in range (n): sum = sum+int(b[i][j]) j+=1 y=sum-x sorted(b) l=0 t=0 k=1 if y>0: if int(b[l][t])==s: t=t+1 if (((int(b[l][t...
-1
837
E
Vasya's Function
PROGRAMMING
2,100
[ "binary search", "implementation", "math" ]
null
null
Vasya is studying number theory. He has denoted a function *f*(*a*,<=*b*) such that: - *f*(*a*,<=0)<==<=0; - *f*(*a*,<=*b*)<==<=1<=+<=*f*(*a*,<=*b*<=-<=*gcd*(*a*,<=*b*)), where *gcd*(*a*,<=*b*) is the greatest common divisor of *a* and *b*. Vasya has two numbers *x* and *y*, and he wants to calculate *f*(*x*,<=*y*)...
The first line contains two integer numbers *x* and *y* (1<=≤<=*x*,<=*y*<=≤<=1012).
Print *f*(*x*,<=*y*).
[ "3 5\n", "6 3\n" ]
[ "3\n", "1\n" ]
none
0
[ { "input": "3 5", "output": "3" }, { "input": "6 3", "output": "1" }, { "input": "1000000009 1000000008", "output": "1000000008" }, { "input": "1000000007 1000000006", "output": "1000000006" }, { "input": "2000000018 2000000017", "output": "1000000009" }, ...
1,536,774,238
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
2
326
6,451,200
from math import gcd def f(a,b): if b==0: return 0 return 1+f(a,b-gcd(a,b)) x,y=map(int,input().split()) print(f(x,y))
Title: Vasya's Function Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya is studying number theory. He has denoted a function *f*(*a*,<=*b*) such that: - *f*(*a*,<=0)<==<=0; - *f*(*a*,<=*b*)<==<=1<=+<=*f*(*a*,<=*b*<=-<=*gcd*(*a*,<=*b*)), where *gcd*(*a*,<=*b*) is the greatest commo...
```python from math import gcd def f(a,b): if b==0: return 0 return 1+f(a,b-gcd(a,b)) x,y=map(int,input().split()) print(f(x,y)) ```
-1
761
B
Dasha and friends
PROGRAMMING
1,300
[ "brute force", "implementation", "math" ]
null
null
Running with barriers on the circle track is very popular in the country where Dasha lives, so no wonder that on her way to classes she saw the following situation: The track is the circle with length *L*, in distinct points of which there are *n* barriers. Athlete always run the track in counterclockwise direction if...
The first line contains two integers *n* and *L* (1<=≤<=*n*<=≤<=50, *n*<=≤<=*L*<=≤<=100) — the number of barriers on a track and its length. The second line contains *n* distinct integers in the ascending order — the distance from Kefa's start to each barrier in the order of its appearance. All integers are in the ra...
Print "YES" (without quotes), if Kefa and Sasha ran the coinciding tracks (it means that the position of all barriers coincides, if they start running from the same points on the track). Otherwise print "NO" (without quotes).
[ "3 8\n2 4 6\n1 5 7\n", "4 9\n2 3 5 8\n0 1 3 6\n", "2 4\n1 3\n1 2\n" ]
[ "YES\n", "YES\n", "NO\n" ]
The first test is analyzed in the statement.
1,000
[ { "input": "3 8\n2 4 6\n1 5 7", "output": "YES" }, { "input": "4 9\n2 3 5 8\n0 1 3 6", "output": "YES" }, { "input": "2 4\n1 3\n1 2", "output": "NO" }, { "input": "5 9\n0 2 5 6 7\n1 3 6 7 8", "output": "YES" }, { "input": "5 60\n7 26 27 40 59\n14 22 41 42 55", ...
1,497,464,428
2,147,483,647
Python 3
OK
TESTS
134
77
0
n,L = map(int,input().split()) M = list(map(int,input().split())) N = list(map(int,input().split())) l = 0 for i in range(0,L): KK = [] t = [] for j in M: if j-i >= 0: KK.append(j-i) else: t.append(L+(j-i)) KK = KK + t if KK == N: l = l +...
Title: Dasha and friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: Running with barriers on the circle track is very popular in the country where Dasha lives, so no wonder that on her way to classes she saw the following situation: The track is the circle with length *L*, in distinc...
```python n,L = map(int,input().split()) M = list(map(int,input().split())) N = list(map(int,input().split())) l = 0 for i in range(0,L): KK = [] t = [] for j in M: if j-i >= 0: KK.append(j-i) else: t.append(L+(j-i)) KK = KK + t if KK == N: ...
3
870
A
Search for Pretty Integers
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
You are given two lists of non-zero digits. Let's call an integer pretty if its (base 10) representation has at least one digit from the first list and at least one digit from the second list. What is the smallest positive pretty integer?
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=9) — the lengths of the first and the second lists, respectively. The second line contains *n* distinct digits *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=9) — the elements of the first list. The third line contains *m* distinct digits *b*1,<=*b*2...
Print the smallest pretty integer.
[ "2 3\n4 2\n5 7 6\n", "8 8\n1 2 3 4 5 6 7 8\n8 7 6 5 4 3 2 1\n" ]
[ "25\n", "1\n" ]
In the first example 25, 46, 24567 are pretty, as well as many other integers. The smallest among them is 25. 42 and 24 are not pretty because they don't have digits from the second list. In the second example all integers that have at least one digit different from 9 are pretty. It's obvious that the smallest among t...
500
[ { "input": "2 3\n4 2\n5 7 6", "output": "25" }, { "input": "8 8\n1 2 3 4 5 6 7 8\n8 7 6 5 4 3 2 1", "output": "1" }, { "input": "1 1\n9\n1", "output": "19" }, { "input": "9 1\n5 4 2 3 6 1 7 9 8\n9", "output": "9" }, { "input": "5 3\n7 2 5 8 6\n3 1 9", "output"...
1,565,527,479
2,147,483,647
Python 3
OK
TESTS
52
124
0
x, y = input().split() x = int(x) y = int(y) a = list(map(int,input().split())) b = list(map(int,input().split())) m = list(set(a).intersection(b)) if(len(m) > 0): print(m[0]) else: a.sort() b.sort() min1 = a[0] min2 = b[0] if(min1 < min2): print(str(min1) + str(min2)) else: ...
Title: Search for Pretty Integers Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two lists of non-zero digits. Let's call an integer pretty if its (base 10) representation has at least one digit from the first list and at least one digit from the second list. What is the sm...
```python x, y = input().split() x = int(x) y = int(y) a = list(map(int,input().split())) b = list(map(int,input().split())) m = list(set(a).intersection(b)) if(len(m) > 0): print(m[0]) else: a.sort() b.sort() min1 = a[0] min2 = b[0] if(min1 < min2): print(str(min1) + str(min2)) e...
3
789
A
Anastasia and pebbles
PROGRAMMING
1,100
[ "implementation", "math" ]
null
null
Anastasia loves going for a walk in Central Uzhlyandian Park. But she became uninterested in simple walking, so she began to collect Uzhlyandian pebbles. At first, she decided to collect all the pebbles she could find in the park. She has only two pockets. She can put at most *k* pebbles in each pocket at the same tim...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=105, 1<=≤<=*k*<=≤<=109) — the number of different pebble types and number of pebbles Anastasia can place in one pocket. The second line contains *n* integers *w*1,<=*w*2,<=...,<=*w**n* (1<=≤<=*w**i*<=≤<=104) — number of pebbles of each type.
The only line of output contains one integer — the minimum number of days Anastasia needs to collect all the pebbles.
[ "3 2\n2 3 4\n", "5 4\n3 1 8 9 7\n" ]
[ "3\n", "5\n" ]
In the first sample case, Anastasia can collect all pebbles of the first type on the first day, of second type — on the second day, and of third type — on the third day. Optimal sequence of actions in the second sample case: - In the first day Anastasia collects 8 pebbles of the third type. - In the second day she...
500
[ { "input": "3 2\n2 3 4", "output": "3" }, { "input": "5 4\n3 1 8 9 7", "output": "5" }, { "input": "1 22\n1", "output": "1" }, { "input": "3 57\n78 165 54", "output": "3" }, { "input": "5 72\n74 10 146 189 184", "output": "6" }, { "input": "9 13\n132 8...
1,528,976,535
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
3
1,000
307,200
n,k=[int(i) for i in input().split()] a=[int(i) for i in input().split()] t=0 while sum(a)!=0: h=0 #print(a) for i in range(len(a)): if h<2: if a[i]>=k: a[i]-=k h+=1 elif a[i]<k and a[i]>0: a[i]=0 h+...
Title: Anastasia and pebbles Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anastasia loves going for a walk in Central Uzhlyandian Park. But she became uninterested in simple walking, so she began to collect Uzhlyandian pebbles. At first, she decided to collect all the pebbles she could ...
```python n,k=[int(i) for i in input().split()] a=[int(i) for i in input().split()] t=0 while sum(a)!=0: h=0 #print(a) for i in range(len(a)): if h<2: if a[i]>=k: a[i]-=k h+=1 elif a[i]<k and a[i]>0: a[i]=0 ...
0
61
A
Ultra-Fast Mathematician
PROGRAMMING
800
[ "implementation" ]
A. Ultra-Fast Mathematician
2
256
Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 1018 numbers in a single second. One day in 230 AD Shapur was trying to find out if any one can possibly do...
There are two lines in each input. Each of them contains a single number. It is guaranteed that the numbers are made from 0 and 1 only and that their length is same. The numbers may start with 0. The length of each number doesn't exceed 100.
Write one line — the corresponding answer. Do not omit the leading 0s.
[ "1010100\n0100101\n", "000\n111\n", "1110\n1010\n", "01110\n01100\n" ]
[ "1110001\n", "111\n", "0100\n", "00010\n" ]
none
500
[ { "input": "1010100\n0100101", "output": "1110001" }, { "input": "000\n111", "output": "111" }, { "input": "1110\n1010", "output": "0100" }, { "input": "01110\n01100", "output": "00010" }, { "input": "011101\n000001", "output": "011100" }, { "input": "...
1,457,595,507
2,147,483,647
Python 3
OK
TESTS
102
62
0
S=input() S1=input() k=len(S) S2='' for i in range(k) : if S[i]=='1' and S1[i]=='1'or S[i]=='0' and S1[i]=='0' : S2=S2+'0' else : S2=S2+'1' print(S2)
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 S=input() S1=input() k=len(S) S2='' for i in range(k) : if S[i]=='1' and S1[i]=='1'or S[i]=='0' and S1[i]=='0' : S2=S2+'0' else : S2=S2+'1' print(S2) ```
3.9845
108
A
Palindromic Times
PROGRAMMING
1,000
[ "implementation", "strings" ]
A. Palindromic Times
2
256
Tattah is asleep if and only if Tattah is attending a lecture. This is a well-known formula among Tattah's colleagues. On a Wednesday afternoon, Tattah was attending Professor HH's lecture. At 12:21, right before falling asleep, he was staring at the digital watch around Saher's wrist. He noticed that the digits on th...
The first and only line of the input starts with a string with the format "HH:MM" where "HH" is from "00" to "23" and "MM" is from "00" to "59". Both "HH" and "MM" have exactly two digits.
Print the palindromic time of day that comes soonest after the time given in the input. If the input time is palindromic, output the soonest palindromic time after the input time.
[ "12:21\n", "23:59\n" ]
[ "13:31\n", "00:00\n" ]
none
500
[ { "input": "12:21", "output": "13:31" }, { "input": "23:59", "output": "00:00" }, { "input": "15:51", "output": "20:02" }, { "input": "10:44", "output": "11:11" }, { "input": "04:02", "output": "04:40" }, { "input": "02:11", "output": "02:20" }, ...
1,613,100,874
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
154
0
s = input() s = s.replace(":","") s = int(s) def reverse(x): r=0 while(x>0): rem=x%10 r=r*10+rem x=x//10 return r for i in range(2359-s): s+=1 if s == reverse(s): s = str(s) print(s[0], end="") print(s[1], end="") print(":", end...
Title: Palindromic Times Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Tattah is asleep if and only if Tattah is attending a lecture. This is a well-known formula among Tattah's colleagues. On a Wednesday afternoon, Tattah was attending Professor HH's lecture. At 12:21, right before falling...
```python s = input() s = s.replace(":","") s = int(s) def reverse(x): r=0 while(x>0): rem=x%10 r=r*10+rem x=x//10 return r for i in range(2359-s): s+=1 if s == reverse(s): s = str(s) print(s[0], end="") print(s[1], end="") prin...
0
887
A
Div. 64
PROGRAMMING
1,000
[ "implementation" ]
null
null
Top-model Izabella participates in the competition. She wants to impress judges and show her mathematical skills. Her problem is following: for given string, consisting of only 0 and 1, tell if it's possible to remove some digits in such a way, that remaining number is a representation of some positive integer, divisi...
In the only line given a non-empty binary string *s* with length up to 100.
Print «yes» (without quotes) if it's possible to remove digits required way and «no» otherwise.
[ "100010001\n", "100\n" ]
[ "yes", "no" ]
In the first test case, you can get string 1 000 000 after removing two ones which is a representation of number 64 in the binary numerical system. You can read more about binary numeral system representation here: [https://en.wikipedia.org/wiki/Binary_system](https://en.wikipedia.org/wiki/Binary_system)
500
[ { "input": "100010001", "output": "yes" }, { "input": "100", "output": "no" }, { "input": "0000001000000", "output": "yes" }, { "input": "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "output": "no" }, { "in...
1,509,887,690
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
12
62
0
s=input() pos=0 a=0 for i in range(0,len(s)): if s[i]=='1': pos=i break for j in range(pos+1,len(s)): if s[j]=='0': a+=1 if a>=6: print("yes") else: print("no")
Title: Div. 64 Time Limit: None seconds Memory Limit: None megabytes Problem Description: Top-model Izabella participates in the competition. She wants to impress judges and show her mathematical skills. Her problem is following: for given string, consisting of only 0 and 1, tell if it's possible to remove some dig...
```python s=input() pos=0 a=0 for i in range(0,len(s)): if s[i]=='1': pos=i break for j in range(pos+1,len(s)): if s[j]=='0': a+=1 if a>=6: print("yes") else: print("no") ```
0
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,245,809
2,147,483,647
Python 3
OK
TESTS
40
46
0
a=int(input()) b=int(input()) t=abs(a-b) A=t//2 B=0 for i in range(1,A+1): B+=i if t%2==0: print(B*2) else: print(B*2+1+A)
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 a=int(input()) b=int(input()) t=abs(a-b) A=t//2 B=0 for i in range(1,A+1): B+=i if t%2==0: print(B*2) else: print(B*2+1+A) ```
3
515
C
Drazil and Factorial
PROGRAMMING
1,400
[ "greedy", "math", "sortings" ]
null
null
Drazil is playing a math game with Varda. Let's define for positive integer *x* as a product of factorials of its digits. For example, . First, they choose a decimal number *a* consisting of *n* digits that contains at least one digit larger than 1. This number may possibly start with leading zeroes. Then they shoul...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=15) — the number of digits in *a*. The second line contains *n* digits of *a*. There is at least one digit in *a* that is larger than 1. Number *a* may possibly contain leading zeroes.
Output a maximum possible integer satisfying the conditions above. There should be no zeroes and ones in this number decimal representation.
[ "4\n1234\n", "3\n555\n" ]
[ "33222\n", "555\n" ]
In the first case, <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/f5a4207f23215fddce977ab5ea9e9d2e7578fb52.png" style="max-width: 100.0%;max-height: 100.0%;"/>
1,000
[ { "input": "4\n1234", "output": "33222" }, { "input": "3\n555", "output": "555" }, { "input": "15\n012345781234578", "output": "7777553333222222222222" }, { "input": "1\n8", "output": "7222" }, { "input": "10\n1413472614", "output": "75333332222222" }, { ...
1,635,436,106
2,147,483,647
PyPy 3-64
OK
TESTS
45
77
28,979,200
def change(i, p, dig, a): for j in range(4): p[j] += a * dig[i][j] dig = { '0':(0, 0, 0, 0), '1':(0, 0, 0, 0), '2':(1, 0, 0, 0), '3':(1, 1, 0, 0), '4':(3, 1, 0, 0), '5':(3, 1, 1, 0), '6':(4, 2, 1, 0), '7':(4, 2, 1, 1), '8':(7, 2, 1, 1), '9':(7, 4, 1, ...
Title: Drazil and Factorial Time Limit: None seconds Memory Limit: None megabytes Problem Description: Drazil is playing a math game with Varda. Let's define for positive integer *x* as a product of factorials of its digits. For example, . First, they choose a decimal number *a* consisting of *n* digits that cont...
```python def change(i, p, dig, a): for j in range(4): p[j] += a * dig[i][j] dig = { '0':(0, 0, 0, 0), '1':(0, 0, 0, 0), '2':(1, 0, 0, 0), '3':(1, 1, 0, 0), '4':(3, 1, 0, 0), '5':(3, 1, 1, 0), '6':(4, 2, 1, 0), '7':(4, 2, 1, 1), '8':(7, 2, 1, 1), '9':...
3
606
B
Testing Robots
PROGRAMMING
1,600
[ "implementation" ]
null
null
The Cybernetics Failures (CF) organisation made a prototype of a bomb technician robot. To find the possible problems it was decided to carry out a series of tests. At the beginning of each test the robot prototype will be placed in cell (*x*0,<=*y*0) of a rectangular squared field of size *x*<=×<=*y*, after that a min...
The first line of the input contains four integers *x*, *y*, *x*0, *y*0 (1<=≤<=*x*,<=*y*<=≤<=500,<=1<=≤<=*x*0<=≤<=*x*,<=1<=≤<=*y*0<=≤<=*y*) — the sizes of the field and the starting coordinates of the robot. The coordinate axis *X* is directed downwards and axis *Y* is directed to the right. The second line contains a...
Print the sequence consisting of (*length*(*s*)<=+<=1) numbers. On the *k*-th position, starting with zero, print the number of tests where the robot will run exactly *k* commands before it blows up.
[ "3 4 2 2\nUURDRDRL\n", "2 2 2 2\nULD\n" ]
[ "1 1 0 1 1 1 1 0 6\n", "1 1 1 1\n" ]
In the first sample, if we exclude the probable impact of the mines, the robot's route will look like that: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/16bfda1e4f41cc00665c31f0a1d754d68cd9b4ab.png" style="max-width: 100.0%;max-height: 100.0%;"/>.
1,000
[ { "input": "3 4 2 2\nUURDRDRL", "output": "1 1 0 1 1 1 1 0 6" }, { "input": "2 2 2 2\nULD", "output": "1 1 1 1" }, { "input": "1 1 1 1\nURDLUURRDDLLURDL", "output": "1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" }, { "input": "15 17 8 9\nURRDLUULLDD", "output": "1 1 1 1 1 1 0 1 1 1 ...
1,450,198,490
2,147,483,647
Python 3
OK
TESTS
68
530
2,969,600
from functools import reduce from operator import * from math import * from sys import * from string import * setrecursionlimit(10**7) dX= [-1, 1, 0, 0,-1, 1,-1, 1] dY= [ 0, 0,-1, 1, 1,-1,-1, 1] RI=lambda: list(map(int,input().split())) RS=lambda: input().rstrip().split() ###############################################...
Title: Testing Robots Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Cybernetics Failures (CF) organisation made a prototype of a bomb technician robot. To find the possible problems it was decided to carry out a series of tests. At the beginning of each test the robot prototype will ...
```python from functools import reduce from operator import * from math import * from sys import * from string import * setrecursionlimit(10**7) dX= [-1, 1, 0, 0,-1, 1,-1, 1] dY= [ 0, 0,-1, 1, 1,-1,-1, 1] RI=lambda: list(map(int,input().split())) RS=lambda: input().rstrip().split() #####################################...
3
0
none
none
none
0
[ "none" ]
null
null
You are given two integers $a$ and $b$. Moreover, you are given a sequence $s_0, s_1, \dots, s_{n}$. All values in $s$ are integers $1$ or $-1$. It's known that sequence is $k$-periodic and $k$ divides $n+1$. In other words, for each $k \leq i \leq n$ it's satisfied that $s_{i} = s_{i - k}$. Find out the non-negative ...
The first line contains four integers $n, a, b$ and $k$ $(1 \leq n \leq 10^{9}, 1 \leq a, b \leq 10^{9}, 1 \leq k \leq 10^{5})$. The second line contains a sequence of length $k$ consisting of characters '+' and '-'. If the $i$-th character (0-indexed) is '+', then $s_{i} = 1$, otherwise $s_{i} = -1$. Note that onl...
Output a single integer — value of given expression modulo $10^{9} + 9$.
[ "2 2 3 3\n+-+\n", "4 1 5 1\n-\n" ]
[ "7\n", "999999228\n" ]
In the first example: $(\sum \limits_{i=0}^{n} s_{i} a^{n - i} b^{i})$ = $2^{2} 3^{0} - 2^{1} 3^{1} + 2^{0} 3^{2}$ = 7 In the second example: $(\sum \limits_{i=0}^{n} s_{i} a^{n - i} b^{i}) = -1^{4} 5^{0} - 1^{3} 5^{1} - 1^{2} 5^{2} - 1^{1} 5^{3} - 1^{0} 5^{4} = -781 \equiv 999999228 \pmod{10^{9} + 9}$.
0
[ { "input": "2 2 3 3\n+-+", "output": "7" }, { "input": "4 1 5 1\n-", "output": "999999228" }, { "input": "1 1 4 2\n-+", "output": "3" }, { "input": "3 1 4 4\n+--+", "output": "45" }, { "input": "5 1 1 6\n++---+", "output": "0" }, { "input": "5 2 2 6\n+...
1,523,978,135
4,235
Python 3
TIME_LIMIT_EXCEEDED
PRETESTS
6
1,000
7,475,200
n, a, b, k = map(int, input().split()) base = 10 ** 9 + 9 lst = list(input()) acc = 0 for x in range(k): if lst[x] == '+': acc += (a ** (k - x - 1)) * (b ** x) else: acc -= (a ** (k - x - 1)) * (b ** x) acc %= base ans = 0 for x in range((n + 1) // k): ans += (a ** (((n...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two integers $a$ and $b$. Moreover, you are given a sequence $s_0, s_1, \dots, s_{n}$. All values in $s$ are integers $1$ or $-1$. It's known that sequence is $k$-periodic and $k$ divides $n+1$. In other words, for e...
```python n, a, b, k = map(int, input().split()) base = 10 ** 9 + 9 lst = list(input()) acc = 0 for x in range(k): if lst[x] == '+': acc += (a ** (k - x - 1)) * (b ** x) else: acc -= (a ** (k - x - 1)) * (b ** x) acc %= base ans = 0 for x in range((n + 1) // k): ans += ...
0
745
B
Hongcow Solves A Puzzle
PROGRAMMING
1,400
[ "implementation" ]
null
null
Hongcow likes solving puzzles. One day, Hongcow finds two identical puzzle pieces, with the instructions "make a rectangle" next to them. The pieces can be described by an *n* by *m* grid of characters, where the character 'X' denotes a part of the puzzle and '.' denotes an empty part of the grid. It is guaranteed tha...
The first line of input will contain two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=500), the dimensions of the puzzle piece. The next *n* lines will describe the jigsaw piece. Each line will have length *m* and will consist of characters '.' and 'X' only. 'X' corresponds to a part of the puzzle piece, '.' is an empty ...
Output "YES" if it is possible for Hongcow to make a rectangle. Output "NO" otherwise.
[ "2 3\nXXX\nXXX\n", "2 2\n.X\nXX\n", "5 5\n.....\n..X..\n.....\n.....\n.....\n" ]
[ "YES\n", "NO\n", "YES\n" ]
For the first sample, one example of a rectangle we can form is as follows For the second sample, it is impossible to put two of those pieces without rotating or flipping to form a rectangle. In the third sample, we can shift the first tile by one to the right, and then compose the following rectangle:
1,000
[ { "input": "2 3\nXXX\nXXX", "output": "YES" }, { "input": "2 2\n.X\nXX", "output": "NO" }, { "input": "1 500\n.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX...
1,481,994,108
1,608
Python 3
CHALLENGED
CHALLENGES
7
46
4,608,000
n, m = map(int, input().split()) o1 = set() for i in range(n): s = input() if s.count('X') != 0: o1.add((s.count('X'), s.find('X'))) if len(o1) == 1: print('YES') else: print('NO')
Title: Hongcow Solves A Puzzle Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hongcow likes solving puzzles. One day, Hongcow finds two identical puzzle pieces, with the instructions "make a rectangle" next to them. The pieces can be described by an *n* by *m* grid of characters, where t...
```python n, m = map(int, input().split()) o1 = set() for i in range(n): s = input() if s.count('X') != 0: o1.add((s.count('X'), s.find('X'))) if len(o1) == 1: print('YES') else: print('NO') ```
-1
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,608,647,461
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n=int(input()) a=[] b=[] for i in range(n): s=input() if(not s in a): a.append(s) b.append(0) else: if(a[0]==s): b[0]+=1 else: b[1]+=1 if(b[0]>b[1]): print(a[0]): else: print(a[1])
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python n=int(input()) a=[] b=[] for i in range(n): s=input() if(not s in a): a.append(s) b.append(0) else: if(a[0]==s): b[0]+=1 else: b[1]+=1 if(b[0]>b[1]): print(a[0]): else: print(a[1]) ```
-1
854
B
Maxim Buys an Apartment
PROGRAMMING
1,200
[ "constructive algorithms", "math" ]
null
null
Maxim wants to buy an apartment in a new house at Line Avenue of Metropolis. The house has *n* apartments that are numbered from 1 to *n* and are arranged in a row. Two apartments are adjacent if their indices differ by 1. Some of the apartments can already be inhabited, others are available for sale. Maxim often visi...
The only line of the input contains two integers: *n* and *k* (1<=≤<=*n*<=≤<=109, 0<=≤<=*k*<=≤<=*n*).
Print the minimum possible and the maximum possible number of apartments good for Maxim.
[ "6 3\n" ]
[ "1 3\n" ]
In the sample test, the number of good apartments could be minimum possible if, for example, apartments with indices 1, 2 and 3 were inhabited. In this case only apartment 4 is good. The maximum possible number could be, for example, if apartments with indices 1, 3 and 5 were inhabited. In this case all other apartment...
1,000
[ { "input": "6 3", "output": "1 3" }, { "input": "10 1", "output": "1 2" }, { "input": "10 9", "output": "1 1" }, { "input": "8 0", "output": "0 0" }, { "input": "8 8", "output": "0 0" }, { "input": "966871928 890926970", "output": "1 75944958" },...
1,674,574,288
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
n, k = map(int, input().split()) if k == 0 or n == k: print(0,0) else: if n >= k * 3: print(1, n - k) else: print(1, 2 * k)
Title: Maxim Buys an Apartment Time Limit: None seconds Memory Limit: None megabytes Problem Description: Maxim wants to buy an apartment in a new house at Line Avenue of Metropolis. The house has *n* apartments that are numbered from 1 to *n* and are arranged in a row. Two apartments are adjacent if their indices d...
```python n, k = map(int, input().split()) if k == 0 or n == k: print(0,0) else: if n >= k * 3: print(1, n - k) else: print(1, 2 * k) ```
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,658,141,204
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
s = input() a = "" for i in s: if i not in a and i !="l": a += i elif i == "l" and a.count("l")<2: a += i if "hello" in a: 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 s = input() a = "" for i in s: if i not in a and i !="l": a += i elif i == "l" and a.count("l")<2: a += i if "hello" in a: print("YES") else: print("NO") ```
0
918
A
Eleven
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Eleven wants to choose a new name for herself. As a bunch of geeks, her friends suggested an algorithm to choose a name for her. Eleven wants her name to have exactly *n* characters. Her friend suggested that her name should only consist of uppercase and lowercase letters 'O'. More precisely, they suggested that the ...
The first and only line of input contains an integer *n* (1<=≤<=*n*<=≤<=1000).
Print Eleven's new name on the first and only line of output.
[ "8\n", "15\n" ]
[ "OOOoOooO\n", "OOOoOooOooooOoo\n" ]
none
500
[ { "input": "8", "output": "OOOoOooO" }, { "input": "15", "output": "OOOoOooOooooOoo" }, { "input": "85", "output": "OOOoOooOooooOoooooooOooooooooooooOooooooooooooooooooooOoooooooooooooooooooooooooooooo" }, { "input": "381", "output": "OOOoOooOooooOoooooooOooooooooooooOooo...
1,689,767,232
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
46
0
n=int(input()) l=[1] a=1 b=1 for i in range(2,n): c=a+b l.append(c) a=b b=c ans="" for i in range(1,n+1): if(i in l): ans=ans+"O" else: ans=ans+"o" print(ans)
Title: Eleven Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eleven wants to choose a new name for herself. As a bunch of geeks, her friends suggested an algorithm to choose a name for her. Eleven wants her name to have exactly *n* characters. Her friend suggested that her name should o...
```python n=int(input()) l=[1] a=1 b=1 for i in range(2,n): c=a+b l.append(c) a=b b=c ans="" for i in range(1,n+1): if(i in l): ans=ans+"O" else: ans=ans+"o" print(ans) ```
0
12
A
Super Agent
PROGRAMMING
800
[ "implementation" ]
A. Super Agent
2
256
There is a very secret base in Potatoland where potato mash is made according to a special recipe. The neighbours from Porridgia decided to seize this recipe and to sell it to Pilauland. For this mission they have been preparing special agent Pearlo for many years. When, finally, Pearlo learned all secrets of espionage...
Input contains the matrix of three rows of three symbols each. Symbol «X» means that the corresponding button was pressed, and «.» means that is was not pressed. The matrix may contain no «X», also it may contain no «.».
Print YES if the password is symmetric with respect to the central button of the terminal and NO otherwise.
[ "XX.\n...\n.XX\n", "X.X\nX..\n...\n" ]
[ "YES\n", "NO\n" ]
If you are not familiar with the term «central symmetry», you may look into http://en.wikipedia.org/wiki/Central_symmetry
0
[ { "input": "XX.\n...\n.XX", "output": "YES" }, { "input": ".X.\n.X.\n.X.", "output": "YES" }, { "input": "XXX\nXXX\nXXX", "output": "YES" }, { "input": "XXX\nX.X\nXXX", "output": "YES" }, { "input": "X..\n.X.\n..X", "output": "YES" }, { "input": "...\n...
1,549,319,113
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
218
0
m = [] d = {(0, 0): (2, 2), (0, 1): (2, 1), (0, 2): (2, 0), (2, 2): (0, 0), (2, 1): (0, 1), (2, 0): (0, 2), (1, 0): (1, 2), (1, 2): (1, 0), (1, 1): (1, 1)} for k in range(3): m.append(input()) temp_dict = {} for i in range(3): for j in range(3): if m[i][j] == 'X' and d[i, j] in temp_dict: ...
Title: Super Agent Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: There is a very secret base in Potatoland where potato mash is made according to a special recipe. The neighbours from Porridgia decided to seize this recipe and to sell it to Pilauland. For this mission they have been preparin...
```python m = [] d = {(0, 0): (2, 2), (0, 1): (2, 1), (0, 2): (2, 0), (2, 2): (0, 0), (2, 1): (0, 1), (2, 0): (0, 2), (1, 0): (1, 2), (1, 2): (1, 0), (1, 1): (1, 1)} for k in range(3): m.append(input()) temp_dict = {} for i in range(3): for j in range(3): if m[i][j] == 'X' and d[i, j] in te...
0
538
B
Quasi Binary
PROGRAMMING
1,400
[ "constructive algorithms", "dp", "greedy", "implementation" ]
null
null
A number is called quasibinary if its decimal representation contains only digits 0 or 1. For example, numbers 0, 1, 101, 110011 — are quasibinary and numbers 2, 12, 900 are not. You are given a positive integer *n*. Represent it as a sum of minimum number of quasibinary numbers.
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=106).
In the first line print a single integer *k* — the minimum number of numbers in the representation of number *n* as a sum of quasibinary numbers. In the second line print *k* numbers — the elements of the sum. All these numbers should be quasibinary according to the definition above, their sum should equal *n*. Do not...
[ "9\n", "32\n" ]
[ "9\n1 1 1 1 1 1 1 1 1 \n", "3\n10 11 11 \n" ]
none
1,000
[ { "input": "9", "output": "9\n1 1 1 1 1 1 1 1 1 " }, { "input": "32", "output": "3\n10 11 11 " }, { "input": "1", "output": "1\n1 " }, { "input": "415", "output": "5\n1 101 101 101 111 " }, { "input": "10011", "output": "1\n10011 " }, { "input": "10201...
1,517,077,452
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
5,632,000
n = input() le = len(n) l = [sum(10**(le-1-i) if int(y)>=x else 0 for i,y in enumerate(n)) for x in range(1,10)] l = sorted([str(x) for x in l if x>0]) print (' '.join(l))
Title: Quasi Binary Time Limit: None seconds Memory Limit: None megabytes Problem Description: A number is called quasibinary if its decimal representation contains only digits 0 or 1. For example, numbers 0, 1, 101, 110011 — are quasibinary and numbers 2, 12, 900 are not. You are given a positive integer *n*. Repr...
```python n = input() le = len(n) l = [sum(10**(le-1-i) if int(y)>=x else 0 for i,y in enumerate(n)) for x in range(1,10)] l = sorted([str(x) for x in l if x>0]) print (' '.join(l)) ```
0
118
A
String Task
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
Petya started to attend programming lessons. On the first lesson his task was to write a simple program. The program was supposed to do the following: in the given string, consisting if uppercase and lowercase Latin letters, it: - deletes all the vowels, - inserts a character "." before each consonant, - replaces ...
The first line represents input string of Petya's program. This string only consists of uppercase and lowercase Latin letters and its length is from 1 to 100, inclusive.
Print the resulting string. It is guaranteed that this string is not empty.
[ "tour\n", "Codeforces\n", "aBAcAba\n" ]
[ ".t.r\n", ".c.d.f.r.c.s\n", ".b.c.b\n" ]
none
500
[ { "input": "tour", "output": ".t.r" }, { "input": "Codeforces", "output": ".c.d.f.r.c.s" }, { "input": "aBAcAba", "output": ".b.c.b" }, { "input": "obn", "output": ".b.n" }, { "input": "wpwl", "output": ".w.p.w.l" }, { "input": "ggdvq", "output": "...
1,696,329,742
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
62
0
#蒋世刚2300016304 def ana(x): if x=='a' or x=='e' or x=='i' or x=='o' or x=='u': return True s=input() for i in s: if ana(i): s=s.replace(i,'') else: s=s.replace(i,'.'+i) print(s)
Title: String Task Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya started to attend programming lessons. On the first lesson his task was to write a simple program. The program was supposed to do the following: in the given string, consisting if uppercase and lowercase Latin letters...
```python #蒋世刚2300016304 def ana(x): if x=='a' or x=='e' or x=='i' or x=='o' or x=='u': return True s=input() for i in s: if ana(i): s=s.replace(i,'') else: s=s.replace(i,'.'+i) print(s) ```
0
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,664,732,164
2,147,483,647
Python 3
OK
TESTS
34
46
1,740,800
n, t = map(int, input().split()) a = list(map(int, input().split())) cur = 1 while cur < t: cur += a[cur - 1] if cur == t: 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 = map(int, input().split()) a = list(map(int, input().split())) cur = 1 while cur < t: cur += a[cur - 1] if cur == t: print("YES") else: print("NO") ```
3
139
A
Petr and Book
PROGRAMMING
1,000
[ "implementation" ]
null
null
One Sunday Petr went to a bookshop and bought a new book on sports programming. The book had exactly *n* pages. Petr decided to start reading it starting from the next day, that is, from Monday. Petr's got a very tight schedule and for each day of the week he knows how many pages he will be able to read on that day. S...
The first input line contains the single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of pages in the book. The second line contains seven non-negative space-separated integers that do not exceed 1000 — those integers represent how many pages Petr can read on Monday, Tuesday, Wednesday, Thursday, Friday, Saturday and...
Print a single number — the number of the day of the week, when Petr will finish reading the book. The days of the week are numbered starting with one in the natural order: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday.
[ "100\n15 20 20 15 10 30 45\n", "2\n1 0 0 0 0 0 0\n" ]
[ "6\n", "1\n" ]
Note to the first sample: By the end of Monday and therefore, by the beginning of Tuesday Petr has 85 pages left. He has 65 pages left by Wednesday, 45 by Thursday, 30 by Friday, 20 by Saturday and on Saturday Petr finishes reading the book (and he also has time to read 10 pages of something else). Note to the second...
500
[ { "input": "100\n15 20 20 15 10 30 45", "output": "6" }, { "input": "2\n1 0 0 0 0 0 0", "output": "1" }, { "input": "100\n100 200 100 200 300 400 500", "output": "1" }, { "input": "3\n1 1 1 1 1 1 1", "output": "3" }, { "input": "1\n1 1 1 1 1 1 1", "output": "1...
1,654,575,028
2,147,483,647
Python 3
OK
TESTS
49
92
0
n = int(input()) arr = list(map(int, input().split())) i=0 while(n>0): n=n-arr[i] i = (i+1) % 7 if(i==0): print(len(arr)) else: print(i)
Title: Petr and Book Time Limit: None seconds Memory Limit: None megabytes Problem Description: One Sunday Petr went to a bookshop and bought a new book on sports programming. The book had exactly *n* pages. Petr decided to start reading it starting from the next day, that is, from Monday. Petr's got a very tight s...
```python n = int(input()) arr = list(map(int, input().split())) i=0 while(n>0): n=n-arr[i] i = (i+1) % 7 if(i==0): print(len(arr)) else: print(i) ```
3
664
A
Complicated GCD
PROGRAMMING
800
[ "math", "number theory" ]
null
null
Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find greatest common divisor *GCD*(*a*,<=*b*), for example, Euclid algorithm. Formally, find the biggest in...
The only line of the input contains two integers *a* and *b* (1<=≤<=*a*<=≤<=*b*<=≤<=10100).
Output one integer — greatest common divisor of all integers from *a* to *b* inclusive.
[ "1 2\n", "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576\n" ]
[ "1\n", "61803398874989484820458683436563811772030917980576\n" ]
none
500
[ { "input": "1 2", "output": "1" }, { "input": "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576", "output": "61803398874989484820458683436563811772030917980576" }, { "input": "1 100", "output": "1" }, { "input": "100 100000...
1,680,704,397
2,147,483,647
Python 3
OK
TESTS
28
61
102,400
############ ---- By RealGemechis (Black Tourist) ---- ############ import sys input = sys.stdin.readline import math import bisect from collections import Counter from sys import stdin,stdout from math import gcd,floor,sqrt,log from collections import defaultdict as dd from bisect import bisect_left as bl,bi...
Title: Complicated GCD Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find gre...
```python ############ ---- By RealGemechis (Black Tourist) ---- ############ import sys input = sys.stdin.readline import math import bisect from collections import Counter from sys import stdin,stdout from math import gcd,floor,sqrt,log from collections import defaultdict as dd from bisect import bisect_lef...
3
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,661,513,192
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n = int(input()) d = {} for x in range(n): team = input() d[str(team)] += 1 print(d)
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python n = int(input()) d = {} for x in range(n): team = input() d[str(team)] += 1 print(d) ```
-1
863
A
Quasi-palindrome
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
Let quasi-palindromic number be such number that adding some leading zeros (possible none) to it produces a palindromic string. String *t* is called a palindrome, if it reads the same from left to right and from right to left. For example, numbers 131 and 2010200 are quasi-palindromic, they can be transformed to str...
The first line contains one integer number *x* (1<=≤<=*x*<=≤<=109). This number is given without any leading zeroes.
Print "YES" if number *x* is quasi-palindromic. Otherwise, print "NO" (without quotes).
[ "131\n", "320\n", "2010200\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
0
[ { "input": "131", "output": "YES" }, { "input": "320", "output": "NO" }, { "input": "2010200", "output": "YES" }, { "input": "1", "output": "YES" }, { "input": "1000000000", "output": "YES" }, { "input": "999999999", "output": "YES" }, { "i...
1,615,319,096
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
7
93
0
s=input() s=list(s) while s[-1]=='0': s.pop() p=len(s);d=0 if p%2==0: for i in range(p//2): if s[i]!=s[p-1-i]: d^=1 break else: for i in range((p//2)-1): if s[i]!=s[p-1-i]: d^=1 break print("YES" if d==0 else "NO")
Title: Quasi-palindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let quasi-palindromic number be such number that adding some leading zeros (possible none) to it produces a palindromic string. String *t* is called a palindrome, if it reads the same from left to right and from righ...
```python s=input() s=list(s) while s[-1]=='0': s.pop() p=len(s);d=0 if p%2==0: for i in range(p//2): if s[i]!=s[p-1-i]: d^=1 break else: for i in range((p//2)-1): if s[i]!=s[p-1-i]: d^=1 break print("YES" if d==0 else "NO"...
0
330
A
Cakeminator
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
You are given a rectangular cake, represented as an *r*<=×<=*c* grid. Each cell either has an evil strawberry, or is empty. For example, a 3<=×<=4 cake may look as follows: The cakeminator is going to eat the cake! Each time he eats, he chooses a row or a column that does not contain any evil strawberries and contains...
The first line contains two integers *r* and *c* (2<=≤<=*r*,<=*c*<=≤<=10), denoting the number of rows and the number of columns of the cake. The next *r* lines each contains *c* characters — the *j*-th character of the *i*-th line denotes the content of the cell at row *i* and column *j*, and is either one of these: ...
Output the maximum number of cake cells that the cakeminator can eat.
[ "3 4\nS...\n....\n..S.\n" ]
[ "8\n" ]
For the first example, one possible way to eat the maximum number of cake cells is as follows (perform 3 eats).
500
[ { "input": "3 4\nS...\n....\n..S.", "output": "8" }, { "input": "2 2\n..\n..", "output": "4" }, { "input": "2 2\nSS\nSS", "output": "0" }, { "input": "7 3\nS..\nS..\nS..\nS..\nS..\nS..\nS..", "output": "14" }, { "input": "3 5\n..S..\nSSSSS\n..S..", "output": "...
1,668,801,064
2,147,483,647
Python 3
OK
TESTS
42
92
0
x,y = map(int,input().split()) r = 0 c = 0 p = [] for i in range(x): n = input() if "S" not in n: r+=1 elif "S" in n: for i in range(len(n)): if n[i]=="S" : if i+1 not in p: p.append(i+1) u = r*y h = y - ...
Title: Cakeminator Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a rectangular cake, represented as an *r*<=×<=*c* grid. Each cell either has an evil strawberry, or is empty. For example, a 3<=×<=4 cake may look as follows: The cakeminator is going to eat the cake! Each ti...
```python x,y = map(int,input().split()) r = 0 c = 0 p = [] for i in range(x): n = input() if "S" not in n: r+=1 elif "S" in n: for i in range(len(n)): if n[i]=="S" : if i+1 not in p: p.append(i+1) u = r*y...
3
283
A
Cows and Sequence
PROGRAMMING
1,600
[ "constructive algorithms", "data structures", "implementation" ]
null
null
Bessie and the cows are playing with sequences and need your help. They start with a sequence, initially containing just the number 0, and perform *n* operations. Each operation is one of the following: 1. Add the integer *x**i* to the first *a**i* elements of the sequence. 1. Append an integer *k**i* to the end of ...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=2·105) — the number of operations. The next *n* lines describe the operations. Each line will start with an integer *t**i* (1<=≤<=*t**i*<=≤<=3), denoting the type of the operation (see above). If *t**i*<==<=1, it will be followed by two integers *a**i*,<=*x**i...
Output *n* lines each containing the average of the numbers in the sequence after the corresponding operation. The answer will be considered correct if its absolute or relative error doesn't exceed 10<=-<=6.
[ "5\n2 1\n3\n2 3\n2 1\n3\n", "6\n2 1\n1 2 20\n2 2\n1 2 -3\n3\n3\n" ]
[ "0.500000\n0.000000\n1.500000\n1.333333\n1.500000\n", "0.500000\n20.500000\n14.333333\n12.333333\n17.500000\n17.000000\n" ]
In the second sample, the sequence becomes <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/fb5aaaa5dc516fe540cef52fd153768bfdb941c8.png" style="max-width: 100.0%;max-height: 100.0%;"/>
1,000
[ { "input": "5\n2 1\n3\n2 3\n2 1\n3", "output": "0.500000\n0.000000\n1.500000\n1.333333\n1.500000" }, { "input": "6\n2 1\n1 2 20\n2 2\n1 2 -3\n3\n3", "output": "0.500000\n20.500000\n14.333333\n12.333333\n17.500000\n17.000000" }, { "input": "1\n1 1 1", "output": "1.000000" }, { ...
1,564,409,818
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
108
0
d, ans = [0], [] s = 0 for _ in range(int(input())): cmd = tuple(map(int, input().split())) if cmd[0] == 1: s += cmd[1] * cmd[2] if cmd[1] == len(d): d[-1] += cmd[2] else: d[cmd[1] - 1] -= cmd[2] elif cmd[0] == 2: s += cmd[1] d.ap...
Title: Cows and Sequence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bessie and the cows are playing with sequences and need your help. They start with a sequence, initially containing just the number 0, and perform *n* operations. Each operation is one of the following: 1. Add the i...
```python d, ans = [0], [] s = 0 for _ in range(int(input())): cmd = tuple(map(int, input().split())) if cmd[0] == 1: s += cmd[1] * cmd[2] if cmd[1] == len(d): d[-1] += cmd[2] else: d[cmd[1] - 1] -= cmd[2] elif cmd[0] == 2: s += cmd[1] ...
0
854
A
Fraction
PROGRAMMING
800
[ "brute force", "constructive algorithms", "math" ]
null
null
Petya is a big fan of mathematics, especially its part related to fractions. Recently he learned that a fraction is called proper iff its numerator is smaller than its denominator (*a*<=&lt;<=*b*) and that the fraction is called irreducible if its numerator and its denominator are coprime (they do not have positive co...
In the only line of input there is an integer *n* (3<=≤<=*n*<=≤<=1000), the sum of numerator and denominator of the fraction.
Output two space-separated positive integers *a* and *b*, numerator and denominator of the maximum possible proper irreducible fraction satisfying the given sum.
[ "3\n", "4\n", "12\n" ]
[ "1 2\n", "1 3\n", "5 7\n" ]
none
500
[ { "input": "3", "output": "1 2" }, { "input": "4", "output": "1 3" }, { "input": "12", "output": "5 7" }, { "input": "34", "output": "15 19" }, { "input": "13", "output": "6 7" }, { "input": "11", "output": "5 6" }, { "input": "24", "ou...
1,512,303,769
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
5,529,600
def gcd(a,b): while( a!= b): if a > b: a = a - b if a < b : b = b - a if a == b: return a n = int(input()) for i in range(int(n/2), 1,-1): if gcd(n-i,i) == 1: print(str(i) + " " + str(n-i)) break
Title: Fraction Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya is a big fan of mathematics, especially its part related to fractions. Recently he learned that a fraction is called proper iff its numerator is smaller than its denominator (*a*<=&lt;<=*b*) and that the fraction is cal...
```python def gcd(a,b): while( a!= b): if a > b: a = a - b if a < b : b = b - a if a == b: return a n = int(input()) for i in range(int(n/2), 1,-1): if gcd(n-i,i) == 1: print(str(i) + " " + str(n-i)) break ```
0
231
A
Team
PROGRAMMING
800
[ "brute force", "greedy" ]
null
null
One day three best friends Petya, Vasya and Tonya decided to form a team and take part in programming contests. Participants are usually offered several problems during programming contests. Long before the start the friends decided that they will implement a problem if at least two of them are sure about the solution....
The first input line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of problems in the contest. Then *n* lines contain three integers each, each integer is either 0 or 1. If the first number in the line equals 1, then Petya is sure about the problem's solution, otherwise he isn't sure. The second numbe...
Print a single integer — the number of problems the friends will implement on the contest.
[ "3\n1 1 0\n1 1 1\n1 0 0\n", "2\n1 0 0\n0 1 1\n" ]
[ "2\n", "1\n" ]
In the first sample Petya and Vasya are sure that they know how to solve the first problem and all three of them know how to solve the second problem. That means that they will write solutions for these problems. Only Petya is sure about the solution for the third problem, but that isn't enough, so the friends won't ta...
500
[ { "input": "3\n1 1 0\n1 1 1\n1 0 0", "output": "2" }, { "input": "2\n1 0 0\n0 1 1", "output": "1" }, { "input": "1\n1 0 0", "output": "0" }, { "input": "2\n1 0 0\n1 1 1", "output": "1" }, { "input": "5\n1 0 0\n0 1 0\n1 1 1\n0 0 1\n0 0 0", "output": "1" }, ...
1,699,898,642
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
62
0
n = int(input()) a = b = c = 0 for i in range(n): x = input() if x == '1 1 1' or x == '0 1 1' or x == '1 1 0' or x == '1 0 1': a += 1 elif x == '0 0 1' or x == '1 0 0' or x == '0 1 0': b += 1 else: c += 1 if a > b + c: print(a) elif b > c: print(b) else: print(c)
Title: Team Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day three best friends Petya, Vasya and Tonya decided to form a team and take part in programming contests. Participants are usually offered several problems during programming contests. Long before the start the friends decid...
```python n = int(input()) a = b = c = 0 for i in range(n): x = input() if x == '1 1 1' or x == '0 1 1' or x == '1 1 0' or x == '1 0 1': a += 1 elif x == '0 0 1' or x == '1 0 0' or x == '0 1 0': b += 1 else: c += 1 if a > b + c: print(a) elif b > c: print(b) else: pr...
0
455
A
Boredom
PROGRAMMING
1,500
[ "dp" ]
null
null
Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to play it. Given a sequence *a* consisting of *n* integers. The player can make several steps. In a single step he can choose an element of the sequence (let's denote it *a*...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) that shows how many numbers are in Alex's sequence. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105).
Print a single integer — the maximum number of points that Alex can earn.
[ "2\n1 2\n", "3\n1 2 3\n", "9\n1 2 1 3 2 2 2 2 3\n" ]
[ "2\n", "4\n", "10\n" ]
Consider the third test example. At first step we need to choose any element equal to 2. After that step our sequence looks like this [2, 2, 2, 2]. Then we do 4 steps, on each step we choose any element equals to 2. In total we earn 10 points.
500
[ { "input": "2\n1 2", "output": "2" }, { "input": "3\n1 2 3", "output": "4" }, { "input": "9\n1 2 1 3 2 2 2 2 3", "output": "10" }, { "input": "5\n3 3 4 5 4", "output": "11" }, { "input": "5\n5 3 5 3 4", "output": "16" }, { "input": "5\n4 2 3 2 5", ...
1,673,939,899
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
31
0
n = int(input()) a = str(input()).split(" ") a = [int(i) for i in a] # counter c = [0 for i in range(max(a)+1)] for i in a: c[i] += 1 c = list(enumerate(c)) # print(c) score = [-1 for i in range(n+1)] score[0] = 0 for i in range(1, n+1): # i = last i elements # print(score) if i == 1: score[1] ...
Title: Boredom Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to play it. Given a sequence *a* consisting of *n* integers. The player can make ...
```python n = int(input()) a = str(input()).split(" ") a = [int(i) for i in a] # counter c = [0 for i in range(max(a)+1)] for i in a: c[i] += 1 c = list(enumerate(c)) # print(c) score = [-1 for i in range(n+1)] score[0] = 0 for i in range(1, n+1): # i = last i elements # print(score) if i == 1: ...
-1
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,621,212,856
2,147,483,647
PyPy 3
OK
TESTS
34
248
307,200
import sys from os import path if(path.exists('input.txt')): sys.stdin = open('input.txt', 'r') sys.stdout = open('output.txt', 'w') # sys.stdin.readline().rstrip() #n, m = map(int, input().split()) from collections import defaultdict n = int(input()) m = defaultdict(int) for i in range(n)...
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python import sys from os import path if(path.exists('input.txt')): sys.stdin = open('input.txt', 'r') sys.stdout = open('output.txt', 'w') # sys.stdin.readline().rstrip() #n, m = map(int, input().split()) from collections import defaultdict n = int(input()) m = defaultdict(int) for i i...
3.937428
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,568,149,694
2,147,483,647
PyPy 3
OK
TESTS
32
310
0
n=int(input()) inp=input().split() l=[] for i in range(len(inp)): l.append(int(inp[i])) l1=[] l2=[] for i in range(len(l)): if(l[i]%2==0): l2.append((l[i],i+1)) else: l1.append((l[i],i+1)) if(len(l2)==1): print(l2[0][1]) else: print(l1[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()) inp=input().split() l=[] for i in range(len(inp)): l.append(int(inp[i])) l1=[] l2=[] for i in range(len(l)): if(l[i]%2==0): l2.append((l[i],i+1)) else: l1.append((l[i],i+1)) if(len(l2)==1): print(l2[0][1]) else: print(l1[0][1]) ``...
3.9225
489
B
BerSU Ball
PROGRAMMING
1,200
[ "dfs and similar", "dp", "graph matchings", "greedy", "sortings", "two pointers" ]
null
null
The Berland State University is hosting a ballroom dance in celebration of its 100500-th anniversary! *n* boys and *m* girls are already busy rehearsing waltz, minuet, polonaise and quadrille moves. We know that several boy&amp;girl pairs are going to be invited to the ball. However, the partners' dancing skill in eac...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of boys. The second line contains sequence *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100), where *a**i* is the *i*-th boy's dancing skill. Similarly, the third line contains an integer *m* (1<=≤<=*m*<=≤<=100) — the number of girls. The fourth l...
Print a single number — the required maximum possible number of pairs.
[ "4\n1 4 6 2\n5\n5 1 5 7 9\n", "4\n1 2 3 4\n4\n10 11 12 13\n", "5\n1 1 1 1 1\n3\n1 2 3\n" ]
[ "3\n", "0\n", "2\n" ]
none
1,000
[ { "input": "4\n1 4 6 2\n5\n5 1 5 7 9", "output": "3" }, { "input": "4\n1 2 3 4\n4\n10 11 12 13", "output": "0" }, { "input": "5\n1 1 1 1 1\n3\n1 2 3", "output": "2" }, { "input": "1\n1\n1\n1", "output": "1" }, { "input": "2\n1 10\n1\n9", "output": "1" }, {...
1,678,356,184
2,147,483,647
Python 3
OK
TESTS
81
46
0
n = int(input()) boys = list(map(int,input().split())) m = int(input()) girls = list(map(int,input().split())) boys = sorted(boys) girls = sorted(girls) c = 0 i = 0 j = 0 while i <n and j<m: if abs(boys[i]-girls[j])<2: c += 1 i += 1 j += 1 elif boys[i]>girls[j]: j ...
Title: BerSU Ball Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Berland State University is hosting a ballroom dance in celebration of its 100500-th anniversary! *n* boys and *m* girls are already busy rehearsing waltz, minuet, polonaise and quadrille moves. We know that several boy...
```python n = int(input()) boys = list(map(int,input().split())) m = int(input()) girls = list(map(int,input().split())) boys = sorted(boys) girls = sorted(girls) c = 0 i = 0 j = 0 while i <n and j<m: if abs(boys[i]-girls[j])<2: c += 1 i += 1 j += 1 elif boys[i]>girls[j]: ...
3
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,677,464,027
2,147,483,647
Python 3
OK
TESTS
20
46
0
n, m, a = map(int, input().split()) row = n // a col = m // a if n % a != 0: row += 1 if m % a != 0: col += 1 print(row * col)
Title: Theatre Square Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each ...
```python n, m, a = map(int, input().split()) row = n // a col = m // a if n % a != 0: row += 1 if m % a != 0: col += 1 print(row * col) ```
3.977
688
B
Lovely Palindromes
PROGRAMMING
1,000
[ "constructive algorithms", "math" ]
null
null
Pari has a friend who loves palindrome numbers. A palindrome number is a number that reads the same forward or backward. For example 12321, 100001 and 1 are palindrome numbers, while 112 and 1021 are not. Pari is trying to love them too, but only very special and gifted people can understand the beauty behind palindro...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=10100<=000).
Print the *n*-th even-length palindrome number.
[ "1\n", "10\n" ]
[ "11\n", "1001\n" ]
The first 10 even-length palindrome numbers are 11, 22, 33, ... , 88, 99 and 1001.
1,000
[ { "input": "1", "output": "11" }, { "input": "10", "output": "1001" }, { "input": "11", "output": "1111" }, { "input": "12", "output": "1221" }, { "input": "100", "output": "100001" }, { "input": "1321", "output": "13211231" }, { "input": "...
1,685,431,459
2,147,483,647
PyPy 3-64
OK
TESTS
40
46
409,600
s=input() print(s[::]+s[::-1])
Title: Lovely Palindromes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pari has a friend who loves palindrome numbers. A palindrome number is a number that reads the same forward or backward. For example 12321, 100001 and 1 are palindrome numbers, while 112 and 1021 are not. Pari is tr...
```python s=input() print(s[::]+s[::-1]) ```
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,611,987,195
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
92
204,800
x,y=map(int,input().split()) s=max(x,y) sum=0 for i in range(s,7): sum=sum+1 if sum%2==0: sum=int(sum//2) print(sum,"/","3",sep="") elif sum%3==0: sum=int(sum//3) print(sum,"/","2",sep="") elif sum==1: print(sum,"/","6",sep="")
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 x,y=map(int,input().split()) s=max(x,y) sum=0 for i in range(s,7): sum=sum+1 if sum%2==0: sum=int(sum//2) print(sum,"/","3",sep="") elif sum%3==0: sum=int(sum//3) print(sum,"/","2",sep="") elif sum==1: print(sum,"/","6",sep="") ```
0
967
B
Watering System
PROGRAMMING
1,000
[ "math", "sortings" ]
null
null
Arkady wants to water his only flower. Unfortunately, he has a very poor watering system that was designed for $n$ flowers and so it looks like a pipe with $n$ holes. Arkady can only use the water that flows from the first hole. Arkady can block some of the holes, and then pour $A$ liters of water into the pipe. After...
The first line contains three integers $n$, $A$, $B$ ($1 \le n \le 100\,000$, $1 \le B \le A \le 10^4$) — the number of holes, the volume of water Arkady will pour into the system, and the volume he wants to get out of the first hole. The second line contains $n$ integers $s_1, s_2, \ldots, s_n$ ($1 \le s_i \le 10^4$)...
Print a single integer — the number of holes Arkady should block.
[ "4 10 3\n2 2 2 2\n", "4 80 20\n3 2 1 4\n", "5 10 10\n1000 1 1 1 1\n" ]
[ "1\n", "0\n", "4\n" ]
In the first example Arkady should block at least one hole. After that, $\frac{10 \cdot 2}{6} \approx 3.333$ liters of water will flow out of the first hole, and that suits Arkady. In the second example even without blocking any hole, $\frac{80 \cdot 3}{10} = 24$ liters will flow out of the first hole, that is not les...
1,000
[ { "input": "4 10 3\n2 2 2 2", "output": "1" }, { "input": "4 80 20\n3 2 1 4", "output": "0" }, { "input": "5 10 10\n1000 1 1 1 1", "output": "4" }, { "input": "10 300 100\n20 1 3 10 8 5 3 6 4 3", "output": "1" }, { "input": "10 300 100\n20 25 68 40 60 37 44 85 23 ...
1,589,789,240
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
93
6,963,200
import math n,a,b=map(int,input().split())#5 10 10 c=list(map(int,input().split()))#1000 1 1 1 val=math.floor(((c[0]*a)/b)-c[0])#4 moves=0 if c[0]*a/sum(c)>=b: print(0) else: c.pop(0) c.sort() s=sum(c) while s>val and len(c)!=0: s-=c.pop() moves+=1 print("mov",moves...
Title: Watering System Time Limit: None seconds Memory Limit: None megabytes Problem Description: Arkady wants to water his only flower. Unfortunately, he has a very poor watering system that was designed for $n$ flowers and so it looks like a pipe with $n$ holes. Arkady can only use the water that flows from the fi...
```python import math n,a,b=map(int,input().split())#5 10 10 c=list(map(int,input().split()))#1000 1 1 1 val=math.floor(((c[0]*a)/b)-c[0])#4 moves=0 if c[0]*a/sum(c)>=b: print(0) else: c.pop(0) c.sort() s=sum(c) while s>val and len(c)!=0: s-=c.pop() moves+=1 print("...
0
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,609,681,619
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
372
2,252,800
import sys,os,io,time,copy,math from collections import deque if os.path.exists('input.txt'): sys.stdin = open('input.txt', 'r') sys.stdout = open('output.txt', 'w') def Z_arr(string): n = len(string) z=[0]*n l, r, k = 0, 0, 0 for i in range(1, n): if i > r: ...
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 import sys,os,io,time,copy,math from collections import deque if os.path.exists('input.txt'): sys.stdin = open('input.txt', 'r') sys.stdout = open('output.txt', 'w') def Z_arr(string): n = len(string) z=[0]*n l, r, k = 0, 0, 0 for i in range(1, n): if i > r: ...
0
899
A
Splitting in Teams
PROGRAMMING
800
[ "constructive algorithms", "greedy", "math" ]
null
null
There were *n* groups of students which came to write a training contest. A group is either one person who can write the contest with anyone else, or two people who want to write the contest in the same team. The coach decided to form teams of exactly three people for this training. Determine the maximum number of tea...
The first line contains single integer *n* (2<=≤<=*n*<=≤<=2·105) — the number of groups. The second line contains a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=2), where *a**i* is the number of people in group *i*.
Print the maximum number of teams of three people the coach can form.
[ "4\n1 1 2 1\n", "2\n2 2\n", "7\n2 2 2 1 1 1 1\n", "3\n1 1 1\n" ]
[ "1\n", "0\n", "3\n", "1\n" ]
In the first example the coach can form one team. For example, he can take students from the first, second and fourth groups. In the second example he can't make a single team. In the third example the coach can form three teams. For example, he can do this in the following way: - The first group (of two people) an...
500
[ { "input": "4\n1 1 2 1", "output": "1" }, { "input": "2\n2 2", "output": "0" }, { "input": "7\n2 2 2 1 1 1 1", "output": "3" }, { "input": "3\n1 1 1", "output": "1" }, { "input": "3\n2 2 2", "output": "0" }, { "input": "3\n1 2 1", "output": "1" }...
1,632,040,481
2,147,483,647
Python 3
OK
TESTS
67
124
10,752,000
n = int(input()) li = list(map(int, input().split())) new = {1:0, 2:0} for i in li: new[i] += 1 if new[1] > new[2]: print(new[2] + (new[1] - new[2])//3) else: print(new[1])
Title: Splitting in Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: There were *n* groups of students which came to write a training contest. A group is either one person who can write the contest with anyone else, or two people who want to write the contest in the same team. The co...
```python n = int(input()) li = list(map(int, input().split())) new = {1:0, 2:0} for i in li: new[i] += 1 if new[1] > new[2]: print(new[2] + (new[1] - new[2])//3) else: print(new[1]) ```
3
439
A
Devu, the Singer and Churu, the Joker
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
Devu is a renowned classical singer. He is invited to many big functions/festivals. Recently he was invited to "All World Classical Singing Festival". Other than Devu, comedian Churu was also invited. Devu has provided organizers a list of the songs and required time for singing them. He will sing *n* songs, *i**th* s...
The first line contains two space separated integers *n*, *d* (1<=≤<=*n*<=≤<=100; 1<=≤<=*d*<=≤<=10000). The second line contains *n* space-separated integers: *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=100).
If there is no way to conduct all the songs of Devu, output -1. Otherwise output the maximum number of jokes that Churu can crack in the grand event.
[ "3 30\n2 2 1\n", "3 20\n2 1 1\n" ]
[ "5\n", "-1\n" ]
Consider the first example. The duration of the event is 30 minutes. There could be maximum 5 jokes in the following way: - First Churu cracks a joke in 5 minutes. - Then Devu performs the first song for 2 minutes. - Then Churu cracks 2 jokes in 10 minutes. - Now Devu performs second song for 2 minutes. - Then Ch...
500
[ { "input": "3 30\n2 2 1", "output": "5" }, { "input": "3 20\n2 1 1", "output": "-1" }, { "input": "50 10000\n5 4 10 9 9 6 7 7 7 3 3 7 7 4 7 4 10 10 1 7 10 3 1 4 5 7 2 10 10 10 2 3 4 7 6 1 8 4 7 3 8 8 4 10 1 1 9 2 6 1", "output": "1943" }, { "input": "50 10000\n4 7 15 9 11 12 ...
1,621,200,538
2,147,483,647
PyPy 3
OK
TESTS
26
108
0
import sys def main(): n, d, *l = map(int, sys.stdin.read().strip().split()) t = sum(l) + 10*(len(l)-1) if t > d: return -1 return (len(l) - 1)*2 + (d - t)//5 print(main())
Title: Devu, the Singer and Churu, the Joker Time Limit: None seconds Memory Limit: None megabytes Problem Description: Devu is a renowned classical singer. He is invited to many big functions/festivals. Recently he was invited to "All World Classical Singing Festival". Other than Devu, comedian Churu was also invit...
```python import sys def main(): n, d, *l = map(int, sys.stdin.read().strip().split()) t = sum(l) + 10*(len(l)-1) if t > d: return -1 return (len(l) - 1)*2 + (d - t)//5 print(main()) ```
3
765
A
Neverending competitions
PROGRAMMING
900
[ "implementation", "math" ]
null
null
There are literally dozens of snooker competitions held each year, and team Jinotega tries to attend them all (for some reason they prefer name "snookah")! When a competition takes place somewhere far from their hometown, Ivan, Artsem and Konstantin take a flight to the contest and back. Jinotega's best friends, team ...
In the first line of input there is a single integer *n*: the number of Jinotega's flights (1<=≤<=*n*<=≤<=100). In the second line there is a string of 3 capital Latin letters: the name of Jinotega's home airport. In the next *n* lines there is flight information, one flight per line, in form "XXX-&gt;YYY", where "XXX"...
If Jinotega is now at home, print "home" (without quotes), otherwise print "contest".
[ "4\nSVO\nSVO-&gt;CDG\nLHR-&gt;SVO\nSVO-&gt;LHR\nCDG-&gt;SVO\n", "3\nSVO\nSVO-&gt;HKT\nHKT-&gt;SVO\nSVO-&gt;RAP\n" ]
[ "home\n", "contest\n" ]
In the first sample Jinotega might first fly from SVO to CDG and back, and then from SVO to LHR and back, so now they should be at home. In the second sample Jinotega must now be at RAP because a flight from RAP back to SVO is not on the list.
500
[ { "input": "4\nSVO\nSVO->CDG\nLHR->SVO\nSVO->LHR\nCDG->SVO", "output": "home" }, { "input": "3\nSVO\nSVO->HKT\nHKT->SVO\nSVO->RAP", "output": "contest" }, { "input": "1\nESJ\nESJ->TSJ", "output": "contest" }, { "input": "2\nXMR\nFAJ->XMR\nXMR->FAJ", "output": "home" }, ...
1,487,081,221
2,147,483,647
Python 3
OK
TESTS
23
62
5,324,800
n = int(input()) h = input() d = 0 for i in range(n): a = input().split('->') if a[0] == h: d += 1 if a[1] == h: d -= 1 if d: print("contest") else: print("home")
Title: Neverending competitions Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are literally dozens of snooker competitions held each year, and team Jinotega tries to attend them all (for some reason they prefer name "snookah")! When a competition takes place somewhere far from thei...
```python n = int(input()) h = input() d = 0 for i in range(n): a = input().split('->') if a[0] == h: d += 1 if a[1] == h: d -= 1 if d: print("contest") else: print("home") ```
3
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,593,430,141
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
124
20,172,800
z,o=map(int,input().split()) arr=[] if(z-1>o): print(-1) elif(o==z*2): curr=1 prev=0 for i in range(o+z): if(curr==1 and prev==0): arr.append(curr) curr=1 prev=1 elif(curr==1 and prev==1): arr.append(curr) curr=0 else: arr.append(curr) curr=1 prev=0 elif(o==z): ...
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 z,o=map(int,input().split()) arr=[] if(z-1>o): print(-1) elif(o==z*2): curr=1 prev=0 for i in range(o+z): if(curr==1 and prev==0): arr.append(curr) curr=1 prev=1 elif(curr==1 and prev==1): arr.append(curr) curr=0 else: arr.append(curr) curr=1 prev=0 eli...
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,494,137,486
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
62
0
user_input=int(input()) long_list=[] for i in range(user_input): inputted=input() input_list=inputted.split(' ') extend_list=[] for item in input_list: extend_list.extend([float(item)]) long_list.append(extend_list) apples=0 x=0 apples+=long_list[0][1] x=long_list[0][0] lo...
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 user_input=int(input()) long_list=[] for i in range(user_input): inputted=input() input_list=inputted.split(' ') extend_list=[] for item in input_list: extend_list.extend([float(item)]) long_list.append(extend_list) apples=0 x=0 apples+=long_list[0][1] x=long_list...
0
43
B
Letter
PROGRAMMING
1,100
[ "implementation", "strings" ]
B. Letter
2
256
Vasya decided to write an anonymous letter cutting the letters out of a newspaper heading. He knows heading *s*1 and text *s*2 that he wants to send. Vasya can use every single heading letter no more than once. Vasya doesn't have to cut the spaces out of the heading — he just leaves some blank space to mark them. Help ...
The first line contains a newspaper heading *s*1. The second line contains the letter text *s*2. *s*1 и *s*2 are non-empty lines consisting of spaces, uppercase and lowercase Latin letters, whose lengths do not exceed 200 symbols. The uppercase and lowercase letters should be differentiated. Vasya does not cut spaces o...
If Vasya can write the given anonymous letter, print YES, otherwise print NO
[ "Instead of dogging Your footsteps it disappears but you dont notice anything\nwhere is your dog\n", "Instead of dogging Your footsteps it disappears but you dont notice anything\nYour dog is upstears\n", "Instead of dogging your footsteps it disappears but you dont notice anything\nYour dog is upstears\n", "...
[ "NO\n", "YES\n", "NO\n", "YES\n" ]
none
1,000
[ { "input": "Instead of dogging Your footsteps it disappears but you dont notice anything\nwhere is your dog", "output": "NO" }, { "input": "Instead of dogging Your footsteps it disappears but you dont notice anything\nYour dog is upstears", "output": "YES" }, { "input": "Instead of doggi...
1,584,986,058
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
218
409,600
from collections import Counter l1 = [] l2 = [] s1 = input() s2 = input() for i in range(len(s1)): if(s1[i]==' '): continue l1.append(s1[i]) c1 = Counter(l1) for i in range(len(s2)): if(s2[i]==' '): continue l2.append(s2[i]) c2 = Counter(l2) print(c1) print...
Title: Letter Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya decided to write an anonymous letter cutting the letters out of a newspaper heading. He knows heading *s*1 and text *s*2 that he wants to send. Vasya can use every single heading letter no more than once. Vasya doesn't have to...
```python from collections import Counter l1 = [] l2 = [] s1 = input() s2 = input() for i in range(len(s1)): if(s1[i]==' '): continue l1.append(s1[i]) c1 = Counter(l1) for i in range(len(s2)): if(s2[i]==' '): continue l2.append(s2[i]) c2 = Counter(l2) print(...
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,586,994,084
2,147,483,647
PyPy 3
OK
TESTS
32
280
0
total = int(input()) number_list = input().split() odd = 0 odd_list =[] even = 0 even_list = [] for i in range(total): if int(number_list[i]) % 2 == 0: even += 1 even_list.append(number_list[i]) else: odd += 1 odd_list.append(number_list[i]) if even >= 2 an...
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 total = int(input()) number_list = input().split() odd = 0 odd_list =[] even = 0 even_list = [] for i in range(total): if int(number_list[i]) % 2 == 0: even += 1 even_list.append(number_list[i]) else: odd += 1 odd_list.append(number_list[i]) if ev...
3.93
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,653,412,117
2,147,483,647
Python 3
OK
TESTS
30
92
0
s=input() a=0 l=0 for i in s: if i.isupper(): a=a+1 else: l=l+1 if l>a or l==a: s=s.lower() else: s=s.upper() print(s)
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python s=input() a=0 l=0 for i in s: if i.isupper(): a=a+1 else: l=l+1 if l>a or l==a: s=s.lower() else: s=s.upper() print(s) ```
3.977
131
A
cAPS lOCK
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in the first passage. Let's consider that a word has been typed with the Caps lock key accidentall...
The first line of the input data contains a word consisting of uppercase and lowercase Latin letters. The word's length is from 1 to 100 characters, inclusive.
Print the result of the given word's processing.
[ "cAPS\n", "Lock\n" ]
[ "Caps", "Lock\n" ]
none
500
[ { "input": "cAPS", "output": "Caps" }, { "input": "Lock", "output": "Lock" }, { "input": "cAPSlOCK", "output": "cAPSlOCK" }, { "input": "CAPs", "output": "CAPs" }, { "input": "LoCK", "output": "LoCK" }, { "input": "OOPS", "output": "oops" }, { ...
1,693,244,605
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
s=str(input()) string="" string+=s[0].upper() string+=s[1:].lower() print(string)
Title: cAPS lOCK Time Limit: None seconds Memory Limit: None megabytes Problem Description: wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in th...
```python s=str(input()) string="" string+=s[0].upper() string+=s[1:].lower() print(string) ```
0
535
B
Tavas and SaDDas
PROGRAMMING
1,100
[ "bitmasks", "brute force", "combinatorics", "implementation" ]
null
null
Once again Tavas started eating coffee mix without water! Keione told him that it smells awful, but he didn't stop doing that. That's why Keione told his smart friend, SaDDas to punish him! SaDDas took Tavas' headphones and told him: "If you solve the following problem, I'll return it to you." The problem is: You ar...
The first and only line of input contains a lucky number *n* (1<=≤<=*n*<=≤<=109).
Print the index of *n* among all lucky numbers.
[ "4\n", "7\n", "77\n" ]
[ "1\n", "2\n", "6\n" ]
none
1,000
[ { "input": "4", "output": "1" }, { "input": "7", "output": "2" }, { "input": "77", "output": "6" }, { "input": "4", "output": "1" }, { "input": "474744", "output": "83" }, { "input": "777774", "output": "125" }, { "input": "447", "outpu...
1,566,201,440
2,147,483,647
Python 3
OK
TESTS
33
124
0
# test case 1 # n = 4 # test case 2 # n = 7 # test case 3 # n = 77 # test case 4 # n = 744 # test case 5 # n = 777 n = int(input()) if not 1 <= n <= 10 ** 9: print('ошибка ввода данных') exit(1) number_digits_count = len(str(n)) number_start = 2 ** number_digits_count - 1 number_...
Title: Tavas and SaDDas Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once again Tavas started eating coffee mix without water! Keione told him that it smells awful, but he didn't stop doing that. That's why Keione told his smart friend, SaDDas to punish him! SaDDas took Tavas' headphone...
```python # test case 1 # n = 4 # test case 2 # n = 7 # test case 3 # n = 77 # test case 4 # n = 744 # test case 5 # n = 777 n = int(input()) if not 1 <= n <= 10 ** 9: print('ошибка ввода данных') exit(1) number_digits_count = len(str(n)) number_start = 2 ** number_digits_count - ...
3
931
B
World Cup
PROGRAMMING
1,200
[ "constructive algorithms", "implementation" ]
null
null
The last stage of Football World Cup is played using the play-off system. There are *n* teams left in this stage, they are enumerated from 1 to *n*. Several rounds are held, in each round the remaining teams are sorted in the order of their ids, then the first in this order plays with the second, the third — with the ...
The only line contains three integers *n*, *a* and *b* (2<=≤<=*n*<=≤<=256, 1<=≤<=*a*,<=*b*<=≤<=*n*) — the total number of teams, and the ids of the teams that Arkady is interested in. It is guaranteed that *n* is such that in each round an even number of team advance, and that *a* and *b* are not equal.
In the only line print "Final!" (without quotes), if teams *a* and *b* can meet in the Final. Otherwise, print a single integer — the number of the round in which teams *a* and *b* can meet. The round are enumerated from 1.
[ "4 1 2\n", "8 2 6\n", "8 7 5\n" ]
[ "1\n", "Final!\n", "2\n" ]
In the first example teams 1 and 2 meet in the first round. In the second example teams 2 and 6 can only meet in the third round, which is the Final, if they win all their opponents in earlier rounds. In the third example the teams with ids 7 and 5 can meet in the second round, if they win their opponents in the firs...
1,000
[ { "input": "4 1 2", "output": "1" }, { "input": "8 2 6", "output": "Final!" }, { "input": "8 7 5", "output": "2" }, { "input": "128 30 98", "output": "Final!" }, { "input": "256 128 256", "output": "Final!" }, { "input": "256 2 127", "output": "7" ...
1,560,838,234
2,147,483,647
PyPy 3
OK
TESTS
64
140
0
# ========= /\ /| |====/| # | / \ | | / | # | /____\ | | / | # | / \ | | / | # ========= / \ ===== |/====| # code from math import log2 as lg def f(n,a,b,l,u): if n <= 1: return if a >= l and a <=...
Title: World Cup Time Limit: None seconds Memory Limit: None megabytes Problem Description: The last stage of Football World Cup is played using the play-off system. There are *n* teams left in this stage, they are enumerated from 1 to *n*. Several rounds are held, in each round the remaining teams are sorted in th...
```python # ========= /\ /| |====/| # | / \ | | / | # | /____\ | | / | # | / \ | | / | # ========= / \ ===== |/====| # code from math import log2 as lg def f(n,a,b,l,u): if n <= 1: return if a >= ...
3
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,663,880,740
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
0
1,000
0
ch=input() l=int(ch[0]) c=int(ch[2]) a=int(ch[4]) k=0 while True : if l-a>0 : k+=1 l=l-a if l<=0 : break c=c-a while True : if c-a>0 : k+=1 c=c-a if c<=0 : break print(k) ...
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 ch=input() l=int(ch[0]) c=int(ch[2]) a=int(ch[4]) k=0 while True : if l-a>0 : k+=1 l=l-a if l<=0 : break c=c-a while True : if c-a>0 : k+=1 c=c-a if c<=0 : break print(k) ...
0
456
A
Laptops
PROGRAMMING
1,100
[ "sortings" ]
null
null
One day Dima and Alex had an argument about the price and quality of laptops. Dima thinks that the more expensive a laptop is, the better it is. Alex disagrees. Alex thinks that there are two laptops, such that the price of the first laptop is less (strictly smaller) than the price of the second laptop but the quality ...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=105) — the number of laptops. Next *n* lines contain two integers each, *a**i* and *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*), where *a**i* is the price of the *i*-th laptop, and *b**i* is the number that represents the quality of the *i*-th laptop (the larger the numb...
If Alex is correct, print "Happy Alex", otherwise print "Poor Alex" (without the quotes).
[ "2\n1 2\n2 1\n" ]
[ "Happy Alex\n" ]
none
500
[ { "input": "2\n1 2\n2 1", "output": "Happy Alex" }, { "input": "2\n1 1\n2 2", "output": "Poor Alex" }, { "input": "3\n2 2\n3 3\n1 1", "output": "Poor Alex" }, { "input": "3\n3 3\n1 2\n2 1", "output": "Happy Alex" }, { "input": "1\n1 1", "output": "Poor Alex" ...
1,673,881,008
2,147,483,647
Python 3
OK
TESTS
46
217
0
n = int(input()) stack = [] t = 0 for i in range(0,n): a,b = map(int, input().split()) if a != b: t = 1 if t == 0: print("Poor Alex") else: print("Happy Alex")
Title: Laptops Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Dima and Alex had an argument about the price and quality of laptops. Dima thinks that the more expensive a laptop is, the better it is. Alex disagrees. Alex thinks that there are two laptops, such that the price of the...
```python n = int(input()) stack = [] t = 0 for i in range(0,n): a,b = map(int, input().split()) if a != b: t = 1 if t == 0: print("Poor Alex") else: print("Happy Alex") ```
3
141
A
Amusing Joke
PROGRAMMING
800
[ "implementation", "sortings", "strings" ]
null
null
So, the New Year holidays are over. Santa Claus and his colleagues can take a rest and have guests at last. When two "New Year and Christmas Men" meet, thear assistants cut out of cardboard the letters from the guest's name and the host's name in honor of this event. Then the hung the letters above the main entrance. O...
The input file consists of three lines: the first line contains the guest's name, the second line contains the name of the residence host and the third line contains letters in a pile that were found at the door in the morning. All lines are not empty and contain only uppercase Latin letters. The length of each line do...
Print "YES" without the quotes, if the letters in the pile could be permuted to make the names of the "New Year and Christmas Men". Otherwise, print "NO" without the quotes.
[ "SANTACLAUS\nDEDMOROZ\nSANTAMOROZDEDCLAUS\n", "PAPAINOEL\nJOULUPUKKI\nJOULNAPAOILELUPUKKI\n", "BABBONATALE\nFATHERCHRISTMAS\nBABCHRISTMASBONATALLEFATHER\n" ]
[ "YES\n", "NO\n", "NO\n" ]
In the first sample the letters written in the last line can be used to write the names and there won't be any extra letters left. In the second sample letter "P" is missing from the pile and there's an extra letter "L". In the third sample there's an extra letter "L".
500
[ { "input": "SANTACLAUS\nDEDMOROZ\nSANTAMOROZDEDCLAUS", "output": "YES" }, { "input": "PAPAINOEL\nJOULUPUKKI\nJOULNAPAOILELUPUKKI", "output": "NO" }, { "input": "BABBONATALE\nFATHERCHRISTMAS\nBABCHRISTMASBONATALLEFATHER", "output": "NO" }, { "input": "B\nA\nAB", "output": ...
1,681,546,007
2,147,483,647
Python 3
OK
TESTS
54
154
0
a = input() b = input() c = input() s = [] for i in c: s.append(ord(i)-65) count = [0]*26 for i in s: count[i] += 1 d = a + b s1 = [] count1 = [0]*26 for i in d: s1.append(ord(i)-65) for i in s1: count1[i] += 1 if count == count1: print('YES') else: print('NO')
Title: Amusing Joke Time Limit: None seconds Memory Limit: None megabytes Problem Description: So, the New Year holidays are over. Santa Claus and his colleagues can take a rest and have guests at last. When two "New Year and Christmas Men" meet, thear assistants cut out of cardboard the letters from the guest's nam...
```python a = input() b = input() c = input() s = [] for i in c: s.append(ord(i)-65) count = [0]*26 for i in s: count[i] += 1 d = a + b s1 = [] count1 = [0]*26 for i in d: s1.append(ord(i)-65) for i in s1: count1[i] += 1 if count == count1: print('YES') else: print...
3
224
A
Parallelepiped
PROGRAMMING
1,100
[ "brute force", "geometry", "math" ]
null
null
You've got a rectangular parallelepiped with integer edge lengths. You know the areas of its three faces that have a common vertex. Your task is to find the sum of lengths of all 12 edges of this parallelepiped.
The first and the single line contains three space-separated integers — the areas of the parallelepiped's faces. The area's values are positive (<=&gt;<=0) and do not exceed 104. It is guaranteed that there exists at least one parallelepiped that satisfies the problem statement.
Print a single number — the sum of all edges of the parallelepiped.
[ "1 1 1\n", "4 6 6\n" ]
[ "12\n", "28\n" ]
In the first sample the parallelepiped has sizes 1 × 1 × 1, in the second one — 2 × 2 × 3.
500
[ { "input": "1 1 1", "output": "12" }, { "input": "4 6 6", "output": "28" }, { "input": "20 10 50", "output": "68" }, { "input": "9 4 36", "output": "56" }, { "input": "324 9 36", "output": "184" }, { "input": "1333 93 129", "output": "308" }, {...
1,694,546,074
2,147,483,647
PyPy 3-64
OK
TESTS
27
124
0
import math from collections import Counter import io,os # input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline # for _ in range(int(input())): a, b, c = map(int, input().split()) s = math.sqrt(a*b*c) a1 = s/a b1 = s/b c1 = s/c print(int((a1+b1+c1)*4)) # for _ in range(int(input())): # grid...
Title: Parallelepiped Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a rectangular parallelepiped with integer edge lengths. You know the areas of its three faces that have a common vertex. Your task is to find the sum of lengths of all 12 edges of this parallelepiped. Input S...
```python import math from collections import Counter import io,os # input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline # for _ in range(int(input())): a, b, c = map(int, input().split()) s = math.sqrt(a*b*c) a1 = s/a b1 = s/b c1 = s/c print(int((a1+b1+c1)*4)) # for _ in range(int(input())...
3
745
A
Hongcow Learns the Cyclic Shift
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has decided to try to make new words from this one. He starts by taking the word he just learned how to spell, and moves the last character ...
The first line of input will be a single string *s* (1<=≤<=|*s*|<=≤<=50), the word Hongcow initially learns how to spell. The string *s* consists only of lowercase English letters ('a'–'z').
Output a single integer equal to the number of distinct strings that Hongcow can obtain by applying the cyclic shift arbitrarily many times to the given string.
[ "abcd\n", "bbb\n", "yzyz\n" ]
[ "4\n", "1\n", "2\n" ]
For the first sample, the strings Hongcow can generate are "abcd", "dabc", "cdab", and "bcda". For the second sample, no matter how many times Hongcow does the cyclic shift, Hongcow can only generate "bbb". For the third sample, the two strings Hongcow can generate are "yzyz" and "zyzy".
500
[ { "input": "abcd", "output": "4" }, { "input": "bbb", "output": "1" }, { "input": "yzyz", "output": "2" }, { "input": "abcdefghijklmnopqrstuvwxyabcdefghijklmnopqrstuvwxy", "output": "25" }, { "input": "zclkjadoprqronzclkjadoprqronzclkjadoprqron", "output": "14...
1,482,045,434
2,147,483,647
Python 3
OK
TESTS
28
77
0
s=input() p=set() for i in range(100): if s not in p: p.add(s) s=s[-1]+s[:len(s)-1] print(len(p))
Title: Hongcow Learns the Cyclic Shift Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has decided to try to m...
```python s=input() p=set() for i in range(100): if s not in p: p.add(s) s=s[-1]+s[:len(s)-1] print(len(p)) ```
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,692,906,408
2,147,483,647
PyPy 3
OK
TESTS
30
186
0
n=int(input()) m=list(map(int,input().split())) k=0 for i in m : k+=i p=0 for i in range(1,6): if (k+i) % (n+1) != 1 : p+=1 print(p)
Title: Dima and Friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dima and his friends have been playing hide and seek at Dima's place all night. As a result, Dima's place got messy. In the morning they decided that they need to clean the place. To decide who exactly would clean the...
```python n=int(input()) m=list(map(int,input().split())) k=0 for i in m : k+=i p=0 for i in range(1,6): if (k+i) % (n+1) != 1 : p+=1 print(p) ```
3
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,610,777,313
2,147,483,647
Python 3
OK
TESTS
30
124
0
n = input() c = 0 l = 0 for i in n: if i.isupper() : c = c + 1 else: l = l + 1 if c>l: print(n.upper()) else: print(n.lower())
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python n = input() c = 0 l = 0 for i in n: if i.isupper() : c = c + 1 else: l = l + 1 if c>l: print(n.upper()) else: print(n.lower()) ```
3.969
807
A
Is it rated?
PROGRAMMING
900
[ "implementation", "sortings" ]
null
null
Is it rated? Here it is. The Ultimate Question of Competitive Programming, Codeforces, and Everything. And you are here to answer it. Another Codeforces round has been conducted. No two participants have the same number of points. For each participant, from the top to the bottom of the standings, their rating before ...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=1000) — the number of round participants. Each of the next *n* lines contains two integers *a**i* and *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=4126) — the rating of the *i*-th participant before and after the round, respectively. The participants are listed in order...
If the round is rated for sure, print "rated". If the round is unrated for sure, print "unrated". If it's impossible to determine whether the round is rated or not, print "maybe".
[ "6\n3060 3060\n2194 2194\n2876 2903\n2624 2624\n3007 2991\n2884 2884\n", "4\n1500 1500\n1300 1300\n1200 1200\n1400 1400\n", "5\n3123 3123\n2777 2777\n2246 2246\n2246 2246\n1699 1699\n" ]
[ "rated\n", "unrated\n", "maybe\n" ]
In the first example, the ratings of the participants in the third and fifth places have changed, therefore, the round was rated. In the second example, no one's rating has changed, but the participant in the second place has lower rating than the participant in the fourth place. Therefore, if the round was rated, som...
500
[ { "input": "6\n3060 3060\n2194 2194\n2876 2903\n2624 2624\n3007 2991\n2884 2884", "output": "rated" }, { "input": "4\n1500 1500\n1300 1300\n1200 1200\n1400 1400", "output": "unrated" }, { "input": "5\n3123 3123\n2777 2777\n2246 2246\n2246 2246\n1699 1699", "output": "maybe" }, { ...
1,637,592,106
2,147,483,647
Python 3
OK
TESTS
150
62
0
n=int(input()) L=[] flage=0 for i in range(n): before,after=list(map(int, input().split())) if before!=after: flage=1 else: L.append(before) if flage ==1: print('rated') else: new_L= sorted(L,reverse=True) if L==new_L: print("maybe") else: print("unrated")
Title: Is it rated? Time Limit: None seconds Memory Limit: None megabytes Problem Description: Is it rated? Here it is. The Ultimate Question of Competitive Programming, Codeforces, and Everything. And you are here to answer it. Another Codeforces round has been conducted. No two participants have the same number ...
```python n=int(input()) L=[] flage=0 for i in range(n): before,after=list(map(int, input().split())) if before!=after: flage=1 else: L.append(before) if flage ==1: print('rated') else: new_L= sorted(L,reverse=True) if L==new_L: print("maybe") else: print("unrated") ```
3
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,539,988,083
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
186
0
n = input() n = int(n) a = [int(x) for x in input().split()] if a[0]%2 == a[1]%2 == 0: for i in range(0 , n , 1): if a[i]%2 != 0: print(i+1) if a[0]%2 == a[1]%2 != 0: for i in range(0 , n , 1): if a[i]%2 == 0: print(i+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 = input() n = int(n) a = [int(x) for x in input().split()] if a[0]%2 == a[1]%2 == 0: for i in range(0 , n , 1): if a[i]%2 != 0: print(i+1) if a[0]%2 == a[1]%2 != 0: for i in range(0 , n , 1): if a[i]%2 == 0: print(i+1) ```
0
681
A
A Good Contest
PROGRAMMING
800
[ "implementation" ]
null
null
Codeforces user' handle color depends on his rating — it is red if his rating is greater or equal to 2400; it is orange if his rating is less than 2400 but greater or equal to 2200, etc. Each time participant takes part in a rated contest, his rating is changed depending on his performance. Anton wants the color of hi...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of participants Anton has outscored in this contest . The next *n* lines describe participants results: the *i*-th of them consists of a participant handle *name**i* and two integers *before**i* and *after**i* (<=-<=4000<=≤<=*be...
Print «YES» (quotes for clarity), if Anton has performed good in the contest and «NO» (quotes for clarity) otherwise.
[ "3\nBurunduk1 2526 2537\nBudAlNik 2084 2214\nsubscriber 2833 2749\n", "3\nApplejack 2400 2400\nFluttershy 2390 2431\nPinkie_Pie -2500 -2450\n" ]
[ "YES", "NO" ]
In the first sample, Anton has outscored user with handle Burunduk1, whose handle was colored red before the contest and his rating has increased after the contest. In the second sample, Applejack's rating has not increased after the contest, while both Fluttershy's and Pinkie_Pie's handles were not colored red before...
500
[ { "input": "3\nBurunduk1 2526 2537\nBudAlNik 2084 2214\nsubscriber 2833 2749", "output": "YES" }, { "input": "3\nApplejack 2400 2400\nFluttershy 2390 2431\nPinkie_Pie -2500 -2450", "output": "NO" }, { "input": "1\nDb -3373 3591", "output": "NO" }, { "input": "5\nQ2bz 960 2342...
1,679,552,756
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
n = int(input()) max_red_rating = 2400 for i in range(n): handle, before, after = input().split() before = int(before) after = int(after) if before >= max_red_rating and after > before: print("YES") exit() if before >= 2400: max_red_rating = max(max_red_rating, befo...
Title: A Good Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Codeforces user' handle color depends on his rating — it is red if his rating is greater or equal to 2400; it is orange if his rating is less than 2400 but greater or equal to 2200, etc. Each time participant takes part ...
```python n = int(input()) max_red_rating = 2400 for i in range(n): handle, before, after = input().split() before = int(before) after = int(after) if before >= max_red_rating and after > before: print("YES") exit() if before >= 2400: max_red_rating = max(max_red_ra...
0
217
A
Ice Skating
PROGRAMMING
1,200
[ "brute force", "dfs and similar", "dsu", "graphs" ]
null
null
Bajtek is learning to skate on ice. He's a beginner, so his only mode of transportation is pushing off from a snow drift to the north, east, south or west and sliding until he lands in another snow drift. He has noticed that in this way it's impossible to get from some snow drifts to some other by any sequence of moves...
The first line of input contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of snow drifts. Each of the following *n* lines contains two integers *x**i* and *y**i* (1<=≤<=*x**i*,<=*y**i*<=≤<=1000) — the coordinates of the *i*-th snow drift. Note that the north direction coinсides with the direction of *Oy* ...
Output the minimal number of snow drifts that need to be created in order for Bajtek to be able to reach any snow drift from any other one.
[ "2\n2 1\n1 2\n", "2\n2 1\n4 1\n" ]
[ "1\n", "0\n" ]
none
500
[ { "input": "2\n2 1\n1 2", "output": "1" }, { "input": "2\n2 1\n4 1", "output": "0" }, { "input": "24\n171 35\n261 20\n4 206\n501 446\n961 912\n581 748\n946 978\n463 514\n841 889\n341 466\n842 967\n54 102\n235 261\n925 889\n682 672\n623 636\n268 94\n635 710\n474 510\n697 794\n586 663\n182...
1,647,782,143
2,147,483,647
Python 3
OK
TESTS
76
124
716,800
from typing import List, Dict, Tuple def dfs(v: List[List[int]], visit: List[bool], start: int): visit[start - 1] = True for i in range(0, len(v[start-1])): if not visit[v[start - 1][i] - 1]: dfs(v, visit, v[start - 1][i]) def main(): amount: int = int(input().strip()) ...
Title: Ice Skating Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bajtek is learning to skate on ice. He's a beginner, so his only mode of transportation is pushing off from a snow drift to the north, east, south or west and sliding until he lands in another snow drift. He has noticed tha...
```python from typing import List, Dict, Tuple def dfs(v: List[List[int]], visit: List[bool], start: int): visit[start - 1] = True for i in range(0, len(v[start-1])): if not visit[v[start - 1][i] - 1]: dfs(v, visit, v[start - 1][i]) def main(): amount: int = int(input().strip(...
3
750
A
New Year and Hurry
PROGRAMMING
800
[ "binary search", "brute force", "implementation", "math" ]
null
null
Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem 1 is the easiest and problem *n* is the hardest. Limak knows it will take him 5·*i* minutes to solve th...
The only line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=10, 1<=≤<=*k*<=≤<=240) — the number of the problems in the contest and the number of minutes Limak needs to get to the party from his house.
Print one integer, denoting the maximum possible number of problems Limak can solve so that he could get to the party at midnight or earlier.
[ "3 222\n", "4 190\n", "7 1\n" ]
[ "2\n", "4\n", "7\n" ]
In the first sample, there are 3 problems and Limak needs 222 minutes to get to the party. The three problems require 5, 10 and 15 minutes respectively. Limak can spend 5 + 10 = 15 minutes to solve first two problems. Then, at 20:15 he can leave his house to get to the party at 23:57 (after 222 minutes). In this scenar...
500
[ { "input": "3 222", "output": "2" }, { "input": "4 190", "output": "4" }, { "input": "7 1", "output": "7" }, { "input": "10 135", "output": "6" }, { "input": "10 136", "output": "5" }, { "input": "1 1", "output": "1" }, { "input": "1 240", ...
1,681,827,468
2,147,483,647
Python 3
OK
TESTS
52
62
0
n,time=map(int,input().split()) count=0 k=0 i=1 while k+time<240 and i<=n: k+=i*5 if k+time<=240: count+=1 i+=1 print(count)
Title: New Year and Hurry Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem...
```python n,time=map(int,input().split()) count=0 k=0 i=1 while k+time<240 and i<=n: k+=i*5 if k+time<=240: count+=1 i+=1 print(count) ```
3
979
A
Pizza, Pizza, Pizza!!!
PROGRAMMING
1,000
[ "math" ]
null
null
Katie, Kuro and Shiro are best friends. They have known each other since kindergarten. That's why they often share everything with each other and work together on some very hard problems. Today is Shiro's birthday. She really loves pizza so she wants to invite her friends to the pizza restaurant near her house to cele...
A single line contains one non-negative integer $n$ ($0 \le n \leq 10^{18}$) — the number of Shiro's friends. The circular pizza has to be sliced into $n + 1$ pieces.
A single integer — the number of straight cuts Shiro needs.
[ "3\n", "4\n" ]
[ "2", "5" ]
To cut the round pizza into quarters one has to make two cuts through the center with angle $90^{\circ}$ between them. To cut the round pizza into five equal parts one has to make five cuts.
500
[ { "input": "3", "output": "2" }, { "input": "4", "output": "5" }, { "input": "10", "output": "11" }, { "input": "10000000000", "output": "10000000001" }, { "input": "1234567891", "output": "617283946" }, { "input": "7509213957", "output": "37546069...
1,570,938,697
2,147,483,647
PyPy 3
OK
TESTS
47
139
0
n = int(input()) if (n+1)%2 == 0 or n == 0: print((n+1)//2) else: print(n+1)
Title: Pizza, Pizza, Pizza!!! Time Limit: None seconds Memory Limit: None megabytes Problem Description: Katie, Kuro and Shiro are best friends. They have known each other since kindergarten. That's why they often share everything with each other and work together on some very hard problems. Today is Shiro's birthd...
```python n = int(input()) if (n+1)%2 == 0 or n == 0: print((n+1)//2) else: print(n+1) ```
3
358
A
Dima and Continuous Line
PROGRAMMING
1,400
[ "brute force", "implementation" ]
null
null
Dima and Seryozha live in an ordinary dormitory room for two. One day Dima had a date with his girl and he asked Seryozha to leave the room. As a compensation, Seryozha made Dima do his homework. The teacher gave Seryozha the coordinates of *n* distinct points on the abscissa axis and asked to consecutively connect th...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=103). The second line contains *n* distinct integers *x*1,<=*x*2,<=...,<=*x**n* (<=-<=106<=≤<=*x**i*<=≤<=106) — the *i*-th point has coordinates (*x**i*,<=0). The points are not necessarily sorted by their *x* coordinate.
In the single line print "yes" (without the quotes), if the line has self-intersections. Otherwise, print "no" (without the quotes).
[ "4\n0 10 5 15\n", "4\n0 15 5 10\n" ]
[ "yes\n", "no\n" ]
The first test from the statement is on the picture to the left, the second test is on the picture to the right.
500
[ { "input": "4\n0 10 5 15", "output": "yes" }, { "input": "4\n0 15 5 10", "output": "no" }, { "input": "5\n0 1000 2000 3000 1500", "output": "yes" }, { "input": "5\n-724093 710736 -383722 -359011 439613", "output": "no" }, { "input": "50\n384672 661179 -775591 -989...
1,630,178,043
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
61
6,963,200
n=int(input()) x=list(map(int,input().split())) c=0 for i in range(len(x)-1): for j in range(len(x)-1): if(i!=j): if((x[i]<x[j] and x[j]<x[i+1] and x[i+1]<x[j+1]) or (x[j]<x[i] and x[i]<x[j+1] and x[j+1]<x[i+1])): print("yes") c=1 break ...
Title: Dima and Continuous Line Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dima and Seryozha live in an ordinary dormitory room for two. One day Dima had a date with his girl and he asked Seryozha to leave the room. As a compensation, Seryozha made Dima do his homework. The teacher g...
```python n=int(input()) x=list(map(int,input().split())) c=0 for i in range(len(x)-1): for j in range(len(x)-1): if(i!=j): if((x[i]<x[j] and x[j]<x[i+1] and x[i+1]<x[j+1]) or (x[j]<x[i] and x[i]<x[j+1] and x[j+1]<x[i+1])): print("yes") c=1 ...
0
884
A
Book Reading
PROGRAMMING
800
[ "implementation" ]
null
null
Recently Luba bought a very interesting book. She knows that it will take *t* seconds to read the book. Luba wants to finish reading as fast as she can. But she has some work to do in each of *n* next days. The number of seconds that Luba has to spend working during *i*-th day is *a**i*. If some free time remains, she...
The first line contains two integers *n* and *t* (1<=≤<=*n*<=≤<=100, 1<=≤<=*t*<=≤<=106) — the number of days and the time required to read the book. The second line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=86400) — the time Luba has to spend on her work during *i*-th day.
Print the minimum day Luba can finish reading the book. It is guaranteed that answer doesn't exceed *n*.
[ "2 2\n86400 86398\n", "2 86400\n0 86400\n" ]
[ "2\n", "1\n" ]
none
0
[ { "input": "2 2\n86400 86398", "output": "2" }, { "input": "2 86400\n0 86400", "output": "1" }, { "input": "2 86400\n1 86399", "output": "2" }, { "input": "100 1000000\n0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
1,592,056,697
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
124
0
n,t=map(int,input().split()) l=list(map(int,input().split())) for i in range(len(l)): if (86400-l[i])>=t: print(i+1) break
Title: Book Reading Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently Luba bought a very interesting book. She knows that it will take *t* seconds to read the book. Luba wants to finish reading as fast as she can. But she has some work to do in each of *n* next days. The number of ...
```python n,t=map(int,input().split()) l=list(map(int,input().split())) for i in range(len(l)): if (86400-l[i])>=t: print(i+1) break ```
0
246
D
Colorful Graph
PROGRAMMING
1,600
[ "brute force", "dfs and similar", "graphs" ]
null
null
You've got an undirected graph, consisting of *n* vertices and *m* edges. We will consider the graph's vertices numbered with integers from 1 to *n*. Each vertex of the graph has a color. The color of the *i*-th vertex is an integer *c**i*. Let's consider all vertices of the graph, that are painted some color *k*. Let...
The first line contains two space-separated integers *n*,<=*m* (1<=≤<=*n*,<=*m*<=≤<=105) — the number of vertices end edges of the graph, correspondingly. The second line contains a sequence of integers *c*1,<=*c*2,<=...,<=*c**n* (1<=≤<=*c**i*<=≤<=105) — the colors of the graph vertices. The numbers on the line are sep...
Print the number of the color which has the set of neighbours with the maximum cardinality. It there are multiple optimal colors, print the color with the minimum number. Please note, that you want to find such color, that the graph has at least one vertex with such color.
[ "6 6\n1 1 2 3 5 8\n1 2\n3 2\n1 4\n4 3\n4 5\n4 6\n", "5 6\n4 2 5 2 4\n1 2\n2 3\n3 1\n5 3\n5 4\n3 4\n" ]
[ "3\n", "2\n" ]
none
2,000
[ { "input": "6 6\n1 1 2 3 5 8\n1 2\n3 2\n1 4\n4 3\n4 5\n4 6", "output": "3" }, { "input": "5 6\n4 2 5 2 4\n1 2\n2 3\n3 1\n5 3\n5 4\n3 4", "output": "2" }, { "input": "3 1\n13 13 4\n1 2", "output": "4" }, { "input": "2 1\n500 300\n1 2", "output": "300" }, { "input":...
1,678,873,256
2,147,483,647
PyPy 3
OK
TESTS
37
1,964
21,094,400
n,m=map(int,input().split()) col=list(map(int,input().split())) cs=set(col) cnt=[None]*100001 for i in range(100001): cnt[i]=set() for i in range(m): u,v=map(int,input().split()) if(col[u-1]!=col[v-1]): cnt[col[u-1]].add(col[v-1]) cnt[col[v-1]].add(col[u-1]) ans=-1 mx=-1 for i in range(100001): if...
Title: Colorful Graph Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got an undirected graph, consisting of *n* vertices and *m* edges. We will consider the graph's vertices numbered with integers from 1 to *n*. Each vertex of the graph has a color. The color of the *i*-th vertex i...
```python n,m=map(int,input().split()) col=list(map(int,input().split())) cs=set(col) cnt=[None]*100001 for i in range(100001): cnt[i]=set() for i in range(m): u,v=map(int,input().split()) if(col[u-1]!=col[v-1]): cnt[col[u-1]].add(col[v-1]) cnt[col[v-1]].add(col[u-1]) ans=-1 mx=-1 for i in range(100...
3
996
A
Hit the Lottery
PROGRAMMING
800
[ "dp", "greedy" ]
null
null
Allen has a LOT of money. He has $n$ dollars in the bank. For security reasons, he wants to withdraw it in cash (we will not disclose the reasons here). The denominations for dollar bills are $1$, $5$, $10$, $20$, $100$. What is the minimum number of bills Allen could receive after withdrawing his entire balance?
The first and only line of input contains a single integer $n$ ($1 \le n \le 10^9$).
Output the minimum number of bills that Allen could receive.
[ "125\n", "43\n", "1000000000\n" ]
[ "3\n", "5\n", "10000000\n" ]
In the first sample case, Allen can withdraw this with a $100$ dollar bill, a $20$ dollar bill, and a $5$ dollar bill. There is no way for Allen to receive $125$ dollars in one or two bills. In the second sample case, Allen can withdraw two $20$ dollar bills and three $1$ dollar bills. In the third sample case, Allen...
500
[ { "input": "125", "output": "3" }, { "input": "43", "output": "5" }, { "input": "1000000000", "output": "10000000" }, { "input": "4", "output": "4" }, { "input": "5", "output": "1" }, { "input": "1", "output": "1" }, { "input": "74", "o...
1,692,275,544
2,147,483,647
PyPy 3-64
OK
TESTS
49
109
0
n = int(input()) count = 0 nums = [100, 20, 10, 5, 1] for i in range(5): if n > 0: count += (n//nums[i]) n -= (n//nums[i])*nums[i] print(count)
Title: Hit the Lottery Time Limit: None seconds Memory Limit: None megabytes Problem Description: Allen has a LOT of money. He has $n$ dollars in the bank. For security reasons, he wants to withdraw it in cash (we will not disclose the reasons here). The denominations for dollar bills are $1$, $5$, $10$, $20$, $100$...
```python n = int(input()) count = 0 nums = [100, 20, 10, 5, 1] for i in range(5): if n > 0: count += (n//nums[i]) n -= (n//nums[i])*nums[i] print(count) ```
3
867
A
Between the Offices
PROGRAMMING
800
[ "implementation" ]
null
null
As you may know, MemSQL has American offices in both San Francisco and Seattle. Being a manager in the company, you travel a lot between the two cities, always by plane. You prefer flying from Seattle to San Francisco than in the other direction, because it's warmer in San Francisco. You are so busy that you don't rem...
The first line of input contains single integer *n* (2<=≤<=*n*<=≤<=100) — the number of days. The second line contains a string of length *n* consisting of only capital 'S' and 'F' letters. If the *i*-th letter is 'S', then you were in Seattle office on that day. Otherwise you were in San Francisco. The days are given...
Print "YES" if you flew more times from Seattle to San Francisco, and "NO" otherwise. You can print each letter in any case (upper or lower).
[ "4\nFSSF\n", "2\nSF\n", "10\nFFFFFFFFFF\n", "10\nSSFFSFFSFF\n" ]
[ "NO\n", "YES\n", "NO\n", "YES\n" ]
In the first example you were initially at San Francisco, then flew to Seattle, were there for two days and returned to San Francisco. You made one flight in each direction, so the answer is "NO". In the second example you just flew from Seattle to San Francisco, so the answer is "YES". In the third example you staye...
500
[ { "input": "4\nFSSF", "output": "NO" }, { "input": "2\nSF", "output": "YES" }, { "input": "10\nFFFFFFFFFF", "output": "NO" }, { "input": "10\nSSFFSFFSFF", "output": "YES" }, { "input": "20\nSFSFFFFSSFFFFSSSSFSS", "output": "NO" }, { "input": "20\nSSFFF...
1,573,373,261
2,147,483,647
Python 3
OK
TESTS
34
124
0
n,s = input(),input() print ('YES' if s.count('SF') > s.count('FS') else 'NO')
Title: Between the Offices Time Limit: None seconds Memory Limit: None megabytes Problem Description: As you may know, MemSQL has American offices in both San Francisco and Seattle. Being a manager in the company, you travel a lot between the two cities, always by plane. You prefer flying from Seattle to San Franci...
```python n,s = input(),input() print ('YES' if s.count('SF') > s.count('FS') else 'NO') ```
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,627,769,086
2,147,483,647
Python 3
OK
TESTS
35
154
6,963,200
# Problem: A. Domino piling # Contest: Codeforces - Codeforces Beta Round #47 # URL: https://codeforces.com/problemset/problem/50/A # Memory Limit: 256 MB # Time Limit: 2000 ms # # Powered by CP Editor (https://cpeditor.org) """ Python 3 compatibility tools. """ import sys input = sys.stdin.readline ####...
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 # Problem: A. Domino piling # Contest: Codeforces - Codeforces Beta Round #47 # URL: https://codeforces.com/problemset/problem/50/A # Memory Limit: 256 MB # Time Limit: 2000 ms # # Powered by CP Editor (https://cpeditor.org) """ Python 3 compatibility tools. """ import sys input = sys.stdin.readli...
3.94853
225
A
Dice Tower
PROGRAMMING
1,100
[ "constructive algorithms", "greedy" ]
null
null
A dice is a cube, its faces contain distinct integers from 1 to 6 as black points. The sum of numbers at the opposite dice faces always equals 7. Please note that there are only two dice (these dices are mirror of each other) that satisfy the given constraints (both of them are shown on the picture on the left). Alice...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of dice in the tower. The second line contains an integer *x* (1<=≤<=*x*<=≤<=6) — the number Bob sees at the top of the tower. Next *n* lines contain two space-separated integers each: the *i*-th line contains numbers *a**i*,<=*b**i* (1<=≤<=...
Print "YES" (without the quotes), if it is possible to to uniquely identify the numbers on the faces of all the dice in the tower. If it is impossible, print "NO" (without the quotes).
[ "3\n6\n3 2\n5 4\n2 4\n", "3\n3\n2 6\n4 1\n5 3\n" ]
[ "YES", "NO" ]
none
500
[ { "input": "3\n6\n3 2\n5 4\n2 4", "output": "YES" }, { "input": "3\n3\n2 6\n4 1\n5 3", "output": "NO" }, { "input": "1\n3\n2 1", "output": "YES" }, { "input": "2\n2\n3 1\n1 5", "output": "NO" }, { "input": "3\n2\n1 4\n5 3\n6 4", "output": "NO" }, { "in...
1,588,215,718
2,147,483,647
Python 3
OK
TESTS
52
218
307,200
dados = int(input()) n = int(input()) m = 7-n; booleano = True; for qwe in range(dados): x,y = input().split() y = int(y) x = int(x) if x == m or x == n or y == m or y == n or 7-y == m or 7-y == n or 7-x == n or 7-x == m or booleano == False: booleano=False else: booleano = True ...
Title: Dice Tower Time Limit: None seconds Memory Limit: None megabytes Problem Description: A dice is a cube, its faces contain distinct integers from 1 to 6 as black points. The sum of numbers at the opposite dice faces always equals 7. Please note that there are only two dice (these dices are mirror of each other...
```python dados = int(input()) n = int(input()) m = 7-n; booleano = True; for qwe in range(dados): x,y = input().split() y = int(y) x = int(x) if x == m or x == n or y == m or y == n or 7-y == m or 7-y == n or 7-x == n or 7-x == m or booleano == False: booleano=False else: booleano =...
3
20
C
Dijkstra?
PROGRAMMING
1,900
[ "graphs", "shortest paths" ]
C. Dijkstra?
1
64
You are given a weighted undirected graph. The vertices are enumerated from 1 to *n*. Your task is to find the shortest path between the vertex 1 and the vertex *n*.
The first line contains two integers *n* and *m* (2<=≤<=*n*<=≤<=105,<=0<=≤<=*m*<=≤<=105), where *n* is the number of vertices and *m* is the number of edges. Following *m* lines contain one edge each in form *a**i*, *b**i* and *w**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*,<=1<=≤<=*w**i*<=≤<=106), where *a**i*,<=*b**i* are edge...
Write the only integer -1 in case of no path. Write the shortest path in opposite case. If there are many solutions, print any of them.
[ "5 6\n1 2 2\n2 5 5\n2 3 4\n1 4 1\n4 3 3\n3 5 1\n", "5 6\n1 2 2\n2 5 5\n2 3 4\n1 4 1\n4 3 3\n3 5 1\n" ]
[ "1 4 3 5 ", "1 4 3 5 " ]
none
1,500
[ { "input": "5 6\n1 2 2\n2 5 5\n2 3 4\n1 4 1\n4 3 3\n3 5 1", "output": "1 4 3 5 " }, { "input": "5 6\n1 2 2\n2 5 5\n2 3 4\n1 4 1\n4 3 3\n3 5 1", "output": "1 4 3 5 " }, { "input": "2 1\n1 2 1", "output": "1 2 " }, { "input": "3 1\n1 2 1", "output": "-1" }, { "input...
1,585,658,174
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
30
1,000
28,979,200
from heapq import * INF = 1 << 60 vertices, edges = map(int, input().split()) graph = [[] for _ in range(vertices)] distances = [0] + [INF] * vertices visited = [-1] * vertices priority_q = [(0, 0)] for _ in range(edges): start, end, weight = map(int, input().split()) graph[start - 1].append((wei...
Title: Dijkstra? Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: You are given a weighted undirected graph. The vertices are enumerated from 1 to *n*. Your task is to find the shortest path between the vertex 1 and the vertex *n*. Input Specification: The first line contains two integers *n* a...
```python from heapq import * INF = 1 << 60 vertices, edges = map(int, input().split()) graph = [[] for _ in range(vertices)] distances = [0] + [INF] * vertices visited = [-1] * vertices priority_q = [(0, 0)] for _ in range(edges): start, end, weight = map(int, input().split()) graph[start - 1].a...
0
698
A
Vacations
PROGRAMMING
1,400
[ "dp" ]
null
null
Vasya has *n* days of vacations! So he decided to improve his IT skills and do sport. Vasya knows the following information about each of this *n* days: whether that gym opened and whether a contest was carried out in the Internet on that day. For the *i*-th day there are four options: 1. on this day the gym is close...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100) — the number of days of Vasya's vacations. The second line contains the sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=3) separated by space, where: - *a**i* equals 0, if on the *i*-th day of vacations the gym is closed and the co...
Print the minimum possible number of days on which Vasya will have a rest. Remember that Vasya refuses: - to do sport on any two consecutive days, - to write the contest on any two consecutive days.
[ "4\n1 3 2 0\n", "7\n1 3 3 2 1 2 3\n", "2\n2 2\n" ]
[ "2\n", "0\n", "1\n" ]
In the first test Vasya can write the contest on the day number 1 and do sport on the day number 3. Thus, he will have a rest for only 2 days. In the second test Vasya should write contests on days number 1, 3, 5 and 7, in other days do sport. Thus, he will not have a rest for a single day. In the third test Vasya ca...
500
[ { "input": "4\n1 3 2 0", "output": "2" }, { "input": "7\n1 3 3 2 1 2 3", "output": "0" }, { "input": "2\n2 2", "output": "1" }, { "input": "1\n0", "output": "1" }, { "input": "10\n0 0 1 1 0 0 0 0 1 0", "output": "8" }, { "input": "100\n3 2 3 3 3 2 3 1 ...
1,590,313,517
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
3
93
307,200
n = int(input()) l = list(map(int,input().split())) c = 0 ans = 0 i = 0 r = l.count(0) def recu_(l,i,c): if i == n: # print(l) if len(l) == 2: if l[0] == 1 and l[1] == 2: return 2 elif l[1] == 1 and l[0] == 2: return 2 elif l[0] == 1 and l[0] == 1: return 1 elif l[0] == 2 an...
Title: Vacations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has *n* days of vacations! So he decided to improve his IT skills and do sport. Vasya knows the following information about each of this *n* days: whether that gym opened and whether a contest was carried out in the Int...
```python n = int(input()) l = list(map(int,input().split())) c = 0 ans = 0 i = 0 r = l.count(0) def recu_(l,i,c): if i == n: # print(l) if len(l) == 2: if l[0] == 1 and l[1] == 2: return 2 elif l[1] == 1 and l[0] == 2: return 2 elif l[0] == 1 and l[0] == 1: return 1 elif l[...
-1
614
A
Link/Cut Tree
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
Programmer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is now studying the *expose* procedure. Unfortunately, Rostislav is unable to understand the definition of this procedure, so he decided to ask programmer Serezha to help him. Serezha agre...
The first line of the input contains three space-separated integers *l*, *r* and *k* (1<=≤<=*l*<=≤<=*r*<=≤<=1018, 2<=≤<=*k*<=≤<=109).
Print all powers of number *k*, that lie within range from *l* to *r* in the increasing order. If there are no such numbers, print "-1" (without the quotes).
[ "1 10 2\n", "2 4 5\n" ]
[ "1 2 4 8 ", "-1" ]
Note to the first sample: numbers 2<sup class="upper-index">0</sup> = 1, 2<sup class="upper-index">1</sup> = 2, 2<sup class="upper-index">2</sup> = 4, 2<sup class="upper-index">3</sup> = 8 lie within the specified range. The number 2<sup class="upper-index">4</sup> = 16 is greater then 10, thus it shouldn't be printed.
500
[ { "input": "1 10 2", "output": "1 2 4 8 " }, { "input": "2 4 5", "output": "-1" }, { "input": "18102 43332383920 28554", "output": "28554 815330916 " }, { "input": "19562 31702689720 17701", "output": "313325401 " }, { "input": "11729 55221128400 313", "output...
1,620,856,923
423
PyPy 3
OK
TESTS
44
109
20,172,800
l, r, k = map (int, input().split()) cnt = 0 for i in range (64) : p = pow (k, i) if p >= l and p <= r : cnt += 1 print (p, end = ' '); if p >= r : break; if cnt == 0 : print (-1)
Title: Link/Cut Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: Programmer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is now studying the *expose* procedure. Unfortunately, Rostislav is unable to understand ...
```python l, r, k = map (int, input().split()) cnt = 0 for i in range (64) : p = pow (k, i) if p >= l and p <= r : cnt += 1 print (p, end = ' '); if p >= r : break; if cnt == 0 : print (-1) ```
3
722
A
Broken Clock
PROGRAMMING
1,300
[ "brute force", "implementation" ]
null
null
You are given a broken clock. You know, that it is supposed to show time in 12- or 24-hours HH:MM format. In 12-hours format hours change from 1 to 12, while in 24-hours it changes from 0 to 23. In both formats minutes change from 0 to 59. You are given a time in format HH:MM that is currently displayed on the broken ...
The first line of the input contains one integer 12 or 24, that denote 12-hours or 24-hours format respectively. The second line contains the time in format HH:MM, that is currently displayed on the clock. First two characters stand for the hours, while next two show the minutes.
The only line of the output should contain the time in format HH:MM that is a correct time in the given format. It should differ from the original in as few positions as possible. If there are many optimal solutions you can print any of them.
[ "24\n17:30\n", "12\n17:30\n", "24\n99:99\n" ]
[ "17:30\n", "07:30\n", "09:09\n" ]
none
500
[ { "input": "24\n17:30", "output": "17:30" }, { "input": "12\n17:30", "output": "07:30" }, { "input": "24\n99:99", "output": "09:09" }, { "input": "12\n05:54", "output": "05:54" }, { "input": "12\n00:05", "output": "01:05" }, { "input": "24\n23:80", ...
1,475,333,299
2,599
Python 3
WRONG_ANSWER
PRETESTS
4
61
0
#!/usr/bin/env python3 # -*- coding: utf-8 -*- n=int(input()) q1,q2=input().split(':') t1=int(q1[0])*10+int(q1[1]) t2=int(q2[0])*10 +int(q2[1]) if n==12: if t2>=60: t2=30+t2%10 if t1>=13: t1=t1%10 if t2==0: t2=1 if n==24: if t2>59: t2=30+t2%10 if t1>=2...
Title: Broken Clock Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a broken clock. You know, that it is supposed to show time in 12- or 24-hours HH:MM format. In 12-hours format hours change from 1 to 12, while in 24-hours it changes from 0 to 23. In both formats minutes cha...
```python #!/usr/bin/env python3 # -*- coding: utf-8 -*- n=int(input()) q1,q2=input().split(':') t1=int(q1[0])*10+int(q1[1]) t2=int(q2[0])*10 +int(q2[1]) if n==12: if t2>=60: t2=30+t2%10 if t1>=13: t1=t1%10 if t2==0: t2=1 if n==24: if t2>59: t2=30+t2%10 ...
0
254
B
Jury Size
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
In 2013, the writers of Berland State University should prepare problems for *n* Olympiads. We will assume that the Olympiads are numbered with consecutive integers from 1 to *n*. For each Olympiad we know how many members of the jury must be involved in its preparation, as well as the time required to prepare the prob...
The first line contains integer *n* — the number of Olympiads in 2013 (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains four integers *m**i*, *d**i*, *p**i* and *t**i* — the month and day of the Olympiad (given without leading zeroes), the needed number of the jury members and the time needed to prepare the...
Print a single number — the minimum jury size.
[ "2\n5 23 1 2\n3 13 2 3\n", "3\n12 9 2 1\n12 8 1 3\n12 8 2 2\n", "1\n1 10 1 13\n" ]
[ "2\n", "3\n", "1\n" ]
none
1,000
[ { "input": "2\n5 23 1 2\n3 13 2 3", "output": "2" }, { "input": "3\n12 9 2 1\n12 8 1 3\n12 8 2 2", "output": "3" }, { "input": "1\n1 10 1 13", "output": "1" }, { "input": "3\n3 16 25 1\n3 15 9 34\n3 14 90 87", "output": "99" }, { "input": "4\n2 15 52 53\n2 15 35 8...
1,630,752,346
2,147,483,647
Python 3
OK
TESTS
36
218
8,192,000
from datetime import datetime def get_min_jury_count(): rd = open("input.txt", "r") wr = open("output.txt", "w") olympiads = int(rd.readline()) days_in_month = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] # 100 days needed from 1st Jan 2013 will start 23rd Sept 2012 juries_needed_on_days = [0]*4...
Title: Jury Size Time Limit: None seconds Memory Limit: None megabytes Problem Description: In 2013, the writers of Berland State University should prepare problems for *n* Olympiads. We will assume that the Olympiads are numbered with consecutive integers from 1 to *n*. For each Olympiad we know how many members of...
```python from datetime import datetime def get_min_jury_count(): rd = open("input.txt", "r") wr = open("output.txt", "w") olympiads = int(rd.readline()) days_in_month = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] # 100 days needed from 1st Jan 2013 will start 23rd Sept 2012 juries_needed_on_da...
3
158
B
Taxi
PROGRAMMING
1,100
[ "*special", "greedy", "implementation" ]
null
null
After the lessons *n* groups of schoolchildren went outside and decided to visit Polycarpus to celebrate his birthday. We know that the *i*-th group consists of *s**i* friends (1<=≤<=*s**i*<=≤<=4), and they want to go to Polycarpus together. They decided to get there by taxi. Each car can carry at most four passengers....
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of groups of schoolchildren. The second line contains a sequence of integers *s*1,<=*s*2,<=...,<=*s**n* (1<=≤<=*s**i*<=≤<=4). The integers are separated by a space, *s**i* is the number of children in the *i*-th group.
Print the single number — the minimum number of taxis necessary to drive all children to Polycarpus.
[ "5\n1 2 4 3 3\n", "8\n2 3 4 4 2 1 3 1\n" ]
[ "4\n", "5\n" ]
In the first test we can sort the children into four cars like this: - the third group (consisting of four children), - the fourth group (consisting of three children), - the fifth group (consisting of three children), - the first and the second group (consisting of one and two children, correspondingly). There a...
1,000
[ { "input": "5\n1 2 4 3 3", "output": "4" }, { "input": "8\n2 3 4 4 2 1 3 1", "output": "5" }, { "input": "5\n4 4 4 4 4", "output": "5" }, { "input": "12\n1 1 1 1 1 1 1 1 1 1 1 1", "output": "3" }, { "input": "2\n2 1", "output": "1" }, { "input": "4\n3 ...
1,696,578,139
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
21
92
0
import math y = int(input()) x = input() a, b, c, d, e = [], [], [], [], [] ls = [b, c, d, e] o, m, ans, r, t, sumc, f = 0, 0, 0, 0, 0, 0, 0 for i in x: if i.isalnum(): a.append(int(i)) for i in range(0, len(a), 1): (ls[a[i]-1]).append(a[i]) if len(d) > len(b): r = abs(len(b) - len(d))...
Title: Taxi Time Limit: None seconds Memory Limit: None megabytes Problem Description: After the lessons *n* groups of schoolchildren went outside and decided to visit Polycarpus to celebrate his birthday. We know that the *i*-th group consists of *s**i* friends (1<=≤<=*s**i*<=≤<=4), and they want to go to Polycarpu...
```python import math y = int(input()) x = input() a, b, c, d, e = [], [], [], [], [] ls = [b, c, d, e] o, m, ans, r, t, sumc, f = 0, 0, 0, 0, 0, 0, 0 for i in x: if i.isalnum(): a.append(int(i)) for i in range(0, len(a), 1): (ls[a[i]-1]).append(a[i]) if len(d) > len(b): r = abs(len(b)...
0
926
H
Endless Roses Most Beautiful
PROGRAMMING
2,200
[]
null
null
Arkady decided to buy roses for his girlfriend. A flower shop has white, orange and red roses, and the total amount of them is *n*. Arkady thinks that red roses are not good together with white roses, so he won't buy a bouquet containing both red and white roses. Also, Arkady won't buy a bouquet where all roses have t...
The first line contains two integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=200<=000) — the number of roses in the show and the number of roses Arkady wants to buy. The second line contains a sequence of integers *b*1,<=*b*2,<=...,<=*b**n* (1<=≤<=*b**i*<=≤<=10<=000), where *b**i* equals the beauty of the *i*-th rose. The...
Print the maximum possible total beauty of a bouquet of *k* roses that satisfies the constraints above. If it is not possible to make a single such bouquet, print -1.
[ "5 3\n4 3 4 1 6\nRROWW\n", "5 2\n10 20 14 20 11\nRRRRR\n", "11 5\n5 6 3 2 3 4 7 5 4 5 6\nRWOORWORROW\n" ]
[ "11\n", "-1\n", "28\n" ]
In the first example Arkady wants to buy 3 roses. He can, for example, buy both red roses (their indices are 1 and 2, and their total beauty is 7) and the only orange rose (its index is 3, its beauty is 4). This way the total beauty of the bouquet is 11. In the second example Arkady can not buy a bouquet because all ...
0
[ { "input": "5 3\n4 3 4 1 6\nRROWW", "output": "11" }, { "input": "5 2\n10 20 14 20 11\nRRRRR", "output": "-1" }, { "input": "11 5\n5 6 3 2 3 4 7 5 4 5 6\nRWOORWORROW", "output": "28" }, { "input": "15 10\n8560 6244 9607 5137 7187 3217 5527 9919 282 8748 3529 6110 5767 521 339...
1,521,307,798
6,898
Python 3
WRONG_ANSWER
TESTS
16
342
20,275,200
n, k = [int(x) for x in input().strip().split(" ")] b = [int(x) for x in input().strip().split(" ")] c = input().strip() w = sorted([b[i] for i in range(len(b)) if c[i] == 'W']) o = sorted([b[i] for i in range(len(b)) if c[i] == 'O']) r = sorted([b[i] for i in range(len(b)) if c[i] == 'R']) if k == 1 or len...
Title: Endless Roses Most Beautiful Time Limit: None seconds Memory Limit: None megabytes Problem Description: Arkady decided to buy roses for his girlfriend. A flower shop has white, orange and red roses, and the total amount of them is *n*. Arkady thinks that red roses are not good together with white roses, so h...
```python n, k = [int(x) for x in input().strip().split(" ")] b = [int(x) for x in input().strip().split(" ")] c = input().strip() w = sorted([b[i] for i in range(len(b)) if c[i] == 'W']) o = sorted([b[i] for i in range(len(b)) if c[i] == 'O']) r = sorted([b[i] for i in range(len(b)) if c[i] == 'R']) if k =...
0
112
A
Petya and Strings
PROGRAMMING
800
[ "implementation", "strings" ]
A. Petya and Strings
2
256
Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings lexicographically. The letters' case does not matter, that is an uppercase letter is considered equivalent to the corr...
Each of the first two lines contains a bought string. The strings' lengths range from 1 to 100 inclusive. It is guaranteed that the strings are of the same length and also consist of uppercase and lowercase Latin letters.
If the first string is less than the second one, print "-1". If the second string is less than the first one, print "1". If the strings are equal, print "0". Note that the letters' case is not taken into consideration when the strings are compared.
[ "aaaa\naaaA\n", "abs\nAbz\n", "abcdefg\nAbCdEfF\n" ]
[ "0\n", "-1\n", "1\n" ]
If you want more formal information about the lexicographical order (also known as the "dictionary order" or "alphabetical order"), you can visit the following site: - http://en.wikipedia.org/wiki/Lexicographical_order
500
[ { "input": "aaaa\naaaA", "output": "0" }, { "input": "abs\nAbz", "output": "-1" }, { "input": "abcdefg\nAbCdEfF", "output": "1" }, { "input": "asadasdasd\nasdwasdawd", "output": "-1" }, { "input": "aslkjlkasdd\nasdlkjdajwi", "output": "1" }, { "input":...
1,697,803,489
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
def func(n): sum=0 for char in n: x=ord(char) sum+=x return sum alph1=input() alpa2=input() alpha1=alph1.lower() alpha2=alpa2.lower() sum1=func(alpha1) sum2=func(alpha2) if("alpha1"=="alpha2"): print("0") elif(sum1>sum2): print("1") else: print("-1")
Title: Petya and Strings Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings lexicographically. ...
```python def func(n): sum=0 for char in n: x=ord(char) sum+=x return sum alph1=input() alpa2=input() alpha1=alph1.lower() alpha2=alpa2.lower() sum1=func(alpha1) sum2=func(alpha2) if("alpha1"=="alpha2"): print("0") elif(sum1>sum2): print("1") else: print("-1") ```
0
219
A
k-String
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
A string is called a *k*-string if it can be represented as *k* concatenated copies of some string. For example, the string "aabaabaabaab" is at the same time a 1-string, a 2-string and a 4-string, but it is not a 3-string, a 5-string, or a 6-string and so on. Obviously any string is a 1-string. You are given a string...
The first input line contains integer *k* (1<=≤<=*k*<=≤<=1000). The second line contains *s*, all characters in *s* are lowercase English letters. The string length *s* satisfies the inequality 1<=≤<=|*s*|<=≤<=1000, where |*s*| is the length of string *s*.
Rearrange the letters in string *s* in such a way that the result is a *k*-string. Print the result on a single output line. If there are multiple solutions, print any of them. If the solution doesn't exist, print "-1" (without quotes).
[ "2\naazz\n", "3\nabcabcabz\n" ]
[ "azaz\n", "-1\n" ]
none
500
[ { "input": "2\naazz", "output": "azaz" }, { "input": "3\nabcabcabz", "output": "-1" }, { "input": "1\na", "output": "a" }, { "input": "2\nabba", "output": "abab" }, { "input": "2\naaab", "output": "-1" }, { "input": "7\nabacaba", "output": "-1" }...
1,628,642,597
2,147,483,647
Python 3
OK
TESTS
42
154
6,758,400
k = int(input()) s=sorted(input()) l = list(set(s)) x=s[::k]*k count = 0 for i in l: if s.count(i)%k != 0: count -= 1 break if count == -1: print(-1) else: s1 = "".join(x) print(s1)
Title: k-String Time Limit: None seconds Memory Limit: None megabytes Problem Description: A string is called a *k*-string if it can be represented as *k* concatenated copies of some string. For example, the string "aabaabaabaab" is at the same time a 1-string, a 2-string and a 4-string, but it is not a 3-string, a ...
```python k = int(input()) s=sorted(input()) l = list(set(s)) x=s[::k]*k count = 0 for i in l: if s.count(i)%k != 0: count -= 1 break if count == -1: print(-1) else: s1 = "".join(x) print(s1) ```
3
535
B
Tavas and SaDDas
PROGRAMMING
1,100
[ "bitmasks", "brute force", "combinatorics", "implementation" ]
null
null
Once again Tavas started eating coffee mix without water! Keione told him that it smells awful, but he didn't stop doing that. That's why Keione told his smart friend, SaDDas to punish him! SaDDas took Tavas' headphones and told him: "If you solve the following problem, I'll return it to you." The problem is: You ar...
The first and only line of input contains a lucky number *n* (1<=≤<=*n*<=≤<=109).
Print the index of *n* among all lucky numbers.
[ "4\n", "7\n", "77\n" ]
[ "1\n", "2\n", "6\n" ]
none
1,000
[ { "input": "4", "output": "1" }, { "input": "7", "output": "2" }, { "input": "77", "output": "6" }, { "input": "4", "output": "1" }, { "input": "474744", "output": "83" }, { "input": "777774", "output": "125" }, { "input": "447", "outpu...
1,547,603,761
2,147,483,647
Python 3
OK
TESTS
33
109
0
x = '1' for c in (input()): if c == '4': x += '0' else: x += '1' ind = 1 cur = 2 while True: y = bin(cur)[2:] if y == x: print(ind) break cur += 1 ind += 1
Title: Tavas and SaDDas Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once again Tavas started eating coffee mix without water! Keione told him that it smells awful, but he didn't stop doing that. That's why Keione told his smart friend, SaDDas to punish him! SaDDas took Tavas' headphone...
```python x = '1' for c in (input()): if c == '4': x += '0' else: x += '1' ind = 1 cur = 2 while True: y = bin(cur)[2:] if y == x: print(ind) break cur += 1 ind += 1 ```
3
754
A
Lesha and array splitting
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "implementation" ]
null
null
One spring day on his way to university Lesha found an array *A*. Lesha likes to split arrays into several parts. This time Lesha decided to split the array *A* into several, possibly one, new arrays so that the sum of elements in each of the new arrays is not zero. One more condition is that if we place the new arrays...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in the array *A*. The next line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=103<=≤<=*a**i*<=≤<=103) — the elements of the array *A*.
If it is not possible to split the array *A* and satisfy all the constraints, print single line containing "NO" (without quotes). Otherwise in the first line print "YES" (without quotes). In the next line print single integer *k* — the number of new arrays. In each of the next *k* lines print two integers *l**i* and *...
[ "3\n1 2 -3\n", "8\n9 -12 3 4 -4 -10 7 3\n", "1\n0\n", "4\n1 2 3 -5\n" ]
[ "YES\n2\n1 2\n3 3\n", "YES\n2\n1 2\n3 8\n", "NO\n", "YES\n4\n1 1\n2 2\n3 3\n4 4\n" ]
none
500
[ { "input": "3\n1 2 -3", "output": "YES\n3\n1 1\n2 2\n3 3" }, { "input": "8\n9 -12 3 4 -4 -10 7 3", "output": "YES\n8\n1 1\n2 2\n3 3\n4 4\n5 5\n6 6\n7 7\n8 8" }, { "input": "1\n0", "output": "NO" }, { "input": "4\n1 2 3 -5", "output": "YES\n4\n1 1\n2 2\n3 3\n4 4" }, { ...
1,640,176,216
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
n=int(input()) s=list(map(int,input().split())) ans=[] for i in range(1,len(s)): ans.append([i,i]) if(len(s)==1): print("NO") else: print(len(ans)) for i in range(0,len(ans)): print(ans[i][0],ans[i][1])
Title: Lesha and array splitting Time Limit: None seconds Memory Limit: None megabytes Problem Description: One spring day on his way to university Lesha found an array *A*. Lesha likes to split arrays into several parts. This time Lesha decided to split the array *A* into several, possibly one, new arrays so that t...
```python n=int(input()) s=list(map(int,input().split())) ans=[] for i in range(1,len(s)): ans.append([i,i]) if(len(s)==1): print("NO") else: print(len(ans)) for i in range(0,len(ans)): print(ans[i][0],ans[i][1]) ```
0
471
D
MUH and Cube Walls
PROGRAMMING
1,800
[ "string suffix structures", "strings" ]
null
null
Polar bears Menshykov and Uslada from the zoo of St. Petersburg and elephant Horace from the zoo of Kiev got hold of lots of wooden cubes somewhere. They started making cube towers by placing the cubes one on top of the other. They defined multiple towers standing in a line as a wall. A wall can consist of towers of di...
The first line contains two integers *n* and *w* (1<=≤<=*n*,<=*w*<=≤<=2·105) — the number of towers in the bears' and the elephant's walls correspondingly. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=109) — the heights of the towers in the bears' wall. The third line contains *w* integers *b**i* (1<=...
Print the number of segments in the bears' wall where Horace can "see an elephant".
[ "13 5\n2 4 5 5 4 3 2 2 2 3 3 2 1\n3 4 4 3 2\n" ]
[ "2" ]
The picture to the left shows Horace's wall from the sample, the picture to the right shows the bears' wall. The segments where Horace can "see an elephant" are in gray.
2,000
[ { "input": "13 5\n2 4 5 5 4 3 2 2 2 3 3 2 1\n3 4 4 3 2", "output": "2" }, { "input": "5 1\n8 71 1 24 2\n31", "output": "5" }, { "input": "6 3\n2 2 2 2 2 2\n5 5 5", "output": "4" }, { "input": "1 1\n576560149\n691846236", "output": "1" }, { "input": "10 5\n5 10 8 1...
1,555,072,762
2,147,483,647
Python 3
OK
TESTS
30
421
17,612,800
def KMPPreprocess(p, prefix): m = len(p) prefix = [0] * m j = 0 i = 1 while i < m: if p[i] == p[j]: j += 1 prefix[i] = j i += 1 else: if j != 0: j = prefix[j - 1] else: prefix[i]...
Title: MUH and Cube Walls Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polar bears Menshykov and Uslada from the zoo of St. Petersburg and elephant Horace from the zoo of Kiev got hold of lots of wooden cubes somewhere. They started making cube towers by placing the cubes one on top of ...
```python def KMPPreprocess(p, prefix): m = len(p) prefix = [0] * m j = 0 i = 1 while i < m: if p[i] == p[j]: j += 1 prefix[i] = j i += 1 else: if j != 0: j = prefix[j - 1] else: ...
3
883
M
Quadcopter Competition
PROGRAMMING
1,100
[ "greedy", "math" ]
null
null
Polycarp takes part in a quadcopter competition. According to the rules a flying robot should: - start the race from some point of a field, - go around the flag, - close cycle returning back to the starting point. Polycarp knows the coordinates of the starting point (*x*1,<=*y*1) and the coordinates of the point w...
The first line contains two integer numbers *x*1 and *y*1 (<=-<=100<=≤<=*x*1,<=*y*1<=≤<=100) — coordinates of the quadcopter starting (and finishing) point. The second line contains two integer numbers *x*2 and *y*2 (<=-<=100<=≤<=*x*2,<=*y*2<=≤<=100) — coordinates of the flag. It is guaranteed that the quadcopter sta...
Print the length of minimal path of the quadcopter to surround the flag and return back.
[ "1 5\n5 2\n", "0 1\n0 0\n" ]
[ "18\n", "8\n" ]
none
0
[ { "input": "1 5\n5 2", "output": "18" }, { "input": "0 1\n0 0", "output": "8" }, { "input": "-100 -100\n100 100", "output": "804" }, { "input": "-100 -100\n-100 100", "output": "406" }, { "input": "-100 -100\n100 -100", "output": "406" }, { "input": "1...
1,577,116,973
2,147,483,647
PyPy 3
OK
TESTS
100
155
0
x1,y1=map(int,input().split()) x2,y2=map(int,input().split()) if(x1==x2): print(4+abs(y2-y1)*2+2) elif(y1==y2): print(4+abs(x2-x1)*2+2) else: print(abs(x2-x1)*2+abs(y2-y1)*2+4)
Title: Quadcopter Competition Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp takes part in a quadcopter competition. According to the rules a flying robot should: - start the race from some point of a field, - go around the flag, - close cycle returning back to the starting p...
```python x1,y1=map(int,input().split()) x2,y2=map(int,input().split()) if(x1==x2): print(4+abs(y2-y1)*2+2) elif(y1==y2): print(4+abs(x2-x1)*2+2) else: print(abs(x2-x1)*2+abs(y2-y1)*2+4) ```
3
379
A
New Year Candles
PROGRAMMING
1,000
[ "implementation" ]
null
null
Vasily the Programmer loves romance, so this year he decided to illuminate his room with candles. Vasily has *a* candles.When Vasily lights up a new candle, it first burns for an hour and then it goes out. Vasily is smart, so he can make *b* went out candles into a new candle. As a result, this new candle can be used ...
The single line contains two integers, *a* and *b* (1<=≤<=*a*<=≤<=1000; 2<=≤<=*b*<=≤<=1000).
Print a single integer — the number of hours Vasily can light up the room for.
[ "4 2\n", "6 3\n" ]
[ "7\n", "8\n" ]
Consider the first sample. For the first four hours Vasily lights up new candles, then he uses four burned out candles to make two new ones and lights them up. When these candles go out (stop burning), Vasily can make another candle. Overall, Vasily can light up the room for 7 hours.
500
[ { "input": "4 2", "output": "7" }, { "input": "6 3", "output": "8" }, { "input": "1000 1000", "output": "1001" }, { "input": "123 5", "output": "153" }, { "input": "1000 2", "output": "1999" }, { "input": "1 2", "output": "1" }, { "input": ...
1,683,399,156
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
46
0
def candles(a,b): count=a count1=a%b while a>0: count+=a//b count1+=a%b a=a//b return count+ (count1//b) L=list(map(int,input().split())) print(candles(L[0],L[1]))
Title: New Year Candles Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily the Programmer loves romance, so this year he decided to illuminate his room with candles. Vasily has *a* candles.When Vasily lights up a new candle, it first burns for an hour and then it goes out. Vasily is s...
```python def candles(a,b): count=a count1=a%b while a>0: count+=a//b count1+=a%b a=a//b return count+ (count1//b) L=list(map(int,input().split())) print(candles(L[0],L[1])) ```
0
845
A
Chess Tourney
PROGRAMMING
1,100
[ "implementation", "sortings" ]
null
null
Berland annual chess tournament is coming! Organizers have gathered 2·*n* chess players who should be divided into two teams with *n* people each. The first team is sponsored by BerOil and the second team is sponsored by BerMobile. Obviously, organizers should guarantee the win for the team of BerOil. Thus, organizer...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100). The second line contains 2·*n* integers *a*1,<=*a*2,<=... *a*2*n* (1<=≤<=*a**i*<=≤<=1000).
If it's possible to divide all 2·*n* players into two teams with *n* people each so that the player from the first team in every pair wins regardless of the results of the drawing, then print "YES". Otherwise print "NO".
[ "2\n1 3 2 4\n", "1\n3 3\n" ]
[ "YES\n", "NO\n" ]
none
0
[ { "input": "2\n1 3 2 4", "output": "YES" }, { "input": "1\n3 3", "output": "NO" }, { "input": "5\n1 1 1 1 2 2 3 3 3 3", "output": "NO" }, { "input": "5\n1 1 1 1 1 2 2 2 2 2", "output": "YES" }, { "input": "10\n1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000...
1,574,359,551
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
93
0
n = int(input()) l = list(map(int,input().split())) l.sort(reverse=True) k = l[:n] # print(l) for i in range(n): if l[i] <= l[n+i]: print("NO") exit() print("YES")
Title: Chess Tourney Time Limit: None seconds Memory Limit: None megabytes Problem Description: Berland annual chess tournament is coming! Organizers have gathered 2·*n* chess players who should be divided into two teams with *n* people each. The first team is sponsored by BerOil and the second team is sponsored by...
```python n = int(input()) l = list(map(int,input().split())) l.sort(reverse=True) k = l[:n] # print(l) for i in range(n): if l[i] <= l[n+i]: print("NO") exit() print("YES") ```
0
770
A
New Password
PROGRAMMING
800
[ "*special", "implementation" ]
null
null
Innokentiy decides to change the password in the social net "Contact!", but he is too lazy to invent a new password by himself. That is why he needs your help. Innokentiy decides that new password should satisfy the following conditions: - the length of the password must be equal to *n*, - the password should cons...
The first line contains two positive integers *n* and *k* (2<=≤<=*n*<=≤<=100, 2<=≤<=*k*<=≤<=*min*(*n*,<=26)) — the length of the password and the number of distinct symbols in it. Pay attention that a desired new password always exists.
Print any password which satisfies all conditions given by Innokentiy.
[ "4 3\n", "6 6\n", "5 2\n" ]
[ "java\n", "python\n", "phphp\n" ]
In the first test there is one of the appropriate new passwords — java, because its length is equal to 4 and 3 distinct lowercase letters a, j and v are used in it. In the second test there is one of the appropriate new passwords — python, because its length is equal to 6 and it consists of 6 distinct lowercase letter...
500
[ { "input": "4 3", "output": "abca" }, { "input": "6 6", "output": "abcdef" }, { "input": "5 2", "output": "ababa" }, { "input": "3 2", "output": "aba" }, { "input": "10 2", "output": "ababababab" }, { "input": "26 13", "output": "abcdefghijklmabcde...
1,606,422,011
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
93
0
i = list(map(int, input().split())) n = i[0] l = i[1] for j in range(n): l.append(chr(65+j%k)) print(''.join(l))
Title: New Password Time Limit: None seconds Memory Limit: None megabytes Problem Description: Innokentiy decides to change the password in the social net "Contact!", but he is too lazy to invent a new password by himself. That is why he needs your help. Innokentiy decides that new password should satisfy the foll...
```python i = list(map(int, input().split())) n = i[0] l = i[1] for j in range(n): l.append(chr(65+j%k)) print(''.join(l)) ```
-1
515
C
Drazil and Factorial
PROGRAMMING
1,400
[ "greedy", "math", "sortings" ]
null
null
Drazil is playing a math game with Varda. Let's define for positive integer *x* as a product of factorials of its digits. For example, . First, they choose a decimal number *a* consisting of *n* digits that contains at least one digit larger than 1. This number may possibly start with leading zeroes. Then they shoul...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=15) — the number of digits in *a*. The second line contains *n* digits of *a*. There is at least one digit in *a* that is larger than 1. Number *a* may possibly contain leading zeroes.
Output a maximum possible integer satisfying the conditions above. There should be no zeroes and ones in this number decimal representation.
[ "4\n1234\n", "3\n555\n" ]
[ "33222\n", "555\n" ]
In the first case, <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/f5a4207f23215fddce977ab5ea9e9d2e7578fb52.png" style="max-width: 100.0%;max-height: 100.0%;"/>
1,000
[ { "input": "4\n1234", "output": "33222" }, { "input": "3\n555", "output": "555" }, { "input": "15\n012345781234578", "output": "7777553333222222222222" }, { "input": "1\n8", "output": "7222" }, { "input": "10\n1413472614", "output": "75333332222222" }, { ...
1,665,679,553
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
30
28,774,400
n = int(input()) a = [int(x) for x in input()] d = {0:'', 1:'', 2:'2', 3:'3', 4:'23', 5:'5', 6:'35', 7:'7', 8:'7222', 9:'7233'} s = '' for x in a: s += d[x] print(''.join(sorted(s, reverse=True)))
Title: Drazil and Factorial Time Limit: None seconds Memory Limit: None megabytes Problem Description: Drazil is playing a math game with Varda. Let's define for positive integer *x* as a product of factorials of its digits. For example, . First, they choose a decimal number *a* consisting of *n* digits that cont...
```python n = int(input()) a = [int(x) for x in input()] d = {0:'', 1:'', 2:'2', 3:'3', 4:'23', 5:'5', 6:'35', 7:'7', 8:'7222', 9:'7233'} s = '' for x in a: s += d[x] print(''.join(sorted(s, reverse=True))) ```
0
918
A
Eleven
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Eleven wants to choose a new name for herself. As a bunch of geeks, her friends suggested an algorithm to choose a name for her. Eleven wants her name to have exactly *n* characters. Her friend suggested that her name should only consist of uppercase and lowercase letters 'O'. More precisely, they suggested that the ...
The first and only line of input contains an integer *n* (1<=≤<=*n*<=≤<=1000).
Print Eleven's new name on the first and only line of output.
[ "8\n", "15\n" ]
[ "OOOoOooO\n", "OOOoOooOooooOoo\n" ]
none
500
[ { "input": "8", "output": "OOOoOooO" }, { "input": "15", "output": "OOOoOooOooooOoo" }, { "input": "85", "output": "OOOoOooOooooOoooooooOooooooooooooOooooooooooooooooooooOoooooooooooooooooooooooooooooo" }, { "input": "381", "output": "OOOoOooOooooOoooooooOooooooooooooOooo...
1,683,727,290
2,147,483,647
Python 3
OK
TESTS
18
46
0
n=int(input()) l=[1] ch="" f1=1 f2=1 for i in range(1,n+1): f3=f2+f1 f1=f2 f2=f3 l.append(f3) if i in l: ch+="O" else: ch+='o' print(ch)
Title: Eleven Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eleven wants to choose a new name for herself. As a bunch of geeks, her friends suggested an algorithm to choose a name for her. Eleven wants her name to have exactly *n* characters. Her friend suggested that her name should o...
```python n=int(input()) l=[1] ch="" f1=1 f2=1 for i in range(1,n+1): f3=f2+f1 f1=f2 f2=f3 l.append(f3) if i in l: ch+="O" else: ch+='o' print(ch) ```
3
688
A
Opponents
PROGRAMMING
800
[ "implementation" ]
null
null
Arya has *n* opponents in the school. Each day he will fight with all opponents who are present this day. His opponents have some fighting plan that guarantees they will win, but implementing this plan requires presence of them all. That means if one day at least one of Arya's opponents is absent at the school, then Ar...
The first line of the input contains two integers *n* and *d* (1<=≤<=*n*,<=*d*<=≤<=100) — the number of opponents and the number of days, respectively. The *i*-th of the following *d* lines contains a string of length *n* consisting of characters '0' and '1'. The *j*-th character of this string is '0' if the *j*-th op...
Print the only integer — the maximum number of consecutive days that Arya will beat all present opponents.
[ "2 2\n10\n00\n", "4 1\n0100\n", "4 5\n1101\n1111\n0110\n1011\n1111\n" ]
[ "2\n", "1\n", "2\n" ]
In the first and the second samples, Arya will beat all present opponents each of the *d* days. In the third sample, Arya will beat his opponents on days 1, 3 and 4 and his opponents will beat him on days 2 and 5. Thus, the maximum number of consecutive winning days is 2, which happens on days 3 and 4.
500
[ { "input": "2 2\n10\n00", "output": "2" }, { "input": "4 1\n0100", "output": "1" }, { "input": "4 5\n1101\n1111\n0110\n1011\n1111", "output": "2" }, { "input": "3 2\n110\n110", "output": "2" }, { "input": "10 6\n1111111111\n0100110101\n1111111111\n0000011010\n1111...
1,624,452,967
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
46
0
# -*- coding: utf-8 -*- """ Created on Wed Jun 23 20:49:47 2021 @author: nagan """ n, d = map(int, input().split()) ans = [] a = 0 for i in range(d): l = input() if "0" in l: a += 1 else: ans.append(a) a = 0 ans.sort(reverse = True) print(ans[0])
Title: Opponents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Arya has *n* opponents in the school. Each day he will fight with all opponents who are present this day. His opponents have some fighting plan that guarantees they will win, but implementing this plan requires presence of th...
```python # -*- coding: utf-8 -*- """ Created on Wed Jun 23 20:49:47 2021 @author: nagan """ n, d = map(int, input().split()) ans = [] a = 0 for i in range(d): l = input() if "0" in l: a += 1 else: ans.append(a) a = 0 ans.sort(reverse = True) print(ans[0]) ...
-1
460
A
Vasya and Socks
PROGRAMMING
900
[ "brute force", "implementation", "math" ]
null
null
Vasya has *n* pairs of socks. In the morning of each day Vasya has to put on a pair of socks before he goes to school. When he comes home in the evening, Vasya takes off the used socks and throws them away. Every *m*-th day (at days with numbers *m*,<=2*m*,<=3*m*,<=...) mom buys a pair of socks to Vasya. She does it la...
The single line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=100; 2<=≤<=*m*<=≤<=100), separated by a space.
Print a single integer — the answer to the problem.
[ "2 2\n", "9 3\n" ]
[ "3\n", "13\n" ]
In the first sample Vasya spends the first two days wearing the socks that he had initially. Then on day three he puts on the socks that were bought on day two. In the second sample Vasya spends the first nine days wearing the socks that he had initially. Then he spends three days wearing the socks that were bought on...
500
[ { "input": "2 2", "output": "3" }, { "input": "9 3", "output": "13" }, { "input": "1 2", "output": "1" }, { "input": "2 3", "output": "2" }, { "input": "1 99", "output": "1" }, { "input": "4 4", "output": "5" }, { "input": "10 2", "outp...
1,638,722,195
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
n,m=map(int,input().split()) days=1 for i in range(1,n+n//m+1): days+=1 print(days)
Title: Vasya and Socks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has *n* pairs of socks. In the morning of each day Vasya has to put on a pair of socks before he goes to school. When he comes home in the evening, Vasya takes off the used socks and throws them away. Every *m*-th...
```python n,m=map(int,input().split()) days=1 for i in range(1,n+n//m+1): days+=1 print(days) ```
0
764
B
Timofey and cubes
PROGRAMMING
900
[ "constructive algorithms", "implementation" ]
null
null
Young Timofey has a birthday today! He got kit of *n* cubes as a birthday present from his parents. Every cube has a number *a**i*, which is written on it. Timofey put all the cubes in a row and went to unpack other presents. In this time, Timofey's elder brother, Dima reordered the cubes using the following rule. Sup...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=2·105) — the number of cubes. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=109<=≤<=*a**i*<=≤<=109), where *a**i* is the number written on the *i*-th cube after Dima has changed their order.
Print *n* integers, separated by spaces — the numbers written on the cubes in their initial order. It can be shown that the answer is unique.
[ "7\n4 3 7 6 9 1 2\n", "8\n6 1 4 2 5 6 9 2\n" ]
[ "2 3 9 6 7 1 4", "2 1 6 2 5 4 9 6" ]
Consider the first sample. 1. At the begining row was [2, 3, 9, 6, 7, 1, 4]. 1. After first operation row was [4, 1, 7, 6, 9, 3, 2]. 1. After second operation row was [4, 3, 9, 6, 7, 1, 2]. 1. After third operation row was [4, 3, 7, 6, 9, 1, 2]. 1. At fourth operation we reverse just middle element, so nothing ha...
1,000
[ { "input": "7\n4 3 7 6 9 1 2", "output": "2 3 9 6 7 1 4" }, { "input": "8\n6 1 4 2 5 6 9 2", "output": "2 1 6 2 5 4 9 6" }, { "input": "1\n1424", "output": "1424" }, { "input": "9\n-7 9 -4 9 -6 11 15 2 -10", "output": "-10 9 15 9 -6 11 -4 2 -7" }, { "input": "2\n2...
1,501,680,505
2,147,483,647
Python 3
OK
TESTS
34
577
22,835,200
n=int(input()) a=list(map(int,input().split())) for j in range(0,n//2,2): a[j],a[n-j-1]=a[n-j-1],a[j] print(*a)
Title: Timofey and cubes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Young Timofey has a birthday today! He got kit of *n* cubes as a birthday present from his parents. Every cube has a number *a**i*, which is written on it. Timofey put all the cubes in a row and went to unpack other p...
```python n=int(input()) a=list(map(int,input().split())) for j in range(0,n//2,2): a[j],a[n-j-1]=a[n-j-1],a[j] print(*a) ```
3
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,677,770,373
2,147,483,647
Python 3
OK
TESTS
20
46
0
def side(a, b): if a % b == 0: return a // b return a // b + 1 def main(): data = list(map(int, input().split())) n = data[0] m = data[1] a = data[2] print(side(n, a) * side(m, a)) if __name__ == "__main__": main()
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 def side(a, b): if a % b == 0: return a // b return a // b + 1 def main(): data = list(map(int, input().split())) n = data[0] m = data[1] a = data[2] print(side(n, a) * side(m, a)) if __name__ == "__main__": main() ```
3.977
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,591,205,163
2,147,483,647
Python 3
OK
TESTS
30
216
0
i = input() j = sum(map(lambda n: n.isupper(),i)) k = sum(map(lambda n: n.islower(),i)) if k>= j : print(i.lower()) else: print(i.upper())
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python i = input() j = sum(map(lambda n: n.isupper(),i)) k = sum(map(lambda n: n.islower(),i)) if k>= j : print(i.lower()) else: print(i.upper()) ```
3.946
638
B
Making Genome in Berland
PROGRAMMING
1,500
[ "*special", "dfs and similar", "strings" ]
null
null
Berland scientists face a very important task - given the parts of short DNA fragments, restore the dinosaur DNA! The genome of a berland dinosaur has noting in common with the genome that we've used to: it can have 26 distinct nucleotide types, a nucleotide of each type can occur at most once. If we assign distinct En...
The first line of the input contains a positive integer *n* (1<=≤<=*n*<=≤<=100) — the number of genome fragments. Each of the next lines contains one descriptions of a fragment. Each fragment is a non-empty string consisting of distinct small letters of the English alphabet. It is not guaranteed that the given fragmen...
In the single line of the output print the genome of the minimum length that contains all the given parts. All the nucleotides in the genome must be distinct. If there are multiple suitable strings, print the string of the minimum length. If there also are multiple suitable strings, you can print any of them.
[ "3\nbcd\nab\ncdef\n", "4\nx\ny\nz\nw\n" ]
[ "abcdef\n", "xyzw\n" ]
none
1,000
[ { "input": "3\nbcd\nab\ncdef", "output": "abcdef" }, { "input": "4\nx\ny\nz\nw", "output": "xyzw" }, { "input": "25\nef\nfg\ngh\nhi\nij\njk\nkl\nlm\nmn\nno\nab\nbc\ncd\nde\nop\npq\nqr\nrs\nst\ntu\nuv\nvw\nwx\nxy\nyz", "output": "abcdefghijklmnopqrstuvwxyz" }, { "input": "1\nf...
1,458,483,645
8,445
Python 3
WRONG_ANSWER
PRETESTS
2
61
5,120,000
def char_range(c1, c2): for c in range(ord(c1), ord(c2) + 1): yield chr(c) def string_in_dict(s, d): for ii in range(0, len(s)): d[s[ii]] = [s, ii] def concatenate_two_string(s1, s2, i, j): if j == 0: if s2 in s1: return s1; else: re...
Title: Making Genome in Berland Time Limit: None seconds Memory Limit: None megabytes Problem Description: Berland scientists face a very important task - given the parts of short DNA fragments, restore the dinosaur DNA! The genome of a berland dinosaur has noting in common with the genome that we've used to: it can...
```python def char_range(c1, c2): for c in range(ord(c1), ord(c2) + 1): yield chr(c) def string_in_dict(s, d): for ii in range(0, len(s)): d[s[ii]] = [s, ii] def concatenate_two_string(s1, s2, i, j): if j == 0: if s2 in s1: return s1; else: ...
0
765
F
Souvenirs
PROGRAMMING
3,100
[ "data structures" ]
null
null
Artsem is on vacation and wants to buy souvenirs for his two teammates. There are *n* souvenir shops along the street. In *i*-th shop Artsem can buy one souvenir for *a**i* dollars, and he cannot buy more than one souvenir in one shop. He doesn't want to introduce envy in his team, so he wants to buy two souvenirs with...
The first line contains an integer *n* (2<=≤<=*n*<=≤<=105). The second line contains *n* space-separated integers *a*1, ..., *a**n* (0<=≤<=*a**i*<=≤<=109). The third line contains the number of queries *m* (1<=≤<=*m*<=≤<=3·105). Next *m* lines describe the queries. *i*-th of these lines contains two space-separated ...
Print the answer to each query in a separate line.
[ "8\n3 1 4 1 5 9 2 6\n4\n1 8\n1 3\n4 8\n5 7\n" ]
[ "0\n1\n1\n3\n" ]
none
3,250
[]
1,487,069,583
10,083
Python 3
TIME_LIMIT_EXCEEDED
PRETESTS
5
3,000
6,758,400
from itertools import islice n = int(input()) a = input().split() a = [int(x) for x in a] m = int(input()) for i in range(m): l, r = input().split() l, r, = int(l)-1, int(r) alr_sorted = sorted(islice(a, l, r)) alr_sorted_diffs = (alr_sorted[i + 1] - alr_sorted[i] for i in range(len(alr_sor...
Title: Souvenirs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Artsem is on vacation and wants to buy souvenirs for his two teammates. There are *n* souvenir shops along the street. In *i*-th shop Artsem can buy one souvenir for *a**i* dollars, and he cannot buy more than one souvenir in...
```python from itertools import islice n = int(input()) a = input().split() a = [int(x) for x in a] m = int(input()) for i in range(m): l, r = input().split() l, r, = int(l)-1, int(r) alr_sorted = sorted(islice(a, l, r)) alr_sorted_diffs = (alr_sorted[i + 1] - alr_sorted[i] for i in range(l...
0
768
B
Code For 1
PROGRAMMING
1,600
[ "constructive algorithms", "dfs and similar", "divide and conquer" ]
null
null
Jon fought bravely to rescue the wildlings who were attacked by the white-walkers at Hardhome. On his arrival, Sam tells him that he wants to go to Oldtown to train at the Citadel to become a maester, so he can return and take the deceased Aemon's place as maester of Castle Black. Jon agrees to Sam's proposal and Sam s...
The first line contains three integers *n*, *l*, *r* (0<=≤<=*n*<=&lt;<=250, 0<=≤<=*r*<=-<=*l*<=≤<=105, *r*<=≥<=1, *l*<=≥<=1) – initial element and the range *l* to *r*. It is guaranteed that *r* is not greater than the length of the final list.
Output the total number of 1s in the range *l* to *r* in the final sequence.
[ "7 2 5\n", "10 3 10\n" ]
[ "4\n", "5\n" ]
Consider first example: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/288fbb682a6fa1934a47b763d6851f9d32a06150.png" style="max-width: 100.0%;max-height: 100.0%;"/> Elements on positions from 2-nd to 5-th in list is [1, 1, 1, 1]. The number of ones is 4. For the second example: <img al...
1,000
[ { "input": "7 2 5", "output": "4" }, { "input": "10 3 10", "output": "5" }, { "input": "56 18 40", "output": "20" }, { "input": "203 40 124", "output": "67" }, { "input": "903316762502 354723010040 354723105411", "output": "78355" }, { "input": "335343...
1,663,447,566
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
0
array = input().split() lst = [int(array[0])] left = int(array[1])-1 right = int(array[2]) def code(lst): for i in range(len(lst)): if lst[i] != 0 or lst[i] != 1: floor1 = x//2 next = x % 2 lst.insert(i,floor1) lst.insert(i,next) lst.i...
Title: Code For 1 Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jon fought bravely to rescue the wildlings who were attacked by the white-walkers at Hardhome. On his arrival, Sam tells him that he wants to go to Oldtown to train at the Citadel to become a maester, so he can return and ta...
```python array = input().split() lst = [int(array[0])] left = int(array[1])-1 right = int(array[2]) def code(lst): for i in range(len(lst)): if lst[i] != 0 or lst[i] != 1: floor1 = x//2 next = x % 2 lst.insert(i,floor1) lst.insert(i,next) ...
-1
592
A
PawnChess
PROGRAMMING
1,200
[ "implementation" ]
null
null
Galois is one of the strongest chess players of Byteforces. He has even invented a new variant of chess, which he named «PawnChess». This new game is played on a board consisting of 8 rows and 8 columns. At the beginning of every game some black and white pawns are placed on the board. The number of black pawns placed...
The input consists of the board description given in eight lines, each line contains eight characters. Character 'B' is used to denote a black pawn, and character 'W' represents a white pawn. Empty cell is marked with '.'. It's guaranteed that there will not be white pawns on the first row neither black pawns on the ...
Print 'A' if player A wins the game on the given board, and 'B' if player B will claim the victory. Again, it's guaranteed that there will always be a winner on the given board.
[ "........\n........\n.B....B.\n....W...\n........\n..W.....\n........\n........\n", "..B.....\n..W.....\n......B.\n........\n.....W..\n......B.\n........\n........\n" ]
[ "A\n", "B\n" ]
In the first sample player A is able to complete his goal in 3 steps by always moving a pawn initially located at (4, 5). Player B needs at least 5 steps for any of his pawns to reach the row 8. Hence, player A will be the winner.
500
[ { "input": ".BB.B.B.\nB..B..B.\n.B.BB...\nBB.....B\nBBB....B\nB..BB...\nBB.B...B\n....WWW.", "output": "B" }, { "input": "B.B.BB.B\nW.WWW.WW\n.WWWWW.W\nW.BB.WBW\n.W..BBWB\nBB.WWBBB\n.W.W.WWB\nWWW..WW.", "output": "A" }, { "input": "BB..BB..\nBW.W.W.B\n..B.....\n.....BB.\n.B..B..B\n.........
1,498,944,327
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
46
5,529,600
M=[input() for i in range(8)] l=[] p=100000000 for i in range(8) : for j in range(8) : if M[i][j]=='W' and j not in l : p=i break if M[i][j]=='B' : l.append(j) if p!=100000000 : break l=[] for i in range(7,-1,-1) : for j in range(7,-1...
Title: PawnChess Time Limit: None seconds Memory Limit: None megabytes Problem Description: Galois is one of the strongest chess players of Byteforces. He has even invented a new variant of chess, which he named «PawnChess». This new game is played on a board consisting of 8 rows and 8 columns. At the beginning of ...
```python M=[input() for i in range(8)] l=[] p=100000000 for i in range(8) : for j in range(8) : if M[i][j]=='W' and j not in l : p=i break if M[i][j]=='B' : l.append(j) if p!=100000000 : break l=[] for i in range(7,-1,-1) : for j in ...
0
4
A
Watermelon
PROGRAMMING
800
[ "brute force", "math" ]
A. Watermelon
1
64
One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dying of thirst, and decided to divide the berry, however they faced a hard problem. Pete and ...
The first (and the only) input line contains integer number *w* (1<=≤<=*w*<=≤<=100) — the weight of the watermelon bought by the boys.
Print YES, if the boys can divide the watermelon into two parts, each of them weighing even number of kilos; and NO in the opposite case.
[ "8\n" ]
[ "YES\n" ]
For example, the boys can divide the watermelon into two parts of 2 and 6 kilos respectively (another variant — two parts of 4 and 4 kilos).
0
[ { "input": "8", "output": "YES" }, { "input": "5", "output": "NO" }, { "input": "4", "output": "YES" }, { "input": "3", "output": "NO" }, { "input": "2", "output": "NO" }, { "input": "1", "output": "NO" }, { "input": "7", "output": "NO"...
1,695,628,736
2,147,483,647
Python 3
OK
TESTS
20
92
0
wm=int(input()) if(wm>2 and wm%2==0): print("yes") else: print("no")
Title: Watermelon Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dyin...
```python wm=int(input()) if(wm>2 and wm%2==0): print("yes") else: print("no") ```
3.954
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,634,017,865
2,147,483,647
Python 3
OK
TESTS
32
92
6,758,400
n=int(input()) a=list(map(int,input().split(' '))) for i in range(n) : a[i]=a[i]%2 if sum(a)==1 : print(a.index(1)+1) else : print(a.index(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(' '))) for i in range(n) : a[i]=a[i]%2 if sum(a)==1 : print(a.index(1)+1) else : print(a.index(0)+1) ```
3.964411
828
A
Restaurant Tables
PROGRAMMING
1,200
[ "implementation" ]
null
null
In a small restaurant there are *a* tables for one person and *b* tables for two persons. It it known that *n* groups of people come today, each consisting of one or two people. If a group consist of one person, it is seated at a vacant one-seater table. If there are none of them, it is seated at a vacant two-seate...
The first line contains three integers *n*, *a* and *b* (1<=≤<=*n*<=≤<=2·105, 1<=≤<=*a*,<=*b*<=≤<=2·105) — the number of groups coming to the restaurant, the number of one-seater and the number of two-seater tables. The second line contains a sequence of integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=2) — the d...
Print the total number of people the restaurant denies service to.
[ "4 1 2\n1 2 1 1\n", "4 1 1\n1 1 2 1\n" ]
[ "0\n", "2\n" ]
In the first example the first group consists of one person, it is seated at a vacant one-seater table. The next group occupies a whole two-seater table. The third group consists of one person, it occupies one place at the remaining two-seater table. The fourth group consists of one person, he is seated at the remainin...
500
[ { "input": "4 1 2\n1 2 1 1", "output": "0" }, { "input": "4 1 1\n1 1 2 1", "output": "2" }, { "input": "1 1 1\n1", "output": "0" }, { "input": "2 1 2\n2 2", "output": "0" }, { "input": "5 1 3\n1 2 2 2 1", "output": "1" }, { "input": "7 6 1\n1 1 1 1 1 1...
1,499,791,961
461
Python 3
OK
TESTS
97
171
9,011,200
n, a, b = [int(s) for s in input().split()] t = [int(s) for s in input().split()] ans, c = 0, 0 for i in range(n): if t[i] == 1: if a>0: a-=1 elif b>0: b-=1 c+=1 elif c>0: c-=1 else: ans+=1 else: if b>0: ...
Title: Restaurant Tables Time Limit: None seconds Memory Limit: None megabytes Problem Description: In a small restaurant there are *a* tables for one person and *b* tables for two persons. It it known that *n* groups of people come today, each consisting of one or two people. If a group consist of one person, i...
```python n, a, b = [int(s) for s in input().split()] t = [int(s) for s in input().split()] ans, c = 0, 0 for i in range(n): if t[i] == 1: if a>0: a-=1 elif b>0: b-=1 c+=1 elif c>0: c-=1 else: ans+=1 else: if b>0...
3
0
none
none
none
0
[ "none" ]
null
null
In Arcady's garden there grows a peculiar apple-tree that fruits one time per year. Its peculiarity can be explained in following way: there are *n* inflorescences, numbered from 1 to *n*. Inflorescence number 1 is situated near base of tree and any other inflorescence with number *i* (*i*<=&gt;<=1) is situated at the ...
First line of input contains single integer number *n* (2<=≤<=*n*<=≤<=100<=000)  — number of inflorescences. Second line of input contains sequence of *n*<=-<=1 integer numbers *p*2,<=*p*3,<=...,<=*p**n* (1<=≤<=*p**i*<=&lt;<=*i*), where *p**i* is number of inflorescence into which the apple from *i*-th inflorescence r...
Single line of output should contain one integer number: amount of apples that Arcady will be able to collect from first inflorescence during one harvest.
[ "3\n1 1\n", "5\n1 2 2 2\n", "18\n1 1 1 4 4 3 2 2 2 10 8 9 9 9 10 10 4\n" ]
[ "1\n", "3\n", "4\n" ]
In first example Arcady will be able to collect only one apple, initially situated in 1st inflorescence. In next second apples from 2nd and 3rd inflorescences will roll down and annihilate, and Arcady won't be able to collect them. In the second example Arcady will be able to collect 3 apples. First one is one initial...
0
[ { "input": "3\n1 1", "output": "1" }, { "input": "5\n1 2 2 2", "output": "3" }, { "input": "18\n1 1 1 4 4 3 2 2 2 10 8 9 9 9 10 10 4", "output": "4" }, { "input": "2\n1", "output": "2" }, { "input": "3\n1 2", "output": "3" }, { "input": "20\n1 1 1 1 1 ...
1,520,156,367
3,567
PyPy 3
OK
TESTS
89
202
33,382,400
n=int(input()) m=[0]+[0]+list(map(int,input().split())) p=[[] for i in range(n+1)] for i in range(2,n+1): p[m[i]]+=[i] def wide(): stack=[] addto=[1] ans=0 while addto: stack,addto=addto,[] if len(stack)%2: ans+=1 while stack: addto.exten...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: In Arcady's garden there grows a peculiar apple-tree that fruits one time per year. Its peculiarity can be explained in following way: there are *n* inflorescences, numbered from 1 to *n*. Inflorescence number 1 is situated near b...
```python n=int(input()) m=[0]+[0]+list(map(int,input().split())) p=[[] for i in range(n+1)] for i in range(2,n+1): p[m[i]]+=[i] def wide(): stack=[] addto=[1] ans=0 while addto: stack,addto=addto,[] if len(stack)%2: ans+=1 while stack: a...
3