message stringlengths 2 20.2k | message_type stringclasses 2
values | message_id int64 0 1 | conversation_id int64 757 108k | cluster float64 4 4 | __index_level_0__ int64 1.51k 217k |
|---|---|---|---|---|---|
Provide tags and a correct Python 3 solution for this coding contest problem.
Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count the time he has wa... | instruction | 0 | 91,035 | 4 | 182,070 |
Tags: geometry
Correct Solution:
```
'''input
6 10
5 0
4 0
6 0
3 0
7 0
2 0
'''
n, k = map(int, input().split())
a, b = map(int, input().split())
d = 0
for _ in range(n-1):
x, y = map(int, input().split())
d += ((x-a)**2+(y-b)**2)**0.5
a, b = x, y
print(k*d/50)
``` | output | 1 | 91,035 | 4 | 182,071 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count the time he has wa... | instruction | 0 | 91,036 | 4 | 182,072 |
Tags: geometry
Correct Solution:
```
from math import *
n,k = map(int,input().split())
pts = []
for _ in range(n):
x,y = map(int,input().split())
pts.append((x,y))
s = 0
for i in range(n-1):
x,y = pts[i]
u,v = pts[i+1]
s += hypot(x-u,y-v)
print(s*k/50)
# C:\Users\Usuario\HOME2\Programacion\ACM
``` | output | 1 | 91,036 | 4 | 182,073 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count the time he has wa... | instruction | 0 | 91,037 | 4 | 182,074 |
Tags: geometry
Correct Solution:
```
import math
def dist(x0, y0, x1, y1):
return math.sqrt(math.pow((x1-x0), 2) + math.pow((y1-y0), 2))
tmp = input().split()
n, k = int(tmp[0]), float(tmp[1])
list_l = []
tmp = input().split()
list_l.append((float(tmp[0]), float(tmp[1])))
dist_sum = 0
for i in range(1, n):
... | output | 1 | 91,037 | 4 | 182,075 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count the time he has wa... | instruction | 0 | 91,039 | 4 | 182,078 |
Tags: geometry
Correct Solution:
```
import math
n,l=list(map(int,input().split()))
p=[]
for k in range(n):
p.append(list(map(int,input().split())))
s=0
for i in range(1,n):
s+=math.sqrt(abs(p[i-1][0]-p[i][0])**2+abs(p[i-1][1]-p[i][1])**2)
print(s*l/50)
``` | output | 1 | 91,039 | 4 | 182,079 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count the time he has wa... | instruction | 0 | 91,041 | 4 | 182,082 |
Tags: geometry
Correct Solution:
```
n, k = map(int, input().split())
d = 0
a,b = map(int, input().split())
for _ in range(n-1):
x,y = map(int, input().split())
d += ((x-a)**2 + (y-b)**2)**0.5
a,b = x,y
print((d * k)/50)
``` | output | 1 | 91,041 | 4 | 182,083 |
Provide a correct Python 3 solution for this coding contest problem.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will his growth be celebrated in Shichi-Go-San this time?
C... | instruction | 0 | 91,526 | 4 | 183,052 |
"Correct Solution:
```
print("YES" if input() in ['3','5','7'] else "NO")
``` | output | 1 | 91,526 | 4 | 183,053 |
Provide a correct Python 3 solution for this coding contest problem.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will his growth be celebrated in Shichi-Go-San this time?
C... | instruction | 0 | 91,527 | 4 | 183,054 |
"Correct Solution:
```
print(["NO", "YES"][[7, 5, 3].count(int(input()))])
``` | output | 1 | 91,527 | 4 | 183,055 |
Provide a correct Python 3 solution for this coding contest problem.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will his growth be celebrated in Shichi-Go-San this time?
C... | instruction | 0 | 91,528 | 4 | 183,056 |
"Correct Solution:
```
print(["NO","YES"][int(input()) in (3,5,7)])
``` | output | 1 | 91,528 | 4 | 183,057 |
Provide a correct Python 3 solution for this coding contest problem.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will his growth be celebrated in Shichi-Go-San this time?
C... | instruction | 0 | 91,529 | 4 | 183,058 |
"Correct Solution:
```
x=input()
print("YES" if x in "357" else "NO")
``` | output | 1 | 91,529 | 4 | 183,059 |
Provide a correct Python 3 solution for this coding contest problem.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will his growth be celebrated in Shichi-Go-San this time?
C... | instruction | 0 | 91,530 | 4 | 183,060 |
"Correct Solution:
```
n=int(input())
print('YES' if n==7 or n==5 or n==3 else 'NO')
``` | output | 1 | 91,530 | 4 | 183,061 |
Provide a correct Python 3 solution for this coding contest problem.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will his growth be celebrated in Shichi-Go-San this time?
C... | instruction | 0 | 91,531 | 4 | 183,062 |
"Correct Solution:
```
print(['NO','YES'][int(input())in[3,5,7]])
``` | output | 1 | 91,531 | 4 | 183,063 |
Provide a correct Python 3 solution for this coding contest problem.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will his growth be celebrated in Shichi-Go-San this time?
C... | instruction | 0 | 91,532 | 4 | 183,064 |
"Correct Solution:
```
X = input()
print("YES" if (X in "753") else "NO")
``` | output | 1 | 91,532 | 4 | 183,065 |
Provide a correct Python 3 solution for this coding contest problem.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will his growth be celebrated in Shichi-Go-San this time?
C... | instruction | 0 | 91,533 | 4 | 183,066 |
"Correct Solution:
```
print('YNEOS'[input() not in '753'::2])
``` | output | 1 | 91,533 | 4 | 183,067 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will... | instruction | 0 | 91,534 | 4 | 183,068 |
Yes | output | 1 | 91,534 | 4 | 183,069 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will... | instruction | 0 | 91,535 | 4 | 183,070 |
Yes | output | 1 | 91,535 | 4 | 183,071 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will... | instruction | 0 | 91,536 | 4 | 183,072 |
Yes | output | 1 | 91,536 | 4 | 183,073 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will... | instruction | 0 | 91,537 | 4 | 183,074 |
Yes | output | 1 | 91,537 | 4 | 183,075 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will... | instruction | 0 | 91,538 | 4 | 183,076 |
No | output | 1 | 91,538 | 4 | 183,077 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will... | instruction | 0 | 91,539 | 4 | 183,078 |
No | output | 1 | 91,539 | 4 | 183,079 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will... | instruction | 0 | 91,540 | 4 | 183,080 |
No | output | 1 | 91,540 | 4 | 183,081 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Shichi-Go-San (literally "Seven-Five-Three") is a traditional event in a certain country to celebrate the growth of seven-, five- and three-year-old children.
Takahashi is now X years old. Will... | instruction | 0 | 91,541 | 4 | 183,082 |
No | output | 1 | 91,541 | 4 | 183,083 |
Provide a correct Python 3 solution for this coding contest problem.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, or 5-3 without the year.
In this country, a date is call... | instruction | 0 | 91,542 | 4 | 183,084 |
"Correct Solution:
```
a,b = map(int,input().split())
a -= a > b
print(a)
``` | output | 1 | 91,542 | 4 | 183,085 |
Provide a correct Python 3 solution for this coding contest problem.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, or 5-3 without the year.
In this country, a date is call... | instruction | 0 | 91,543 | 4 | 183,086 |
"Correct Solution:
```
a, b = [int(x) for x in input().split()]
print(a-1) if a>b else print(a)
``` | output | 1 | 91,543 | 4 | 183,087 |
Provide a correct Python 3 solution for this coding contest problem.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, or 5-3 without the year.
In this country, a date is call... | instruction | 0 | 91,544 | 4 | 183,088 |
"Correct Solution:
```
a, b = list(map(int, input().split()))
print(a if (a<=b) else a-1)
``` | output | 1 | 91,544 | 4 | 183,089 |
Provide a correct Python 3 solution for this coding contest problem.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, or 5-3 without the year.
In this country, a date is call... | instruction | 0 | 91,545 | 4 | 183,090 |
"Correct Solution:
```
a,b = map(int,input().split())
ans = a-1
if b >= a:
ans += 1
print(ans)
``` | output | 1 | 91,545 | 4 | 183,091 |
Provide a correct Python 3 solution for this coding contest problem.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, or 5-3 without the year.
In this country, a date is call... | instruction | 0 | 91,546 | 4 | 183,092 |
"Correct Solution:
```
a,b = map(int, input().split())
print(1 if a ==1 else a if b>=a else a-1)
``` | output | 1 | 91,546 | 4 | 183,093 |
Provide a correct Python 3 solution for this coding contest problem.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, or 5-3 without the year.
In this country, a date is call... | instruction | 0 | 91,547 | 4 | 183,094 |
"Correct Solution:
```
a,b=map(int, input().split())
if a>b:
flag=1
else:
flag=0
print(a-flag)
``` | output | 1 | 91,547 | 4 | 183,095 |
Provide a correct Python 3 solution for this coding contest problem.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, or 5-3 without the year.
In this country, a date is call... | instruction | 0 | 91,548 | 4 | 183,096 |
"Correct Solution:
```
a,b = map(int,input().split())
if b >= a:
print(a)
else:
print(a-1)
``` | output | 1 | 91,548 | 4 | 183,097 |
Provide a correct Python 3 solution for this coding contest problem.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, or 5-3 without the year.
In this country, a date is call... | instruction | 0 | 91,549 | 4 | 183,098 |
"Correct Solution:
```
# coding: utf-8
a, b = map(int, input().split())
print([a - 1, a][a <= b])
``` | output | 1 | 91,549 | 4 | 183,099 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, o... | instruction | 0 | 91,550 | 4 | 183,100 |
Yes | output | 1 | 91,550 | 4 | 183,101 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, o... | instruction | 0 | 91,551 | 4 | 183,102 |
Yes | output | 1 | 91,551 | 4 | 183,103 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, o... | instruction | 0 | 91,552 | 4 | 183,104 |
Yes | output | 1 | 91,552 | 4 | 183,105 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, o... | instruction | 0 | 91,553 | 4 | 183,106 |
Yes | output | 1 | 91,553 | 4 | 183,107 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, o... | instruction | 0 | 91,554 | 4 | 183,108 |
No | output | 1 | 91,554 | 4 | 183,109 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, o... | instruction | 0 | 91,555 | 4 | 183,110 |
No | output | 1 | 91,555 | 4 | 183,111 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, o... | instruction | 0 | 91,556 | 4 | 183,112 |
No | output | 1 | 91,556 | 4 | 183,113 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In AtCoder Kingdom, Gregorian calendar is used, and dates are written in the "year-month-day" order, or the "month-day" order without the year.
For example, May 3, 2018 is written as 2018-5-3, o... | instruction | 0 | 91,557 | 4 | 183,114 |
No | output | 1 | 91,557 | 4 | 183,115 |
Provide a correct Python 3 solution for this coding contest problem.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that prints `Heisei` if the date represented by S is not later... | instruction | 0 | 92,449 | 4 | 184,898 |
"Correct Solution:
```
print(["Heisei","TBD"][input()[5:7]>"04"])
``` | output | 1 | 92,449 | 4 | 184,899 |
Provide a correct Python 3 solution for this coding contest problem.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that prints `Heisei` if the date represented by S is not later... | instruction | 0 | 92,450 | 4 | 184,900 |
"Correct Solution:
```
s=input().replace("/","")
print("Heisei" if int(s)<=20190430 else "TBD")
``` | output | 1 | 92,450 | 4 | 184,901 |
Provide a correct Python 3 solution for this coding contest problem.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that prints `Heisei` if the date represented by S is not later... | instruction | 0 | 92,451 | 4 | 184,902 |
"Correct Solution:
```
S=str(input())
if int(S[5:7])<=4:
print('Heisei')
else:
print('TBD')
``` | output | 1 | 92,451 | 4 | 184,903 |
Provide a correct Python 3 solution for this coding contest problem.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that prints `Heisei` if the date represented by S is not later... | instruction | 0 | 92,452 | 4 | 184,904 |
"Correct Solution:
```
print('Heisei' if int(input()[5:7]) <= 4 else 'TBD')
``` | output | 1 | 92,452 | 4 | 184,905 |
Provide a correct Python 3 solution for this coding contest problem.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that prints `Heisei` if the date represented by S is not later... | instruction | 0 | 92,453 | 4 | 184,906 |
"Correct Solution:
```
a = input()
if a < '2019/05/01':
print('Heisei')
else:
print('TBD')
``` | output | 1 | 92,453 | 4 | 184,907 |
Provide a correct Python 3 solution for this coding contest problem.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that prints `Heisei` if the date represented by S is not later... | instruction | 0 | 92,454 | 4 | 184,908 |
"Correct Solution:
```
s = input()
print('Heisei' if '2019/04/30' >= s else 'TBD')
``` | output | 1 | 92,454 | 4 | 184,909 |
Provide a correct Python 3 solution for this coding contest problem.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that prints `Heisei` if the date represented by S is not later... | instruction | 0 | 92,455 | 4 | 184,910 |
"Correct Solution:
```
S = input()
print('TBD' if S > '2019/04/30' else 'Heisei')
``` | output | 1 | 92,455 | 4 | 184,911 |
Provide a correct Python 3 solution for this coding contest problem.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that prints `Heisei` if the date represented by S is not later... | instruction | 0 | 92,456 | 4 | 184,912 |
"Correct Solution:
```
S=input()
if int(S[5]+S[6])>=5:
print('TBD')
else:
print('Heisei')
``` | output | 1 | 92,456 | 4 | 184,913 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that p... | instruction | 0 | 92,457 | 4 | 184,914 |
Yes | output | 1 | 92,457 | 4 | 184,915 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that p... | instruction | 0 | 92,458 | 4 | 184,916 |
Yes | output | 1 | 92,458 | 4 | 184,917 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that p... | instruction | 0 | 92,459 | 4 | 184,918 |
Yes | output | 1 | 92,459 | 4 | 184,919 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that p... | instruction | 0 | 92,460 | 4 | 184,920 |
Yes | output | 1 | 92,460 | 4 | 184,921 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You are given a string S as input. This represents a valid date in the year 2019 in the `yyyy/mm/dd` format. (For example, April 30, 2019 is represented as `2019/04/30`.)
Write a program that p... | instruction | 0 | 92,461 | 4 | 184,922 |
No | output | 1 | 92,461 | 4 | 184,923 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.