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 |
|---|---|---|---|---|---|
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The time on the planet Lapituletti goes the same way it goes on Earth but a day lasts h hours and each hour lasts m minutes. The inhabitants of that planet use digital clocks similar to earth on... | instruction | 0 | 5,262 | 4 | 10,524 |
Yes | output | 1 | 5,262 | 4 | 10,525 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The time on the planet Lapituletti goes the same way it goes on Earth but a day lasts h hours and each hour lasts m minutes. The inhabitants of that planet use digital clocks similar to earth on... | instruction | 0 | 5,263 | 4 | 10,526 |
Yes | output | 1 | 5,263 | 4 | 10,527 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The time on the planet Lapituletti goes the same way it goes on Earth but a day lasts h hours and each hour lasts m minutes. The inhabitants of that planet use digital clocks similar to earth on... | instruction | 0 | 5,264 | 4 | 10,528 |
No | output | 1 | 5,264 | 4 | 10,529 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The time on the planet Lapituletti goes the same way it goes on Earth but a day lasts h hours and each hour lasts m minutes. The inhabitants of that planet use digital clocks similar to earth on... | instruction | 0 | 5,265 | 4 | 10,530 |
No | output | 1 | 5,265 | 4 | 10,531 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The time on the planet Lapituletti goes the same way it goes on Earth but a day lasts h hours and each hour lasts m minutes. The inhabitants of that planet use digital clocks similar to earth on... | instruction | 0 | 5,266 | 4 | 10,532 |
No | output | 1 | 5,266 | 4 | 10,533 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The time on the planet Lapituletti goes the same way it goes on Earth but a day lasts h hours and each hour lasts m minutes. The inhabitants of that planet use digital clocks similar to earth on... | instruction | 0 | 5,267 | 4 | 10,534 |
No | output | 1 | 5,267 | 4 | 10,535 |
Provide a correct Python 3 solution for this coding contest problem.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following format:
M
Output
If we have x hours until New Year ... | instruction | 0 | 5,661 | 4 | 11,322 |
"Correct Solution:
```
n = int(input());
print(48 - n);
``` | output | 1 | 5,661 | 4 | 11,323 |
Provide a correct Python 3 solution for this coding contest problem.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following format:
M
Output
If we have x hours until New Year ... | instruction | 0 | 5,662 | 4 | 11,324 |
"Correct Solution:
```
m = int(input())
ans = 48 - m
print(ans)
``` | output | 1 | 5,662 | 4 | 11,325 |
Provide a correct Python 3 solution for this coding contest problem.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following format:
M
Output
If we have x hours until New Year ... | instruction | 0 | 5,663 | 4 | 11,326 |
"Correct Solution:
```
#84A
m = int(input())
print(48-m)
``` | output | 1 | 5,663 | 4 | 11,327 |
Provide a correct Python 3 solution for this coding contest problem.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following format:
M
Output
If we have x hours until New Year ... | instruction | 0 | 5,664 | 4 | 11,328 |
"Correct Solution:
```
nancy = int(input())
print (24-nancy+24)
``` | output | 1 | 5,664 | 4 | 11,329 |
Provide a correct Python 3 solution for this coding contest problem.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following format:
M
Output
If we have x hours until New Year ... | instruction | 0 | 5,665 | 4 | 11,330 |
"Correct Solution:
```
M = int(input())
x = 24 - M + 24
print(x)
``` | output | 1 | 5,665 | 4 | 11,331 |
Provide a correct Python 3 solution for this coding contest problem.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following format:
M
Output
If we have x hours until New Year ... | instruction | 0 | 5,666 | 4 | 11,332 |
"Correct Solution:
```
n = int(input())
print(24+24-n)
``` | output | 1 | 5,666 | 4 | 11,333 |
Provide a correct Python 3 solution for this coding contest problem.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following format:
M
Output
If we have x hours until New Year ... | instruction | 0 | 5,667 | 4 | 11,334 |
"Correct Solution:
```
a = int(input())
print((24-a)+24)
``` | output | 1 | 5,667 | 4 | 11,335 |
Provide a correct Python 3 solution for this coding contest problem.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following format:
M
Output
If we have x hours until New Year ... | instruction | 0 | 5,668 | 4 | 11,336 |
"Correct Solution:
```
M = int(input())
print(24 * 2 - M)
``` | output | 1 | 5,668 | 4 | 11,337 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following ... | instruction | 0 | 5,669 | 4 | 11,338 |
Yes | output | 1 | 5,669 | 4 | 11,339 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following ... | instruction | 0 | 5,670 | 4 | 11,340 |
Yes | output | 1 | 5,670 | 4 | 11,341 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following ... | instruction | 0 | 5,671 | 4 | 11,342 |
Yes | output | 1 | 5,671 | 4 | 11,343 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following ... | instruction | 0 | 5,672 | 4 | 11,344 |
Yes | output | 1 | 5,672 | 4 | 11,345 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following ... | instruction | 0 | 5,673 | 4 | 11,346 |
No | output | 1 | 5,673 | 4 | 11,347 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following ... | instruction | 0 | 5,674 | 4 | 11,348 |
No | output | 1 | 5,674 | 4 | 11,349 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following ... | instruction | 0 | 5,675 | 4 | 11,350 |
No | output | 1 | 5,675 | 4 | 11,351 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
How many hours do we have until New Year at M o'clock (24-hour notation) on 30th, December?
Constraints
* 1β€Mβ€23
* M is an integer.
Input
Input is given from Standard Input in the following ... | instruction | 0 | 5,676 | 4 | 11,352 |
No | output | 1 | 5,676 | 4 | 11,353 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian reform modified the Julian calendar's scheme of leap... | instruction | 0 | 6,103 | 4 | 12,206 |
Tags: brute force, implementation
Correct Solution:
```
from datetime import date
d = [0] * 2
for i in range(0, 2):
a = list(map(int, input().split(':')))
d[i] = date(a[0], a[1], a[2])
r = (d[0] - d[1]).days
print(r if r >= 0 else -r)
``` | output | 1 | 6,103 | 4 | 12,207 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian reform modified the Julian calendar's scheme of leap... | instruction | 0 | 6,104 | 4 | 12,208 |
Tags: brute force, implementation
Correct Solution:
```
import datetime
t1 = datetime.datetime.strptime(input(),"%Y:%m:%d")
t2 = datetime.datetime.strptime(input(),"%Y:%m:%d")
print(abs((t2-t1).days))
``` | output | 1 | 6,104 | 4 | 12,209 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian reform modified the Julian calendar's scheme of leap... | instruction | 0 | 6,105 | 4 | 12,210 |
Tags: brute force, implementation
Correct Solution:
```
from datetime import date
a1 = [int(i) for i in input().split(':')]
a2 = [int(i) for i in input().split(':')]
print(abs((date(a1[0], a1[1], a1[2]) - date(a2[0], a2[1], a2[2])).days))
``` | output | 1 | 6,105 | 4 | 12,211 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian reform modified the Julian calendar's scheme of leap... | instruction | 0 | 6,106 | 4 | 12,212 |
Tags: brute force, implementation
Correct Solution:
```
from datetime import *
R = lambda: datetime(*map(int, input().split(':')))
date1 = R()
date2 = R()
print(abs(date2 - date1).days)
``` | output | 1 | 6,106 | 4 | 12,213 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian reform modified the Julian calendar's scheme of leap... | instruction | 0 | 6,107 | 4 | 12,214 |
Tags: brute force, implementation
Correct Solution:
```
from collections import Counter
import string
import math
dicti={'1':31,'2':28,'3':31,'4':30,'5':31,'6':30,'7':31,'8':31
,'9':30,'10':31,'11':30,'12':31}
def array_int():
return [int(i) for i in input().split()]
def vary(number_of_variables):
if numbe... | output | 1 | 6,107 | 4 | 12,215 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian reform modified the Julian calendar's scheme of leap... | instruction | 0 | 6,108 | 4 | 12,216 |
Tags: brute force, implementation
Correct Solution:
```
import datetime
y1, m1, d1 = map(int, input().split(':'))
y2, m2, d2 = map(int, input().split(':'))
print(abs(datetime.date(y1, m1, d1) - datetime.date(y2, m2, d2)).days)
``` | output | 1 | 6,108 | 4 | 12,217 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian reform modified the Julian calendar's scheme of leap... | instruction | 0 | 6,109 | 4 | 12,218 |
Tags: brute force, implementation
Correct Solution:
```
from datetime import *
t1 = datetime.strptime(input(), "%Y:%m:%d")
t2 = datetime.strptime(input(), "%Y:%m:%d")
print(abs((t2-t1).days))
``` | output | 1 | 6,109 | 4 | 12,219 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian reform modified the Julian calendar's scheme of leap... | instruction | 0 | 6,110 | 4 | 12,220 |
Tags: brute force, implementation
Correct Solution:
```
import datetime
tA = datetime.datetime.strptime(input(),"%Y:%m:%d")
tB = datetime.datetime.strptime(input(),"%Y:%m:%d")
print(abs((tB-tA).days))
``` | output | 1 | 6,110 | 4 | 12,221 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian refor... | instruction | 0 | 6,111 | 4 | 12,222 |
Yes | output | 1 | 6,111 | 4 | 12,223 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian refor... | instruction | 0 | 6,112 | 4 | 12,224 |
Yes | output | 1 | 6,112 | 4 | 12,225 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian refor... | instruction | 0 | 6,113 | 4 | 12,226 |
Yes | output | 1 | 6,113 | 4 | 12,227 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian refor... | instruction | 0 | 6,114 | 4 | 12,228 |
Yes | output | 1 | 6,114 | 4 | 12,229 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian refor... | instruction | 0 | 6,115 | 4 | 12,230 |
No | output | 1 | 6,115 | 4 | 12,231 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian refor... | instruction | 0 | 6,116 | 4 | 12,232 |
No | output | 1 | 6,116 | 4 | 12,233 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian refor... | instruction | 0 | 6,117 | 4 | 12,234 |
No | output | 1 | 6,117 | 4 | 12,235 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian refor... | instruction | 0 | 6,118 | 4 | 12,236 |
No | output | 1 | 6,118 | 4 | 12,237 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Your friend Mishka and you attend a calculus lecture. Lecture lasts n minutes. Lecturer tells ai theorems during the i-th minute.
Mishka is really interested in calculus, though it is so hard t... | instruction | 0 | 6,341 | 4 | 12,682 |
Yes | output | 1 | 6,341 | 4 | 12,683 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Your friend Mishka and you attend a calculus lecture. Lecture lasts n minutes. Lecturer tells ai theorems during the i-th minute.
Mishka is really interested in calculus, though it is so hard t... | instruction | 0 | 6,342 | 4 | 12,684 |
Yes | output | 1 | 6,342 | 4 | 12,685 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Your friend Mishka and you attend a calculus lecture. Lecture lasts n minutes. Lecturer tells ai theorems during the i-th minute.
Mishka is really interested in calculus, though it is so hard t... | instruction | 0 | 6,343 | 4 | 12,686 |
Yes | output | 1 | 6,343 | 4 | 12,687 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Your friend Mishka and you attend a calculus lecture. Lecture lasts n minutes. Lecturer tells ai theorems during the i-th minute.
Mishka is really interested in calculus, though it is so hard t... | instruction | 0 | 6,344 | 4 | 12,688 |
Yes | output | 1 | 6,344 | 4 | 12,689 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Your friend Mishka and you attend a calculus lecture. Lecture lasts n minutes. Lecturer tells ai theorems during the i-th minute.
Mishka is really interested in calculus, though it is so hard t... | instruction | 0 | 6,345 | 4 | 12,690 |
No | output | 1 | 6,345 | 4 | 12,691 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Your friend Mishka and you attend a calculus lecture. Lecture lasts n minutes. Lecturer tells ai theorems during the i-th minute.
Mishka is really interested in calculus, though it is so hard t... | instruction | 0 | 6,346 | 4 | 12,692 |
No | output | 1 | 6,346 | 4 | 12,693 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Your friend Mishka and you attend a calculus lecture. Lecture lasts n minutes. Lecturer tells ai theorems during the i-th minute.
Mishka is really interested in calculus, though it is so hard t... | instruction | 0 | 6,347 | 4 | 12,694 |
No | output | 1 | 6,347 | 4 | 12,695 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Your friend Mishka and you attend a calculus lecture. Lecture lasts n minutes. Lecturer tells ai theorems during the i-th minute.
Mishka is really interested in calculus, though it is so hard t... | instruction | 0 | 6,348 | 4 | 12,696 |
No | output | 1 | 6,348 | 4 | 12,697 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Having stayed home alone, Petya decided to watch forbidden films on the Net in secret. "What ungentlemanly behavior!" β you can say that, of course, but don't be too harsh on the kid. In his country films about the Martians and other extrate... | instruction | 0 | 6,830 | 4 | 13,660 |
Tags: implementation
Correct Solution:
```
def s():
a = [[ord(i)-48 if ord(i) < 60 else ord(i)-55 for i in i]for i in input().split(':')]
r = [i for i in range(max(max(a[0]),max(a[1]))+1,61) if sum(list(i**l[0]*l[1] for l in enumerate(reversed(a[0]))))<24 and sum(list(i**l[0]*l[1] for l in enumerate(reversed(a[1]))))... | output | 1 | 6,830 | 4 | 13,661 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Having stayed home alone, Petya decided to watch forbidden films on the Net in secret. "What ungentlemanly behavior!" β you can say that, of course, but don't be too harsh on the kid. In his country films about the Martians and other extrate... | instruction | 0 | 6,831 | 4 | 13,662 |
Tags: implementation
Correct Solution:
```
def val(c):
if 'A' <= c <='Z':
return ord(c) - 65 + 10
else:
return int(c)
def calc(h, b):
ans = 0
i = 0
for c in h[::-1]:
v = val(c)
ans += int(v) * (b**i)
i += 1
return ans
h, m = [x for x in input().split(":... | output | 1 | 6,831 | 4 | 13,663 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Having stayed home alone, Petya decided to watch forbidden films on the Net in secret. "What ungentlemanly behavior!" β you can say that, of course, but don't be too harsh on the kid. In his country films about the Martians and other extrate... | instruction | 0 | 6,832 | 4 | 13,664 |
Tags: implementation
Correct Solution:
```
#------------------------------warmup----------------------------
import os
import sys
import math
from io import BytesIO, IOBase
BUFSIZE = 8192
class FastIO(IOBase):
newlines = 0
def __init__(self, file):
self._fd = file.fileno()
self.buffer = ... | output | 1 | 6,832 | 4 | 13,665 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Having stayed home alone, Petya decided to watch forbidden films on the Net in secret. "What ungentlemanly behavior!" β you can say that, of course, but don't be too harsh on the kid. In his country films about the Martians and other extrate... | instruction | 0 | 6,833 | 4 | 13,666 |
Tags: implementation
Correct Solution:
```
#Algorithm :
# 1) Split into strings , remove zeros
# 2) Start checking for every integer in a range of(2 to 61)
# 3) check the numbers and respetively add them !
################################
#Function to calculate the value
#This function is approxim... | output | 1 | 6,833 | 4 | 13,667 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.