message
stringlengths
2
65.1k
message_type
stringclasses
2 values
message_id
int64
0
1
conversation_id
int64
0
108k
cluster
float64
14
14
__index_level_0__
int64
0
217k
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Fox Ciel is participating in a party in Prime Kingdom. There are n foxes there (include Fox Ciel). The i-th fox is ai years old. They will have dinner around some round tables. You want to dist...
instruction
0
83,792
14
167,584
No
output
1
83,792
14
167,585
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Fox Ciel is participating in a party in Prime Kingdom. There are n foxes there (include Fox Ciel). The i-th fox is ai years old. They will have dinner around some round tables. You want to dist...
instruction
0
83,793
14
167,586
No
output
1
83,793
14
167,587
Provide tags and a correct Python 3 solution for this coding contest problem. In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned to the i-th server. In order to balance the lo...
instruction
0
83,811
14
167,622
Tags: implementation, math Correct Solution: ``` n = int(input()) m = list(map(int,input().split())) a, b = sum(m) // n, (sum(m) + n - 1) // n print(max(sum(a - x for x in m if x < a), sum(x - b for x in m if x > b))) ```
output
1
83,811
14
167,623
Provide tags and a correct Python 3 solution for this coding contest problem. In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned to the i-th server. In order to balance the lo...
instruction
0
83,812
14
167,624
Tags: implementation, math Correct Solution: ``` n = int(input()) a = list(map(int, input().split())) cur = 0 for i in a: cur += i; b = [] for i in range(cur % n): b.append((cur + n - 1) // n) for i in range(n - cur % n): b.append(cur // n) b.sort() a.sort() ans = 0 for i in range(n): ans += abs(a[i] - ...
output
1
83,812
14
167,625
Provide tags and a correct Python 3 solution for this coding contest problem. In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned to the i-th server. In order to balance the lo...
instruction
0
83,813
14
167,626
Tags: implementation, math Correct Solution: ``` diff=0 x = int(input()) l = list(map(int, input().split(' '))) s = sum(l) k = s//x knum = (k+1)*x-s kpnum = x - knum a = knum * [k] + [k+1] * kpnum a.sort() l.sort() for i in range(len(a)): diff += abs(a[i]-l[i]) print(int(diff/2)) ```
output
1
83,813
14
167,627
Provide tags and a correct Python 3 solution for this coding contest problem. In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned to the i-th server. In order to balance the lo...
instruction
0
83,814
14
167,628
Tags: implementation, math Correct Solution: ``` import sys input = sys.stdin.readline n = int(input()) m = list(map(int, input().split())) m.sort() s = sum(m) l = [] for i in range(n): if i<s%n: l.append(s//n+1) else: l.append(s//n) l = l[::-1] ans = 0 for mi, li in zip(m, l): ans += ab...
output
1
83,814
14
167,629
Provide tags and a correct Python 3 solution for this coding contest problem. In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned to the i-th server. In order to balance the lo...
instruction
0
83,815
14
167,630
Tags: implementation, math Correct Solution: ``` n, m = int(input()), list(map(int, input().split())) a, b = sum(m) // n, (sum(m) + n - 1) // n print(max(sum(a - x for x in m if x < a), sum(x - b for x in m if x > b))) # Made By Mostafa_Khaled ```
output
1
83,815
14
167,631
Provide tags and a correct Python 3 solution for this coding contest problem. In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned to the i-th server. In order to balance the lo...
instruction
0
83,816
14
167,632
Tags: implementation, math Correct Solution: ``` import math n = int(input()) l = list(map(int,input().split())) if n == 1: print(0) exit() l.sort() som = sum(l) if som%n == 0: ans = 0 i = 0 j = n-1 target = som//n rem = 0 while i < j: x = l[j] diff = x-target l[...
output
1
83,816
14
167,633
Provide tags and a correct Python 3 solution for this coding contest problem. In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned to the i-th server. In order to balance the lo...
instruction
0
83,817
14
167,634
Tags: implementation, math Correct Solution: ``` n = int(input()) mas = list(map(int, input().split())) mas.sort() d = sum(mas) // n #print (sum(mas)) #print (n) a = n - sum(mas) % n b = n - a #print (a) #print (b) #print (d) ans = 0 for i in range(a): #print (mas[i]) ans += abs(mas[i] - d) for i in range(a, a + b): ...
output
1
83,817
14
167,635
Provide tags and a correct Python 3 solution for this coding contest problem. In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned to the i-th server. In order to balance the lo...
instruction
0
83,818
14
167,636
Tags: implementation, math Correct Solution: ``` n = int(input()) servers = list(map(int, input().split())) Sum = sum(servers) average = Sum//n flag = Sum%n == 0 ans = 0 cnt = 0 for i in range(n): if servers[i] <= average: ans += average - servers[i] cnt += 1 left = n - cnt if not flag: ans += max(Sum%n - left, ...
output
1
83,818
14
167,637
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned ...
instruction
0
83,821
14
167,642
Yes
output
1
83,821
14
167,643
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned ...
instruction
0
83,825
14
167,650
No
output
1
83,825
14
167,651
Provide tags and a correct Python 3 solution for this coding contest problem. In Summer Informatics School, if a student doesn't behave well, teachers make a hole in his badge. And today one of the teachers caught a group of n students doing yet another trick. Let's assume that all these students are numbered from 1...
instruction
0
84,211
14
168,422
Tags: brute force, dfs and similar, graphs Correct Solution: ``` n = int(input()) arr = list(map(int, input().split())) arr.insert(0, 0) visited = [False for i in range(len(arr))] visited[0] = True res = [-1 for i in range(len(arr))] def travel(p, arr, res): start = p while not visited[p]: visited[p...
output
1
84,211
14
168,423
Provide tags and a correct Python 3 solution for this coding contest problem. In Summer Informatics School, if a student doesn't behave well, teachers make a hole in his badge. And today one of the teachers caught a group of n students doing yet another trick. Let's assume that all these students are numbered from 1...
instruction
0
84,212
14
168,424
Tags: brute force, dfs and similar, graphs Correct Solution: ``` blamed = {} n = int(input()) p = list(map(int, input().split())) for i in range(len(p)): blamed[i+1] = p[i] for i in range(1, n+1): hole = {i:1} blame = blamed[i] while blame not in hole: hole[blame]=1 blame = blamed[blame]...
output
1
84,212
14
168,425
Provide tags and a correct Python 3 solution for this coding contest problem. In Summer Informatics School, if a student doesn't behave well, teachers make a hole in his badge. And today one of the teachers caught a group of n students doing yet another trick. Let's assume that all these students are numbered from 1...
instruction
0
84,213
14
168,426
Tags: brute force, dfs and similar, graphs Correct Solution: ``` n = int(input()) #cantidad de estudiantes A = [] # entradas S = [] # salidas A =(list(map(int,input().split()))) for a in range( 1, n+1): #se deben hacer n ciclos para cada estudiante "a" times = [0]*(n+1) #lista de tamaño n+1 p = a ...
output
1
84,213
14
168,427
Provide tags and a correct Python 3 solution for this coding contest problem. In Summer Informatics School, if a student doesn't behave well, teachers make a hole in his badge. And today one of the teachers caught a group of n students doing yet another trick. Let's assume that all these students are numbered from 1...
instruction
0
84,214
14
168,428
Tags: brute force, dfs and similar, graphs Correct Solution: ``` n = int(input()) arr = list(map(int, input().split())) arr3 = [] for k in range(1, n+1): #print(k) arr2 = [] z = k while k: if k in arr2: #print(arr2) arr3.append(k) break else: ...
output
1
84,214
14
168,429
Provide tags and a correct Python 3 solution for this coding contest problem. In Summer Informatics School, if a student doesn't behave well, teachers make a hole in his badge. And today one of the teachers caught a group of n students doing yet another trick. Let's assume that all these students are numbered from 1...
instruction
0
84,215
14
168,430
Tags: brute force, dfs and similar, graphs Correct Solution: ``` if __name__ == "__main__": n = int(input()) p = tuple(map(int, input().split())) for i in range(n): st = set() ref = i+1 while ref not in st: st.add(ref) ref = p[ref - 1] print(ref, end='...
output
1
84,215
14
168,431
Provide tags and a correct Python 3 solution for this coding contest problem. In Summer Informatics School, if a student doesn't behave well, teachers make a hole in his badge. And today one of the teachers caught a group of n students doing yet another trick. Let's assume that all these students are numbered from 1...
instruction
0
84,216
14
168,432
Tags: brute force, dfs and similar, graphs Correct Solution: ``` n= int(input()) x = list(map(int,input().split())) for i in range(len(x)): final = [0]*n j=i while final[j]!=2: final[j]+=1 j=x[j]-1 print(j+1,end=" ") ```
output
1
84,216
14
168,433
Provide tags and a correct Python 3 solution for this coding contest problem. In Summer Informatics School, if a student doesn't behave well, teachers make a hole in his badge. And today one of the teachers caught a group of n students doing yet another trick. Let's assume that all these students are numbered from 1...
instruction
0
84,217
14
168,434
Tags: brute force, dfs and similar, graphs Correct Solution: ``` from collections import defaultdict def addEdge(g, u, v): g[u].append(v) def helper(v, black, gray): black[v] = True gray[v] = True for neigh in g[v]: if black[neigh] == False: if helper(neigh, black, gray): ...
output
1
84,217
14
168,435
Provide tags and a correct Python 3 solution for this coding contest problem. In Summer Informatics School, if a student doesn't behave well, teachers make a hole in his badge. And today one of the teachers caught a group of n students doing yet another trick. Let's assume that all these students are numbered from 1...
instruction
0
84,218
14
168,436
Tags: brute force, dfs and similar, graphs Correct Solution: ``` n=int(input()) lst = [int(i) for i in input().split()][:n] ans=[] a=0 while(a<n): visited=[] visited.append(a+1) while True: ele=int(visited[-1])-1 if(lst[ele] not in visited): visited.append(lst[ele]) else...
output
1
84,218
14
168,437
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Manao's friends often send him new songs. He never listens to them right away. Instead, he compiles them into a playlist. When he feels that his mind is open to new music, he opens the playlist ...
instruction
0
84,512
14
169,024
No
output
1
84,512
14
169,025
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Xenia the horse breeder has n (n > 1) horses that stand in a row. Each horse has its own unique number. Initially, the i-th left horse has number i. That is, the sequence of numbers of horses in...
instruction
0
84,529
14
169,058
No
output
1
84,529
14
169,059
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Xenia the horse breeder has n (n > 1) horses that stand in a row. Each horse has its own unique number. Initially, the i-th left horse has number i. That is, the sequence of numbers of horses in...
instruction
0
84,530
14
169,060
No
output
1
84,530
14
169,061
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Xenia the horse breeder has n (n > 1) horses that stand in a row. Each horse has its own unique number. Initially, the i-th left horse has number i. That is, the sequence of numbers of horses in...
instruction
0
84,531
14
169,062
No
output
1
84,531
14
169,063
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Xenia the horse breeder has n (n > 1) horses that stand in a row. Each horse has its own unique number. Initially, the i-th left horse has number i. That is, the sequence of numbers of horses in...
instruction
0
84,532
14
169,064
No
output
1
84,532
14
169,065
Provide tags and a correct Python 3 solution for this coding contest problem. You are a lover of bacteria. You want to raise some bacteria in a box. Initially, the box is empty. Each morning, you can put any number of bacteria into the box. And each night, every bacterium in the box will split into two bacteria. You...
instruction
0
84,595
14
169,190
Tags: bitmasks Correct Solution: ``` n=int(input()) binary=bin(n) cnt=0 for i in range(2,len(binary)): if binary[i]=='1': #print(binary[i]) cnt+=1 print(cnt) ```
output
1
84,595
14
169,191
Provide tags and a correct Python 3 solution for this coding contest problem. You are a lover of bacteria. You want to raise some bacteria in a box. Initially, the box is empty. Each morning, you can put any number of bacteria into the box. And each night, every bacterium in the box will split into two bacteria. You...
instruction
0
84,596
14
169,192
Tags: bitmasks Correct Solution: ``` def main(): n, res = int(input()), 0 while n: res += n & 1 n >>= 1 print(res) if __name__ == '__main__': main() ```
output
1
84,596
14
169,193
Provide tags and a correct Python 3 solution for this coding contest problem. You are a lover of bacteria. You want to raise some bacteria in a box. Initially, the box is empty. Each morning, you can put any number of bacteria into the box. And each night, every bacterium in the box will split into two bacteria. You...
instruction
0
84,597
14
169,194
Tags: bitmasks Correct Solution: ``` t=int(input()) count=1 while t!=1: if t%2!=0: count+=1 t=t//2 print(count) ```
output
1
84,597
14
169,195
Provide tags and a correct Python 3 solution for this coding contest problem. You are a lover of bacteria. You want to raise some bacteria in a box. Initially, the box is empty. Each morning, you can put any number of bacteria into the box. And each night, every bacterium in the box will split into two bacteria. You...
instruction
0
84,598
14
169,196
Tags: bitmasks Correct Solution: ``` n = int(input()) c = 0 while n > 0: if n % 2 == 1: c = c + 1 n = n // 2 print(c) ```
output
1
84,598
14
169,197
Provide tags and a correct Python 3 solution for this coding contest problem. You are a lover of bacteria. You want to raise some bacteria in a box. Initially, the box is empty. Each morning, you can put any number of bacteria into the box. And each night, every bacterium in the box will split into two bacteria. You...
instruction
0
84,599
14
169,198
Tags: bitmasks Correct Solution: ``` x=int(input()) bacteria=0 while(x>0): k=0 while(2**k<=x): k+=1 k-=1 x=x-(2**k) bacteria+=1 print(bacteria) ```
output
1
84,599
14
169,199
Provide tags and a correct Python 3 solution for this coding contest problem. You are a lover of bacteria. You want to raise some bacteria in a box. Initially, the box is empty. Each morning, you can put any number of bacteria into the box. And each night, every bacterium in the box will split into two bacteria. You...
instruction
0
84,600
14
169,200
Tags: bitmasks Correct Solution: ``` x = int(input()) k = 0 while x > 0: if x % 2 == 0: x = x // 2 else: k += 1 x -= 1 print(k) ```
output
1
84,600
14
169,201
Provide tags and a correct Python 3 solution for this coding contest problem. You are a lover of bacteria. You want to raise some bacteria in a box. Initially, the box is empty. Each morning, you can put any number of bacteria into the box. And each night, every bacterium in the box will split into two bacteria. You...
instruction
0
84,601
14
169,202
Tags: bitmasks Correct Solution: ``` def binary(n): while n > 0: yield n % 2 n //= 2 def main(): n = int(input()) print(sum(binary(n))) if __name__ == '__main__': main() ```
output
1
84,601
14
169,203
Provide tags and a correct Python 3 solution for this coding contest problem. You are a lover of bacteria. You want to raise some bacteria in a box. Initially, the box is empty. Each morning, you can put any number of bacteria into the box. And each night, every bacterium in the box will split into two bacteria. You...
instruction
0
84,602
14
169,204
Tags: bitmasks Correct Solution: ``` n=int(input()) c=0 while n>1: if n%2==1: c=c+1 n=n//2 print(c+1) ```
output
1
84,602
14
169,205
Provide tags and a correct Python 3 solution for this coding contest problem. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other after a long time. The sun is shining, birds are s...
instruction
0
84,663
14
169,326
Tags: implementation, sortings Correct Solution: ``` n=int(input()) l=[] for i in range(n): x=int(input()) l.append(x) l.sort() s=0 for i in range(n): s+=l[i]*l[n-i-1] print(s%10007) ```
output
1
84,663
14
169,327
Provide tags and a correct Python 3 solution for this coding contest problem. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other after a long time. The sun is shining, birds are s...
instruction
0
84,664
14
169,328
Tags: implementation, sortings Correct Solution: ``` n=int(input()) l=[] for i in range(n): l.append(int(input())) l.sort() r=l[:]; r.reverse() res=0; for i in range(n): res=(res+l[i]*r[i])%10007 print(res) ```
output
1
84,664
14
169,329
Provide tags and a correct Python 3 solution for this coding contest problem. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other after a long time. The sun is shining, birds are s...
instruction
0
84,665
14
169,330
Tags: implementation, sortings Correct Solution: ``` n = int(input()) lazy = [] tasks = [] for x in range(n): k = int(input()) lazy.append(k) tasks.append(k) lazy.sort() tasks.sort(reverse = True) thing = list(zip(lazy, tasks)) total = 0 for x in thing: total += x[0] * x[1] print(int(total%10007)) ```
output
1
84,665
14
169,331
Provide tags and a correct Python 3 solution for this coding contest problem. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other after a long time. The sun is shining, birds are s...
instruction
0
84,666
14
169,332
Tags: implementation, sortings Correct Solution: ``` n = int(input()) dt = sorted([int(input()) for i in range(n)]) ans = 0 for i in range(n): ans += dt[i] * dt[-i-1] print(ans%10007) ```
output
1
84,666
14
169,333
Provide tags and a correct Python 3 solution for this coding contest problem. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other after a long time. The sun is shining, birds are s...
instruction
0
84,667
14
169,334
Tags: implementation, sortings Correct Solution: ``` n = int(input()) a = sorted([int(input()) for i in range(n)]) time = 0 for i in range(n): time += a[i] * a[n - 1 - i] print(time % 10007) ```
output
1
84,667
14
169,335
Provide tags and a correct Python 3 solution for this coding contest problem. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other after a long time. The sun is shining, birds are s...
instruction
0
84,668
14
169,336
Tags: implementation, sortings Correct Solution: ``` n=int(input()) a=[] for i in range(n): a.append(int(input())) a.sort() p1=0 p2=n-1 t=0 while p1<p2: t+=a[p1]*a[p2] p1+=1 p2-=1 t*=2 if n%2==1: t+=a[n//2]**2 print(t%10007) ```
output
1
84,668
14
169,337
Provide tags and a correct Python 3 solution for this coding contest problem. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other after a long time. The sun is shining, birds are s...
instruction
0
84,669
14
169,338
Tags: implementation, sortings Correct Solution: ``` n=int(input()) a = [] for _ in range(n): a.append(int(input())) a = sorted(a) b = sorted(a, reverse=True) print (sum([i*j for i,j in zip(a,b)]) % 10007) ```
output
1
84,669
14
169,339
Provide tags and a correct Python 3 solution for this coding contest problem. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other after a long time. The sun is shining, birds are s...
instruction
0
84,670
14
169,340
Tags: implementation, sortings Correct Solution: ``` # link: https://codeforces.com/problemset/problem/717/C from sys import stdin, stdout if __name__ == "__main__": n = int(stdin.readline()) difficulties = [0] * (n) for i in range(n): difficulties[i] = int(stdin.readline()) difficulties.sort(...
output
1
84,670
14
169,341
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other aft...
instruction
0
84,671
14
169,342
Yes
output
1
84,671
14
169,343
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other aft...
instruction
0
84,672
14
169,344
Yes
output
1
84,672
14
169,345
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other aft...
instruction
0
84,674
14
169,348
Yes
output
1
84,674
14
169,349
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other aft...
instruction
0
84,675
14
169,350
No
output
1
84,675
14
169,351
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other aft...
instruction
0
84,676
14
169,352
No
output
1
84,676
14
169,353
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other aft...
instruction
0
84,677
14
169,354
No
output
1
84,677
14
169,355
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Harry Water, Ronaldo, Her-my-oh-knee and their friends have started a new school year at their MDCS School of Speechcraft and Misery. At the time, they are very happy to have seen each other aft...
instruction
0
84,678
14
169,356
No
output
1
84,678
14
169,357
Provide tags and a correct Python 3 solution for this coding contest problem. Imp likes his plush toy a lot. <image> Recently, he found a machine that can clone plush toys. Imp knows that if he applies the machine to an original toy, he additionally gets one more original toy and one copy, and if he applies the mach...
instruction
0
84,750
14
169,500
Tags: implementation Correct Solution: ``` x, y = list(map(int, input().split())) if x < y - 1 or (x - y - 1) % 2 != 0 or (y == 1 and x != 0) or y == 0: print("NO") else: print("YES") ```
output
1
84,750
14
169,501
Provide tags and a correct Python 3 solution for this coding contest problem. Imp likes his plush toy a lot. <image> Recently, he found a machine that can clone plush toys. Imp knows that if he applies the machine to an original toy, he additionally gets one more original toy and one copy, and if he applies the mach...
instruction
0
84,751
14
169,502
Tags: implementation Correct Solution: ``` x,y = map(int, input().split()) if y > 0 and x >= 0: if (y == 1 and x > 0) or x == y: print('No') elif y == 1 and x == 0 : print('Yes') elif x < y and y > 1: if x == y - 1: print('Yes') else: print('No') e...
output
1
84,751
14
169,503