message
stringlengths
2
39.6k
message_type
stringclasses
2 values
message_id
int64
0
1
conversation_id
int64
450
109k
cluster
float64
2
2
__index_level_0__
int64
900
217k
Provide tags and a correct Python 3 solution for this coding contest problem. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. Hulk likes the Inception so much, and like that ...
instruction
0
25,222
2
50,444
Tags: implementation Correct Solution: ``` n= int(input()) a = 'I hate it' cb = 'I hate that I love it' cd = 'I hate that I love that ' if n == 1 : print(a) elif n==2: print(cb) elif n%2==0: print(cd*((n-2)//2)+cb) else: print(cd*((n-1)//2)+a) ```
output
1
25,222
2
50,445
Provide tags and a correct Python 3 solution for this coding contest problem. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. Hulk likes the Inception so much, and like that ...
instruction
0
25,223
2
50,446
Tags: implementation Correct Solution: ``` # n, m, a = (int(x) for x in input().split()) n = int(input()) line = None for i in range(n): if i % 2 == 0: if line is None: line = 'I hate' else: line = f'{line} that I hate' else: line = f'{line} that I love' print...
output
1
25,223
2
50,447
Provide tags and a correct Python 3 solution for this coding contest problem. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. Hulk likes the Inception so much, and like that ...
instruction
0
25,225
2
50,450
Tags: implementation Correct Solution: ``` n=int(input()) s="" for i in range(1,n): if i%2==0: s=s+"I love" else: s=s+"I hate" s=s+" that " if n%2==0: s=s+"I love it" else: s=s+"I hate it" print (s) ```
output
1
25,225
2
50,451
Provide tags and a correct Python 3 solution for this coding contest problem. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. Hulk likes the Inception so much, and like that ...
instruction
0
25,226
2
50,452
Tags: implementation Correct Solution: ``` n = int(input()) arr = "" for i in range(n): if(i%2 == 1): arr+="I love that " else: arr+="I hate that " length = len(arr) print(arr[:length-5]+"it") ```
output
1
25,226
2
50,453
Provide tags and a correct Python 3 solution for this coding contest problem. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. Hulk likes the Inception so much, and like that ...
instruction
0
25,227
2
50,454
Tags: implementation Correct Solution: ``` n = int(input()) a = "I hate" b = "I love" final = '' for i in range(n): if(i%2!=0): final+=b else: final+=a if(i<n-1): final+=' that' final+=' ' final+='it' print(final) ```
output
1
25,227
2
50,455
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. H...
instruction
0
25,228
2
50,456
Yes
output
1
25,228
2
50,457
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. H...
instruction
0
25,229
2
50,458
Yes
output
1
25,229
2
50,459
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. H...
instruction
0
25,230
2
50,460
Yes
output
1
25,230
2
50,461
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. H...
instruction
0
25,231
2
50,462
Yes
output
1
25,231
2
50,463
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. H...
instruction
0
25,232
2
50,464
No
output
1
25,232
2
50,465
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. H...
instruction
0
25,233
2
50,466
No
output
1
25,233
2
50,467
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. H...
instruction
0
25,234
2
50,468
No
output
1
25,234
2
50,469
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. H...
instruction
0
25,235
2
50,470
No
output
1
25,235
2
50,471
Provide tags and a correct Python 3 solution for this coding contest problem. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamepad have 26 buttons. Each button has a single lo...
instruction
0
26,582
2
53,164
Tags: greedy, sortings, two pointers Correct Solution: ``` from sys import stdin n,m=map(int,stdin.readline().strip().split()) s=list(map(int,stdin.readline().strip().split())) s1=stdin.readline().strip() x=[s[0]] cur=s1[0] y=1 ans=0 while y<n: if s1[y]==cur: x.append(s[y]) else: cur=s1[y] ...
output
1
26,582
2
53,165
Provide tags and a correct Python 3 solution for this coding contest problem. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamepad have 26 buttons. Each button has a single lo...
instruction
0
26,583
2
53,166
Tags: greedy, sortings, two pointers Correct Solution: ``` n,k=map(int,input().split()) d=list(map(int,input().split())) o=list(input()) p=0 r=1 result=0 while p<n: if p+1 < n and o[p] == o[p+1]: r+=1 p+=1 else: start=p-r+1 end=p h=sorted(d[start:end+1],reverse=True) ...
output
1
26,583
2
53,167
Provide tags and a correct Python 3 solution for this coding contest problem. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamepad have 26 buttons. Each button has a single lo...
instruction
0
26,584
2
53,168
Tags: greedy, sortings, two pointers Correct Solution: ``` import heapq def solve(): n, k = [int(x) for x in input().split()] vals = [int(x) for x in input().split()] buttons = input() seqs = split_seqs(vals, buttons) print(sum(seq_val(seq, k) for seq in seqs)) def split_seqs(vals, buttons): s...
output
1
26,584
2
53,169
Provide tags and a correct Python 3 solution for this coding contest problem. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamepad have 26 buttons. Each button has a single lo...
instruction
0
26,585
2
53,170
Tags: greedy, sortings, two pointers Correct Solution: ``` import sys if __name__ == "__main__": [n1, k1] = sys.stdin.readline().split(' ') n = int(n1) k = int(k1) v = list(map(lambda x: int(x), sys.stdin.readline().split(' '))) s = sys.stdin.readline() v = list(zip(v, range(0, len(v)), s)) ...
output
1
26,585
2
53,171
Provide tags and a correct Python 3 solution for this coding contest problem. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamepad have 26 buttons. Each button has a single lo...
instruction
0
26,586
2
53,172
Tags: greedy, sortings, two pointers Correct Solution: ``` # Author: Narut Sereewattanawoot def Read(f = int): return [f(x) for x in input().split()] def FloatsToString(arr): return ' '.join('{:.10f}'.format(x) for x in arr) n, k = Read(int) A = Read(int) s = input() tmp = [] prev = ' ' dmg = 0 for i in range...
output
1
26,586
2
53,173
Provide tags and a correct Python 3 solution for this coding contest problem. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamepad have 26 buttons. Each button has a single lo...
instruction
0
26,587
2
53,174
Tags: greedy, sortings, two pointers Correct Solution: ``` import sys import itertools import re import heapq data = sys.stdin.read().splitlines() n, m = map(int, data[0].split()) nums = tuple(map(int, data[1].split())) s = data[2] ans = 0 i = 0 for ch, g in itertools.groupby(s): l = len(list(g)) j = i + l ...
output
1
26,587
2
53,175
Provide tags and a correct Python 3 solution for this coding contest problem. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamepad have 26 buttons. Each button has a single lo...
instruction
0
26,588
2
53,176
Tags: greedy, sortings, two pointers Correct Solution: ``` n,k=map(int,input().split()) a=list(map(int,input().split())) s=input() l=0 r=1 ans=0 while(l<n): ls=[a[l]] r=l+1 while(r<n and s[l]==s[r]): ls.append(a[r]) r+=1 seql=r-l nn=0 if seql>k: nn=seql//k if nn>1: ...
output
1
26,588
2
53,177
Provide tags and a correct Python 3 solution for this coding contest problem. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamepad have 26 buttons. Each button has a single lo...
instruction
0
26,589
2
53,178
Tags: greedy, sortings, two pointers Correct Solution: ``` from heapq import heappush, heappop n, k = list(map(int, input().split())) a = list(map(int, input().split())) a.append(0) s = input().strip() + "#" h = [] ret = 0 for i, c in enumerate(s): if i != 0 and s[i-1] != c: for j in range(min(len(h), k...
output
1
26,589
2
53,179
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamep...
instruction
0
26,590
2
53,180
Yes
output
1
26,590
2
53,181
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamep...
instruction
0
26,591
2
53,182
Yes
output
1
26,591
2
53,183
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamep...
instruction
0
26,592
2
53,184
Yes
output
1
26,592
2
53,185
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamep...
instruction
0
26,593
2
53,186
Yes
output
1
26,593
2
53,187
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamep...
instruction
0
26,594
2
53,188
No
output
1
26,594
2
53,189
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamep...
instruction
0
26,595
2
53,190
No
output
1
26,595
2
53,191
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamep...
instruction
0
26,596
2
53,192
No
output
1
26,596
2
53,193
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamep...
instruction
0
26,597
2
53,194
No
output
1
26,597
2
53,195
Provide tags and a correct Python 3 solution for this coding contest problem. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discover the escape after t hours and will chase the p...
instruction
0
27,665
2
55,330
Tags: implementation, math Correct Solution: ``` def check(a, b, x1, x2): return (x1 / a) > (x2 / b) vp = int(input()) vd = int(input()) t = int(input()) f = int(input()) c = int(input()) if vp >= vd: print(0) exit(0) cnt = 0 princess = t * vp while check(vp, vd, c - princess, c): cnt += 1 princess ...
output
1
27,665
2
55,331
Provide tags and a correct Python 3 solution for this coding contest problem. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discover the escape after t hours and will chase the p...
instruction
0
27,666
2
55,332
Tags: implementation, math Correct Solution: ``` vp=float(input()) vd=float(input()) t=float(input()) f=float(input()) c=float(input()) bijous=0; x=vd-vp if vp<vd: distance=vd*vp*t/x while distance<c: distance=vd*(distance+vp*(f+distance/vd))/x bijous+=1 print(bijous) exit() ```
output
1
27,666
2
55,333
Provide tags and a correct Python 3 solution for this coding contest problem. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discover the escape after t hours and will chase the p...
instruction
0
27,667
2
55,334
Tags: implementation, math Correct Solution: ``` vp=int(input()) vd=int(input()) t=int(input()) f=int(input()) c=int(input()) num=0 if vp>=vd: print (num) else: dis=(vd*t*vp)/(vd-vp) if dis>=c: print(num) else: while dis<c: dis=dis+vp*(2*dis+vd*f)/(vd-vp) num+=1 ...
output
1
27,667
2
55,335
Provide tags and a correct Python 3 solution for this coding contest problem. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discover the escape after t hours and will chase the p...
instruction
0
27,668
2
55,336
Tags: implementation, math Correct Solution: ``` vp = int(input()) vd = int(input()) t = int(input()) f = int(input()) c = int(input()) princes = vp * t dragons = 0 items = 0 if vp < vd : while princes < c : time = princes / (vd - vp) princes += time * vp if princes >= c : br...
output
1
27,668
2
55,337
Provide tags and a correct Python 3 solution for this coding contest problem. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discover the escape after t hours and will chase the p...
instruction
0
27,669
2
55,338
Tags: implementation, math Correct Solution: ``` from fractions import Fraction def solve(vp, vd, t, f, c): pos_dragon = -t*vd pos_princess = 0 ans = 0 while True: if vp < vd: time_dragon_overtake = Fraction(pos_princess-pos_dragon, vd-vp) else: time_dragon_ove...
output
1
27,669
2
55,339
Provide tags and a correct Python 3 solution for this coding contest problem. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discover the escape after t hours and will chase the p...
instruction
0
27,670
2
55,340
Tags: implementation, math Correct Solution: ``` from fractions import Fraction vp, vd, t, f, c = int(input()), int(input()), int(input()), int(input()), int(input()) if vp >= vd: print(0) else: d, b = Fraction(vp * vd * t, vd - vp), 0 while d < c: d += Fraction(vp * (2 * d + f * vd), vd - vp) ...
output
1
27,670
2
55,341
Provide tags and a correct Python 3 solution for this coding contest problem. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discover the escape after t hours and will chase the p...
instruction
0
27,671
2
55,342
Tags: implementation, math Correct Solution: ``` import math v_p = int(input().strip()) v_d = int(input().strip()) t = int(input().strip()) f = int(input().strip()) c = int(input().strip()) if v_p >= v_d: print(0) else: p_time = c / v_p p_s = t * v_p girl_time = c / v_p dragon_reach_girl = p_s / (v...
output
1
27,671
2
55,343
Provide tags and a correct Python 3 solution for this coding contest problem. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discover the escape after t hours and will chase the p...
instruction
0
27,672
2
55,344
Tags: implementation, math Correct Solution: ``` vp, vd, t, f, c = [int(input()) for i in range(5)] if vp >= vd: print(0) else: curr = vp*t count = 0 while curr < c: time = curr/(vd - vp) if (c-curr)/vp <= time: break curr += (2*time + f)*v...
output
1
27,672
2
55,345
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discove...
instruction
0
27,673
2
55,346
Yes
output
1
27,673
2
55,347
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discove...
instruction
0
27,674
2
55,348
Yes
output
1
27,674
2
55,349
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discove...
instruction
0
27,675
2
55,350
Yes
output
1
27,675
2
55,351
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discove...
instruction
0
27,676
2
55,352
Yes
output
1
27,676
2
55,353
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discove...
instruction
0
27,677
2
55,354
No
output
1
27,677
2
55,355
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discove...
instruction
0
27,678
2
55,356
No
output
1
27,678
2
55,357
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discove...
instruction
0
27,679
2
55,358
No
output
1
27,679
2
55,359
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. The princess is going to escape the dragon's cave, and she needs to plan it carefully. The princess runs at vp miles per hour, and the dragon flies at vd miles per hour. The dragon will discove...
instruction
0
27,680
2
55,360
No
output
1
27,680
2
55,361
Provide tags and a correct Python 3 solution for this coding contest problem. Vanya and his friend Vova play a computer game where they need to destroy n monsters to pass a level. Vanya's character performs attack with frequency x hits per second and Vova's character performs attack with frequency y hits per second. E...
instruction
0
27,851
2
55,702
Tags: binary search, implementation, math, sortings Correct Solution: ``` from collections import OrderedDict def main(): n, x, y = map(int, input().split()) table = [] ix, iy = 1,1 while ix <= x or iy <= y: if ix*x < iy*y: table.append(1) ix += 1 elif ix*x >...
output
1
27,851
2
55,703
Provide tags and a correct Python 3 solution for this coding contest problem. Vanya and his friend Vova play a computer game where they need to destroy n monsters to pass a level. Vanya's character performs attack with frequency x hits per second and Vova's character performs attack with frequency y hits per second. E...
instruction
0
27,852
2
55,704
Tags: binary search, implementation, math, sortings Correct Solution: ``` n,x,y=map(int,input().split()) def fun(a1,x1,y1): return (a1*x1+x1+y1-1)//(x+y) for _ in range(n): a=int(input()) op1=fun(a,x,y)*y#cal for Vova op2=fun(a,y,x)*x#cal for Vanya if op1==op2:print('Both') elif op1<op2:print('Vanya') eli...
output
1
27,852
2
55,705
Provide tags and a correct Python 3 solution for this coding contest problem. Vanya and his friend Vova play a computer game where they need to destroy n monsters to pass a level. Vanya's character performs attack with frequency x hits per second and Vova's character performs attack with frequency y hits per second. E...
instruction
0
27,853
2
55,706
Tags: binary search, implementation, math, sortings Correct Solution: ``` from fractions import gcd n, x, y = map(int, input().split()) g = gcd(x, y) x //= g y //= g a = sorted([y * i for i in range(1, x)] + [x * i for i in range(1, y)]) def f(n): n %= x + y if n == 0 or n == x + y - 1: return "Both"...
output
1
27,853
2
55,707
Provide tags and a correct Python 3 solution for this coding contest problem. Vanya and his friend Vova play a computer game where they need to destroy n monsters to pass a level. Vanya's character performs attack with frequency x hits per second and Vova's character performs attack with frequency y hits per second. E...
instruction
0
27,854
2
55,708
Tags: binary search, implementation, math, sortings Correct Solution: ``` __author__ = 'zhan' [n, x, y] = [int(i) for i in input().split()] inpu = [0] * n for i in range(n): inpu[i] = int(input()) ox = x oy = y loop = x + y hits = [2]*(loop+1) i = 1 while i <= loop: if y < x: hits[i] = 0 y += o...
output
1
27,854
2
55,709
Provide tags and a correct Python 3 solution for this coding contest problem. Vanya and his friend Vova play a computer game where they need to destroy n monsters to pass a level. Vanya's character performs attack with frequency x hits per second and Vova's character performs attack with frequency y hits per second. E...
instruction
0
27,855
2
55,710
Tags: binary search, implementation, math, sortings Correct Solution: ``` n,x,y = map(int,input().split()) while n>0 : s = int(input()) a = x*(s+1)//(x+y) b = y*(s+1)//(x+y) if a*y == b*x : print("Both") elif int(a)/x<int(b)/y : print("Vova") else : print("Vanya") ...
output
1
27,855
2
55,711