message stringlengths 2 67k | message_type stringclasses 2
values | message_id int64 0 1 | conversation_id int64 463 109k | cluster float64 19 19 | __index_level_0__ int64 926 217k |
|---|---|---|---|---|---|
Provide tags and a correct Python 3 solution for this coding contest problem.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player should write any integer number that is a non-triv... | instruction | 0 | 57,316 | 19 | 114,632 |
Tags: games, math, number theory
Correct Solution:
```
import operator
from functools import reduce
def read_int():
return int(input().strip())
def read_ints():
return list(map(int, input().strip().split(' ')))
def sqrt(n):
low, high = 1, 10**7
while low < high:
mid = (low+high)//2
... | output | 1 | 57,316 | 19 | 114,633 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player should write any integer number that is a non-triv... | instruction | 0 | 57,317 | 19 | 114,634 |
Tags: games, math, number theory
Correct Solution:
```
n=eval(input())
t=n
l=[0]
for i in range(2,int(n**0.5)+1):
while n%i==0:
n/=i
l.append(int(i))
if n>1 and n!=t:
l.append(int(n))
if (len(l)!=3):
try:
print("1\n{}".format(l[1]*l[2]))
except:
print("1\n0")
else:
pr... | output | 1 | 57,317 | 19 | 114,635 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player should write any integer number that is a non-triv... | instruction | 0 | 57,318 | 19 | 114,636 |
Tags: games, math, number theory
Correct Solution:
```
#------------------------template--------------------------#
import os
import sys
from math import *
from collections import *
from fractions import *
from bisect import *
from heapq import*
from io import BytesIO, IOBase
def vsInput():
sys.stdin = open('input.... | output | 1 | 57,318 | 19 | 114,637 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player should write any integer number that is a non-triv... | instruction | 0 | 57,319 | 19 | 114,638 |
Tags: games, math, number theory
Correct Solution:
```
import math
import sys
import collections
from collections import defaultdict
from sys import stdin, stdout
sys.setrecursionlimit(10**9)
def isPrime(n):
flag=0
if n==2:
return True
for i in range(2,math.ceil(math.sqrt(n+1))+1):
if n%i=... | output | 1 | 57,319 | 19 | 114,639 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player should write any integer number that is a non-triv... | instruction | 0 | 57,320 | 19 | 114,640 |
Tags: games, math, number theory
Correct Solution:
```
import sys
from functools import lru_cache, cmp_to_key
from heapq import merge, heapify, heappop, heappush
from math import *
from collections import defaultdict as dd, deque, Counter as C
from itertools import combinations as comb, permutations as perm
from bisect... | output | 1 | 57,320 | 19 | 114,641 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player should write any integer number that is a non-triv... | instruction | 0 | 57,321 | 19 | 114,642 |
Tags: games, math, number theory
Correct Solution:
```
from math import sqrt
def prime(n):
if n in [2, 3]:
return True
if n < 2 or n % 2 == 0 or n % 3 == 0:
return False
i = 5
while (i * i <= n):
if n % i == 0 or n % (i + 2) == 0:
return False
i += 6
ret... | output | 1 | 57,321 | 19 | 114,643 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player should write any integer number that is a non-triv... | instruction | 0 | 57,322 | 19 | 114,644 |
Tags: games, math, number theory
Correct Solution:
```
import sys
line = sys.stdin.readline()
N = int(line)
tmp = N
factor = []
i = 2
while i**2 <= tmp:
if tmp % i == 0:
tmp //= i
factor.append(i)
else: i += 1
if tmp != 1: factor.append(i)
if len(factor) == 2: print(2)
else:
print(1)
if ... | output | 1 | 57,322 | 19 | 114,645 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player should write any integer number that is a non-triv... | instruction | 0 | 57,323 | 19 | 114,646 |
Tags: games, math, number theory
Correct Solution:
```
import sys
from collections import defaultdict
import math
MAXNUM = math.inf
MINNUM = -1 * math.inf
ASCIILOWER = 97
ASCIIUPPER = 65
def getInt():
return int(sys.stdin.readline().rstrip())
def getInts():
return map(int, sys.stdin.readline().rstrip().spl... | output | 1 | 57,323 | 19 | 114,647 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player sho... | instruction | 0 | 57,324 | 19 | 114,648 |
Yes | output | 1 | 57,324 | 19 | 114,649 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player sho... | instruction | 0 | 57,325 | 19 | 114,650 |
Yes | output | 1 | 57,325 | 19 | 114,651 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player sho... | instruction | 0 | 57,326 | 19 | 114,652 |
Yes | output | 1 | 57,326 | 19 | 114,653 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player sho... | instruction | 0 | 57,327 | 19 | 114,654 |
Yes | output | 1 | 57,327 | 19 | 114,655 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player sho... | instruction | 0 | 57,328 | 19 | 114,656 |
No | output | 1 | 57,328 | 19 | 114,657 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player sho... | instruction | 0 | 57,329 | 19 | 114,658 |
No | output | 1 | 57,329 | 19 | 114,659 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player sho... | instruction | 0 | 57,330 | 19 | 114,660 |
No | output | 1 | 57,330 | 19 | 114,661 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You can't possibly imagine how cold our friends are this winter in Nvodsk! Two of them play the following game to warm up: initially a piece of paper has an integer q. During a move a player sho... | instruction | 0 | 57,331 | 19 | 114,662 |
No | output | 1 | 57,331 | 19 | 114,663 |
Provide tags and a correct Python 3 solution for this coding contest problem.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operation is repeated for several times: a coin is pas... | instruction | 0 | 57,492 | 19 | 114,984 |
Tags: implementation
Correct Solution:
```
a = [int(i) for i in input().split()]
summa = sum(a)
if summa == 0:
print (-1)
elif summa % 5 == 0:
print (summa//5)
else:
print (-1)
``` | output | 1 | 57,492 | 19 | 114,985 |
Provide tags and a correct Python 3 solution for this coding contest problem.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operation is repeated for several times: a coin is pas... | instruction | 0 | 57,493 | 19 | 114,986 |
Tags: implementation
Correct Solution:
```
s=sum(map(int,input().split()))
if s%5==0 and s!=0:
print(s//5)
else:
print('-1')
``` | output | 1 | 57,493 | 19 | 114,987 |
Provide tags and a correct Python 3 solution for this coding contest problem.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operation is repeated for several times: a coin is pas... | instruction | 0 | 57,494 | 19 | 114,988 |
Tags: implementation
Correct Solution:
```
coin = sum(list(map(int, input().split())))
if (coin % 5 == 0 and coin != 0):
print(coin//5)
else:
print(-1)
``` | output | 1 | 57,494 | 19 | 114,989 |
Provide tags and a correct Python 3 solution for this coding contest problem.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operation is repeated for several times: a coin is pas... | instruction | 0 | 57,495 | 19 | 114,990 |
Tags: implementation
Correct Solution:
```
a=map(int, input().split(" "))
sum=0
for i in a:
sum+=i
if sum%5==0 and sum>0:
print(sum//5)
else:
print(-1)
``` | output | 1 | 57,495 | 19 | 114,991 |
Provide tags and a correct Python 3 solution for this coding contest problem.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operation is repeated for several times: a coin is pas... | instruction | 0 | 57,496 | 19 | 114,992 |
Tags: implementation
Correct Solution:
```
a=list(map(int,input().split()))
s=sum(a)
if s==0 or s//5!=s/5: print(-1)
else: print(s//5)
``` | output | 1 | 57,496 | 19 | 114,993 |
Provide tags and a correct Python 3 solution for this coding contest problem.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operation is repeated for several times: a coin is pas... | instruction | 0 | 57,497 | 19 | 114,994 |
Tags: implementation
Correct Solution:
```
a = list(map(int, input().split()))
s = sum(a)
if s % 5 == 0 and s > 0:
print(int(s/5))
else:
print(-1)
``` | output | 1 | 57,497 | 19 | 114,995 |
Provide tags and a correct Python 3 solution for this coding contest problem.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operation is repeated for several times: a coin is pas... | instruction | 0 | 57,498 | 19 | 114,996 |
Tags: implementation
Correct Solution:
```
a=[int(i) for i in input().split()]
i=0
h=0
while i<len(a):
h=h+a[i]
i+=1
if h%len(a)==0 and h>0:
print(h//len(a))
else:
print(-1)
``` | output | 1 | 57,498 | 19 | 114,997 |
Provide tags and a correct Python 3 solution for this coding contest problem.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operation is repeated for several times: a coin is pas... | instruction | 0 | 57,499 | 19 | 114,998 |
Tags: implementation
Correct Solution:
```
n = sum(list(map(int, input().split())))
k = n//5 if n%5==0 else -1
print(k if k>0 else -1)
``` | output | 1 | 57,499 | 19 | 114,999 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operati... | instruction | 0 | 57,500 | 19 | 115,000 |
Yes | output | 1 | 57,500 | 19 | 115,001 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operati... | instruction | 0 | 57,501 | 19 | 115,002 |
Yes | output | 1 | 57,501 | 19 | 115,003 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operati... | instruction | 0 | 57,502 | 19 | 115,004 |
Yes | output | 1 | 57,502 | 19 | 115,005 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operati... | instruction | 0 | 57,503 | 19 | 115,006 |
Yes | output | 1 | 57,503 | 19 | 115,007 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operati... | instruction | 0 | 57,504 | 19 | 115,008 |
No | output | 1 | 57,504 | 19 | 115,009 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operati... | instruction | 0 | 57,505 | 19 | 115,010 |
No | output | 1 | 57,505 | 19 | 115,011 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operati... | instruction | 0 | 57,506 | 19 | 115,012 |
No | output | 1 | 57,506 | 19 | 115,013 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins b as an initial bet. After all players make their bets of b coins, the following operati... | instruction | 0 | 57,507 | 19 | 115,014 |
No | output | 1 | 57,507 | 19 | 115,015 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Allen and Bessie are playing a simple number game. They both know a function f: \{0, 1\}^n β R, i. e. the function takes n binary arguments and returns a real value. At the start of the game, the variables x_1, x_2, ..., x_n are all set to -... | instruction | 0 | 57,764 | 19 | 115,528 |
Tags: math
Correct Solution:
```
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import time
(n, r) = (int(i) for i in input().split())
c = [int(i) for i in input().split()]
start = time.time()
s = sum(c)
n2 = 2**n
ans = [s/n2]
for i in range(r):
(k, new) = (int(i) for i in input().split())
s +=... | output | 1 | 57,764 | 19 | 115,529 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Allen and Bessie are playing a simple number game. They both know a function f: \{0, 1\}^n β R, i. e. the function takes n binary arguments and returns a real value. At the start of the game, th... | instruction | 0 | 57,765 | 19 | 115,530 |
No | output | 1 | 57,765 | 19 | 115,531 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Allen and Bessie are playing a simple number game. They both know a function f: \{0, 1\}^n β R, i. e. the function takes n binary arguments and returns a real value. At the start of the game, th... | instruction | 0 | 57,766 | 19 | 115,532 |
No | output | 1 | 57,766 | 19 | 115,533 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Allen and Bessie are playing a simple number game. They both know a function f: \{0, 1\}^n β R, i. e. the function takes n binary arguments and returns a real value. At the start of the game, th... | instruction | 0 | 57,767 | 19 | 115,534 |
No | output | 1 | 57,767 | 19 | 115,535 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first player can take from 1 to k1 balls from his box ... | instruction | 0 | 58,418 | 19 | 116,836 |
Tags: constructive algorithms, math
Correct Solution:
```
def main() -> object:
"""
:rtype : string
:return: Who wins.
"""
n1, n2, k1, k2 = [int(i) for i in input().split()]
if n1 > n2:
return "First"
else:
return "Second"
if __name__ == "__main__":
print(main())
``` | output | 1 | 58,418 | 19 | 116,837 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first player can take from 1 to k1 balls from his box ... | instruction | 0 | 58,419 | 19 | 116,838 |
Tags: constructive algorithms, math
Correct Solution:
```
entrada = input().split(" ")
n1 = int(entrada[0])
n2 = int(entrada[1])
k1 = int(entrada[2])
k2 = int(entrada[3])
if(n1 > n2):
print("First")
else:
print("Second")
#maratona-unicamp
``` | output | 1 | 58,419 | 19 | 116,839 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first player can take from 1 to k1 balls from his box ... | instruction | 0 | 58,420 | 19 | 116,840 |
Tags: constructive algorithms, math
Correct Solution:
```
nk = input().split()
if int(nk[0])>int(nk[1]) :
print("First")
else :
print("Second")
``` | output | 1 | 58,420 | 19 | 116,841 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first player can take from 1 to k1 balls from his box ... | instruction | 0 | 58,421 | 19 | 116,842 |
Tags: constructive algorithms, math
Correct Solution:
```
n1,n2,l1,l2=map(int,input().split())
if(n1>n2):
print("First")
else:
print("Second")
``` | output | 1 | 58,421 | 19 | 116,843 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first player can take from 1 to k1 balls from his box ... | instruction | 0 | 58,422 | 19 | 116,844 |
Tags: constructive algorithms, math
Correct Solution:
```
n,m,k1,k2=map(int,input().split())
if n==m:
print("Second")
elif n>m:
print("First")
else:
print("Second")
``` | output | 1 | 58,422 | 19 | 116,845 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first player can take from 1 to k1 balls from his box ... | instruction | 0 | 58,423 | 19 | 116,846 |
Tags: constructive algorithms, math
Correct Solution:
```
b = list(map(int, input().split()))
i = 0
if b[0] > b[1]:
print('First')
else:
print('Second')
``` | output | 1 | 58,423 | 19 | 116,847 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first player can take from 1 to k1 balls from his box ... | instruction | 0 | 58,424 | 19 | 116,848 |
Tags: constructive algorithms, math
Correct Solution:
```
n1, n2, k1, k2 = map(int,input().split())
if n1 == n2:
print('Second')
elif n1<n2:
print('Second')
else:
print('First')
``` | output | 1 | 58,424 | 19 | 116,849 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first player can take from 1 to k1 balls from his box ... | instruction | 0 | 58,425 | 19 | 116,850 |
Tags: constructive algorithms, math
Correct Solution:
```
"""
βββ βββββββ βββ βββββββ βββββββ βββ ββββββ
βββββββββββββββ βββββββββββββββββββββββββββββ
ββββββ ββββββ ββββββββββββββββββββββββββββ
ββββββ ββββββ βββββββ βββββββββ βββ βββββββ
βββββββββββββββ βββββββββββββββββ βββ βββββββ
βββ βββββ... | output | 1 | 58,425 | 19 | 116,851 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first p... | instruction | 0 | 58,426 | 19 | 116,852 |
Yes | output | 1 | 58,426 | 19 | 116,853 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first p... | instruction | 0 | 58,427 | 19 | 116,854 |
Yes | output | 1 | 58,427 | 19 | 116,855 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first p... | instruction | 0 | 58,428 | 19 | 116,856 |
Yes | output | 1 | 58,428 | 19 | 116,857 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first p... | instruction | 0 | 58,429 | 19 | 116,858 |
Yes | output | 1 | 58,429 | 19 | 116,859 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first p... | instruction | 0 | 58,430 | 19 | 116,860 |
No | output | 1 | 58,430 | 19 | 116,861 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly n1 balls and second player's box contains exactly n2 balls. In one move first p... | instruction | 0 | 58,431 | 19 | 116,862 |
No | output | 1 | 58,431 | 19 | 116,863 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.