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. Jamie loves sleeping. One day, he decides that he needs to wake up at exactly hh: mm. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every x minutes until hh: mm is reached, and only then he will wake up. He wants to know what is the smallest number of times he needs to press the snooze button. A time is considered lucky if it contains a digit '7'. For example, 13: 07 and 17: 27 are lucky, while 00: 48 and 21: 34 are not lucky. Note that it is not necessary that the time set for the alarm and the wake-up time are on the same day. It is guaranteed that there is a lucky time Jamie can set so that he can wake at hh: mm. Formally, find the smallest possible non-negative integer y such that the time representation of the time x·y minutes before hh: mm contains the digit '7'. Jamie uses 24-hours clock, so after 23: 59 comes 00: 00. Input The first line contains a single integer x (1 ≤ x ≤ 60). The second line contains two two-digit integers, hh and mm (00 ≤ hh ≤ 23, 00 ≤ mm ≤ 59). Output Print the minimum number of times he needs to press the button. Examples Input 3 11 23 Output 2 Input 5 01 07 Output 0 Note In the first sample, Jamie needs to wake up at 11:23. So, he can set his alarm at 11:17. He would press the snooze button when the alarm rings at 11:17 and at 11:20. In the second sample, Jamie can set his alarm at exactly at 01:07 which is lucky. Submitted Solution: ``` def validate(h,m): if(m<0): m=60+m h-=1 if(h<0): h=23 return h,m def luck(h,m,x): c=0 if('7' not in str(m) and '7' not in str(h)): while(1): m=m-x c+=1 h,m=validate(h,m) if '7' in str(m) or '7' in str(h): break; return c x=int(input()) h,m=map(int,input().split()) c=luck(h,m,x) print(c) ```
instruction
0
26,195
4
52,390
Yes
output
1
26,195
4
52,391
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Jamie loves sleeping. One day, he decides that he needs to wake up at exactly hh: mm. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every x minutes until hh: mm is reached, and only then he will wake up. He wants to know what is the smallest number of times he needs to press the snooze button. A time is considered lucky if it contains a digit '7'. For example, 13: 07 and 17: 27 are lucky, while 00: 48 and 21: 34 are not lucky. Note that it is not necessary that the time set for the alarm and the wake-up time are on the same day. It is guaranteed that there is a lucky time Jamie can set so that he can wake at hh: mm. Formally, find the smallest possible non-negative integer y such that the time representation of the time x·y minutes before hh: mm contains the digit '7'. Jamie uses 24-hours clock, so after 23: 59 comes 00: 00. Input The first line contains a single integer x (1 ≤ x ≤ 60). The second line contains two two-digit integers, hh and mm (00 ≤ hh ≤ 23, 00 ≤ mm ≤ 59). Output Print the minimum number of times he needs to press the button. Examples Input 3 11 23 Output 2 Input 5 01 07 Output 0 Note In the first sample, Jamie needs to wake up at 11:23. So, he can set his alarm at 11:17. He would press the snooze button when the alarm rings at 11:17 and at 11:20. In the second sample, Jamie can set his alarm at exactly at 01:07 which is lucky. Submitted Solution: ``` x = int(input()) a,b = map(int,input().split()) c = 0 while '7' not in str(a) and '7' not in str(b): b = b - x if a < 0: a+= 24 if b < 0: b += 60 a -= 1 #print(a,b) c += 1 print(c) ```
instruction
0
26,196
4
52,392
Yes
output
1
26,196
4
52,393
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Jamie loves sleeping. One day, he decides that he needs to wake up at exactly hh: mm. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every x minutes until hh: mm is reached, and only then he will wake up. He wants to know what is the smallest number of times he needs to press the snooze button. A time is considered lucky if it contains a digit '7'. For example, 13: 07 and 17: 27 are lucky, while 00: 48 and 21: 34 are not lucky. Note that it is not necessary that the time set for the alarm and the wake-up time are on the same day. It is guaranteed that there is a lucky time Jamie can set so that he can wake at hh: mm. Formally, find the smallest possible non-negative integer y such that the time representation of the time x·y minutes before hh: mm contains the digit '7'. Jamie uses 24-hours clock, so after 23: 59 comes 00: 00. Input The first line contains a single integer x (1 ≤ x ≤ 60). The second line contains two two-digit integers, hh and mm (00 ≤ hh ≤ 23, 00 ≤ mm ≤ 59). Output Print the minimum number of times he needs to press the button. Examples Input 3 11 23 Output 2 Input 5 01 07 Output 0 Note In the first sample, Jamie needs to wake up at 11:23. So, he can set his alarm at 11:17. He would press the snooze button when the alarm rings at 11:17 and at 11:20. In the second sample, Jamie can set his alarm at exactly at 01:07 which is lucky. Submitted Solution: ``` x=int(input()) import sys n,p=map(int,sys.stdin.readline().split()) if(n%10==7 or p%10==7): print("0") #exit() else: count=0 while(1): p=p-x count+=1 if(p<0): p=p+60 n=n-1 if(n<0): n=n+24 if(p%10==7 or n%10==7): break print(count) ```
instruction
0
26,197
4
52,394
Yes
output
1
26,197
4
52,395
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Jamie loves sleeping. One day, he decides that he needs to wake up at exactly hh: mm. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every x minutes until hh: mm is reached, and only then he will wake up. He wants to know what is the smallest number of times he needs to press the snooze button. A time is considered lucky if it contains a digit '7'. For example, 13: 07 and 17: 27 are lucky, while 00: 48 and 21: 34 are not lucky. Note that it is not necessary that the time set for the alarm and the wake-up time are on the same day. It is guaranteed that there is a lucky time Jamie can set so that he can wake at hh: mm. Formally, find the smallest possible non-negative integer y such that the time representation of the time x·y minutes before hh: mm contains the digit '7'. Jamie uses 24-hours clock, so after 23: 59 comes 00: 00. Input The first line contains a single integer x (1 ≤ x ≤ 60). The second line contains two two-digit integers, hh and mm (00 ≤ hh ≤ 23, 00 ≤ mm ≤ 59). Output Print the minimum number of times he needs to press the button. Examples Input 3 11 23 Output 2 Input 5 01 07 Output 0 Note In the first sample, Jamie needs to wake up at 11:23. So, he can set his alarm at 11:17. He would press the snooze button when the alarm rings at 11:17 and at 11:20. In the second sample, Jamie can set his alarm at exactly at 01:07 which is lucky. Submitted Solution: ``` x = int(input()) h,m = map(int,input().split()) ans = 0 while (h % 10 != 7) and (m % 10 != 7): if m - x >= 0: m -= x else: temp = x - m m = 60 - temp if h - 1 >= 0: h -= 1 else: h = 23 ans += 1 # print(':'.join([str(h),str(m)])) print(ans) ```
instruction
0
26,198
4
52,396
Yes
output
1
26,198
4
52,397
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Jamie loves sleeping. One day, he decides that he needs to wake up at exactly hh: mm. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every x minutes until hh: mm is reached, and only then he will wake up. He wants to know what is the smallest number of times he needs to press the snooze button. A time is considered lucky if it contains a digit '7'. For example, 13: 07 and 17: 27 are lucky, while 00: 48 and 21: 34 are not lucky. Note that it is not necessary that the time set for the alarm and the wake-up time are on the same day. It is guaranteed that there is a lucky time Jamie can set so that he can wake at hh: mm. Formally, find the smallest possible non-negative integer y such that the time representation of the time x·y minutes before hh: mm contains the digit '7'. Jamie uses 24-hours clock, so after 23: 59 comes 00: 00. Input The first line contains a single integer x (1 ≤ x ≤ 60). The second line contains two two-digit integers, hh and mm (00 ≤ hh ≤ 23, 00 ≤ mm ≤ 59). Output Print the minimum number of times he needs to press the button. Examples Input 3 11 23 Output 2 Input 5 01 07 Output 0 Note In the first sample, Jamie needs to wake up at 11:23. So, he can set his alarm at 11:17. He would press the snooze button when the alarm rings at 11:17 and at 11:20. In the second sample, Jamie can set his alarm at exactly at 01:07 which is lucky. Submitted Solution: ``` x = int(input()) hh, mm = map(str, input().split()) y= 0 while not("7" in str(hh) or "7" in str(mm)): mm = str(int(mm) - x) if int(mm)< 0: mm = str(60 + int(mm)) hh = str(int(hh) - 1) if int(hh) < 0: hh = str(24 + int(hh)) while len(hh) != 2: hh = "0" + hh while len(mm) != 2: mm = "0" + mm print(hh, mm) y += 1 print(y) ```
instruction
0
26,199
4
52,398
No
output
1
26,199
4
52,399
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Jamie loves sleeping. One day, he decides that he needs to wake up at exactly hh: mm. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every x minutes until hh: mm is reached, and only then he will wake up. He wants to know what is the smallest number of times he needs to press the snooze button. A time is considered lucky if it contains a digit '7'. For example, 13: 07 and 17: 27 are lucky, while 00: 48 and 21: 34 are not lucky. Note that it is not necessary that the time set for the alarm and the wake-up time are on the same day. It is guaranteed that there is a lucky time Jamie can set so that he can wake at hh: mm. Formally, find the smallest possible non-negative integer y such that the time representation of the time x·y minutes before hh: mm contains the digit '7'. Jamie uses 24-hours clock, so after 23: 59 comes 00: 00. Input The first line contains a single integer x (1 ≤ x ≤ 60). The second line contains two two-digit integers, hh and mm (00 ≤ hh ≤ 23, 00 ≤ mm ≤ 59). Output Print the minimum number of times he needs to press the button. Examples Input 3 11 23 Output 2 Input 5 01 07 Output 0 Note In the first sample, Jamie needs to wake up at 11:23. So, he can set his alarm at 11:17. He would press the snooze button when the alarm rings at 11:17 and at 11:20. In the second sample, Jamie can set his alarm at exactly at 01:07 which is lucky. Submitted Solution: ``` n = int(input()) hh,mm = map(int,input().split()) t = mm%10 r = 10 + t if r >=17: print((t-7)//n) else: print((r-7)//n) ```
instruction
0
26,200
4
52,400
No
output
1
26,200
4
52,401
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Jamie loves sleeping. One day, he decides that he needs to wake up at exactly hh: mm. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every x minutes until hh: mm is reached, and only then he will wake up. He wants to know what is the smallest number of times he needs to press the snooze button. A time is considered lucky if it contains a digit '7'. For example, 13: 07 and 17: 27 are lucky, while 00: 48 and 21: 34 are not lucky. Note that it is not necessary that the time set for the alarm and the wake-up time are on the same day. It is guaranteed that there is a lucky time Jamie can set so that he can wake at hh: mm. Formally, find the smallest possible non-negative integer y such that the time representation of the time x·y minutes before hh: mm contains the digit '7'. Jamie uses 24-hours clock, so after 23: 59 comes 00: 00. Input The first line contains a single integer x (1 ≤ x ≤ 60). The second line contains two two-digit integers, hh and mm (00 ≤ hh ≤ 23, 00 ≤ mm ≤ 59). Output Print the minimum number of times he needs to press the button. Examples Input 3 11 23 Output 2 Input 5 01 07 Output 0 Note In the first sample, Jamie needs to wake up at 11:23. So, he can set his alarm at 11:17. He would press the snooze button when the alarm rings at 11:17 and at 11:20. In the second sample, Jamie can set his alarm at exactly at 01:07 which is lucky. Submitted Solution: ``` x=int(input()) a=input() if '7' in a: print(0) else: h,m=map(int,a.split()) print(h,m,m//10) y=int(str(m//10-1)+'7') k=(m-y) if m<7: k=3+m print(k//x) ```
instruction
0
26,201
4
52,402
No
output
1
26,201
4
52,403
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Jamie loves sleeping. One day, he decides that he needs to wake up at exactly hh: mm. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every x minutes until hh: mm is reached, and only then he will wake up. He wants to know what is the smallest number of times he needs to press the snooze button. A time is considered lucky if it contains a digit '7'. For example, 13: 07 and 17: 27 are lucky, while 00: 48 and 21: 34 are not lucky. Note that it is not necessary that the time set for the alarm and the wake-up time are on the same day. It is guaranteed that there is a lucky time Jamie can set so that he can wake at hh: mm. Formally, find the smallest possible non-negative integer y such that the time representation of the time x·y minutes before hh: mm contains the digit '7'. Jamie uses 24-hours clock, so after 23: 59 comes 00: 00. Input The first line contains a single integer x (1 ≤ x ≤ 60). The second line contains two two-digit integers, hh and mm (00 ≤ hh ≤ 23, 00 ≤ mm ≤ 59). Output Print the minimum number of times he needs to press the button. Examples Input 3 11 23 Output 2 Input 5 01 07 Output 0 Note In the first sample, Jamie needs to wake up at 11:23. So, he can set his alarm at 11:17. He would press the snooze button when the alarm rings at 11:17 and at 11:20. In the second sample, Jamie can set his alarm at exactly at 01:07 which is lucky. Submitted Solution: ``` """Jamie loves sleeping. One day, he decides that he needs to wake up at exactly hh: mm. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every x minutes until hh: mm is reached, and only then he will wake up. He wants to know what is the smallest number of times he needs to press the snooze button. A time is considered lucky if it contains a digit '7'. For example, 13: 07 and 17: 27 are lucky, while 00: 48 and 21: 34 are not lucky. Note that it is not necessary that the time set for the alarm and the wake-up time are on the same day. It is guaranteed that there is a lucky time Jamie can set so that he can wake at hh: mm. Formally, find the smallest possible non-negative integer y such that the time representation of the time x·y minutes before hh: mm contains the digit '7'. Jamie uses 24-hours clock, so after 23: 59 comes 00: 00. Input The first line contains a single integer x (1 ≤ x ≤ 60). The second line contains two two-digit integers, hh and mm (00 ≤ hh ≤ 23, 00 ≤ mm ≤ 59). Output Print the minimum number of times he needs to press the button.""" x=int(input()) l=[int(a) for a in input().split()] n=0 b=l[1] if (l[1]-7)%10==0 or (l[0]-7)%10==0: print('0') else: t=tuple([a for a in range(420,481)]+[a for a in range(1020,1081)]) a=60*l[0]+l[1] a0=a while a>0: a=a-x n+=1 if (a-7)%10==0 or t.count(a)!=0: break if a<=0: a=1440+a while a>a0: a=a-x n+=1 if (a-7)%10==0 or t.count(a)!=0: break print(n) ```
instruction
0
26,202
4
52,404
No
output
1
26,202
4
52,405
Provide a correct Python 3 solution for this coding contest problem. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23
instruction
0
26,504
4
53,008
"Correct Solution: ``` while True: try: s,y,m,d=input().split() except: break if int(y)>31 or (int(y)==31 and int(m)>4): print("?",str(int(y)-30),m,d) else: print(s,y,m,d) ```
output
1
26,504
4
53,009
Provide a correct Python 3 solution for this coding contest problem. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23
instruction
0
26,505
4
53,010
"Correct Solution: ``` while True: s = input() if s=="#": break g, y, m, d = s.split() y, m, d = int(y), int(m), int(d) if y>=32 or (y==31 and m>=5): g = "?" y -= 30 print(g, y, m, d) ```
output
1
26,505
4
53,011
Provide a correct Python 3 solution for this coding contest problem. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23
instruction
0
26,506
4
53,012
"Correct Solution: ``` while True : try : g, y, m, d = map(str, input().split()) y = int(y) m = int(m) d = int(d) if(y <= 30) : print('HEISEI', y, m, d) elif(y == 31 and m <= 4): print('HEISEI',y , m, d) else: y = y - 30 print('?', y, m, d) except : break ```
output
1
26,506
4
53,013
Provide a correct Python 3 solution for this coding contest problem. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23
instruction
0
26,507
4
53,014
"Correct Solution: ``` while True: s = input() if s == "#": break g, y, m, d = s.split() if int(y) >= 32: g = "?" y = str(int(y)-30) elif int(y) == 31: if int(m) >= 5: g = "?" y = str(int(y)-30) print(g, y, m, d) ```
output
1
26,507
4
53,015
Provide a correct Python 3 solution for this coding contest problem. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23
instruction
0
26,508
4
53,016
"Correct Solution: ``` # 31年5月1日以降なら年号をマイナス60する for _ in range(102): input_str = str(input()) if (input_str[0] == '#'): exit() today = input_str.split() if int(today[1]) > 31: print(f'? {int(today[1])-30} {int(today[2])} {today[3]}') continue if int(today[1]) == 31 and int(today[2]) >= 5: print(f'? {int(today[1])-30} {int(today[2])} {today[3]}') continue print(' '.join(today)) ```
output
1
26,508
4
53,017
Provide a correct Python 3 solution for this coding contest problem. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23
instruction
0
26,509
4
53,018
"Correct Solution: ``` ans = [] while True: data = input().split() g = data[0] if g == '#': break y, m, d = map(int, data[1:]) if y > 30 and m > 4: ans.append(("? %d %d %d") % (y-30, m, d)) elif y > 31: ans.append(("? %d %d %d") % (y-30, m, d)) else: ans.append(("%s %d %d %d") % (g, y, m, d)) print(*ans, sep="\n") ```
output
1
26,509
4
53,019
Provide a correct Python 3 solution for this coding contest problem. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23
instruction
0
26,510
4
53,020
"Correct Solution: ``` while True: a=list(input().split()) if(a[0]=="#"): break y=int(a[1]) m=int(a[2]) d=int(a[3]) if(y <= 30): print(a[0],y,m,d) elif(y == 31 and m<=4): print(a[0],y,m,d) else: n=y-30 print("?",n,m,d) ```
output
1
26,510
4
53,021
Provide a correct Python 3 solution for this coding contest problem. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23
instruction
0
26,511
4
53,022
"Correct Solution: ``` while True: s = input() if s == "#": break g, y, m, d = s.split() if (int(y) == 31 and int(m) > 4) or int(y) > 31: print("?", int(y)-30, m, d) else: print(g, y, m, d) ```
output
1
26,511
4
53,023
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Submitted Solution: ``` ls_g=[] ls_y=[] ls_m=[] ls_d=[] cnt = -1 while True: try: ls=input().split() ls_g.append(ls[0]) ls_y.append(int(ls[1])) ls_m.append(int(ls[2])) ls_d.append(int(ls[3])) cnt += 1 except: break; for _ in range(cnt+1): if ls_y[_]>31: ls_g[_]="?" ls_y[_]-=30 elif ls_y[_]==31 and ls_m[_]>=5: ls_g[_]="?" ls_y[_]-=30 for i in range(cnt+1): print(ls_g[i]+" "+str(ls_y[i])+" "+str(ls_m[i])+" "+str(ls_d[i])) ```
instruction
0
26,512
4
53,024
Yes
output
1
26,512
4
53,025
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Submitted Solution: ``` while True: l=list(map(str,input().split())) if l[0]=="#": break #print(l) y=int(l[1]) m=int(l[2]) d=int(l[3]) if y>=31 and m>=5: l[0]="?" y=y-30 elif y>=32: l[0]="?" y=y-30 print(l[0],y,m,d) ```
instruction
0
26,513
4
53,026
Yes
output
1
26,513
4
53,027
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Submitted Solution: ``` while 1: s = input() if s == "#": break y, m, d = map(int, s.split()[1:]) if (y, m) >= (31, 5): print("? {} {} {}".format(y-30, m, d)) else: print("HEISEI {} {} {}".format(y, m, d)) ```
instruction
0
26,514
4
53,028
Yes
output
1
26,514
4
53,029
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Submitted Solution: ``` while True: input_data = input() if input_data == "#": break g, y, m, d = input_data.split() y = int(y) m = int(m) d = int(d) if y < 31 or (y == 31 and m <= 4): print(g, y, m, d) else: print("?", str(y - 30), str(m), str(d)) ```
instruction
0
26,515
4
53,030
Yes
output
1
26,515
4
53,031
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Submitted Solution: ``` while True: line = input() if line == '#': exit() g = line.split()[0] y, m, d = map(int, line.split()[1:]) if y > 31: g = '?' y -= 30 elif m > 4: g = '?' print(g, y, m, d) ```
instruction
0
26,516
4
53,032
No
output
1
26,516
4
53,033
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Submitted Solution: ``` g=[] y=[] m=[] d=[] for i in range(101): a=input() if a=="#": break else: g1,y1,m1,d1=map(str,a.split()) g.append(g1) y.append(int(y1)) m.append(int(m1)) d.append(int(d1)) for i in range(len(g)): if y[i]>32: g[i]="?" y[i]=y[i]-30 if (y[i]==31)*(m[i]>4): g[i]="?" y[i]=y[i]-30 print(g[i],y[i],m[i],d[i]) ```
instruction
0
26,517
4
53,034
No
output
1
26,517
4
53,035
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Submitted Solution: ``` ls_g=[] ls_y=[] ls_m=[] ls_d=[] cnt = 0 while True: try: g=input() y,m,d=map(int,input().split()) ls_g.append(g) ls_y.append(y) ls_m.append(m) ls_d.append(d) cnt += 1 except: break; for _ in range(cnt): if ls_y[cnt]>31: ls_g[cnt]="?" elif ls_y[cnt]==31: if ls_m[cnt]>=5: ls_g[cnt]="?" for _ in range(cnt): print(ls_[g]+" "+ls_y[cnt]+" "+ls_m[cnt]+" "+ls_d[cnt]) ```
instruction
0
26,518
4
53,036
No
output
1
26,518
4
53,037
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Revised The current era, Heisei, will end on April 30, 2019, and a new era will begin the next day. The day after the last day of Heisei will be May 1, the first year of the new era. In the system developed by the ACM-ICPC OB / OG Association (Japanese Alumni Group; JAG), the date uses the Japanese calendar (the Japanese calendar that expresses the year by the era name and the number of years following it). It is saved in the database in the format of "d days". Since this storage format cannot be changed, JAG saves the date expressed in the Japanese calendar in the database assuming that the era name does not change, and converts the date to the format using the correct era name at the time of output. It was to be. Your job is to write a program that converts the dates stored in the JAG database to dates using the Heisei or new era. Since the new era has not been announced yet, we will use "?" To represent it. Input The input consists of multiple datasets. Each dataset is represented in the following format. > g y m d g is a character string representing the era name, and g = HEISEI holds. y, m, and d are integers that represent the year, month, and day, respectively. 1 ≤ y ≤ 100, 1 ≤ m ≤ 12, 1 ≤ d ≤ 31 holds. Dates that do not exist in the Japanese calendar, such as February 30, are not given as a dataset. When converted correctly as the Japanese calendar, the date on which the era before Heisei must be used is not given as a data set. The end of the input is represented by a line consisting of only one'#'. The number of datasets does not exceed 100. Output For each data set, separate the converted era, year, month, and day with a space and output it on one line. If the converted era is "Heisei", use "HEISEI" as the era, and if it is a new era, use "?". Normally, the first year of the era is written as the first year, but in the output of this problem, ignore this rule and output 1 as the year. Sample Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Output for the Sample Input HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Example Input HEISEI 1 1 8 HEISEI 31 4 30 HEISEI 31 5 1 HEISEI 99 12 31 HEISEI 38 8 30 HEISEI 98 2 22 HEISEI 2 3 26 HEISEI 28 4 23 # Output HEISEI 1 1 8 HEISEI 31 4 30 ? 1 5 1 ? 69 12 31 ? 8 8 30 ? 68 2 22 HEISEI 2 3 26 HEISEI 28 4 23 Submitted Solution: ``` datum = [] while True: datum.append(input().split()) if datum[-1][0]=='#': break datum=datum[:-1] ans = [] for data in datum: if int(data[1]) >= 31 or (int(data[1]) >= 31 and int(data[2]) >= 5): ans.append(['?', str(int(data[1])-30), str(data[2]), str(data[3])]) else: ans.append(data) ans2 = [] for a in ans: ans2.append(' '.join(a)) print('\n'.join(ans2)) ```
instruction
0
26,519
4
53,038
No
output
1
26,519
4
53,039
Provide tags and a correct Python 3 solution for this coding contest problem. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off.
instruction
0
27,001
4
54,002
Tags: brute force, constructive algorithms, greedy, math Correct Solution: ``` n = int(input()) print (n // 7 * 2 + max(0, n % 7 - 5), n // 7 * 2 + min(n % 7, 2)) ```
output
1
27,001
4
54,003
Provide tags and a correct Python 3 solution for this coding contest problem. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off.
instruction
0
27,002
4
54,004
Tags: brute force, constructive algorithms, greedy, math Correct Solution: ``` n = int(input()) a = n // 7 * 2 + min(2, n % 7) b = n // 7 * 2 + max(0, n % 7 - 5) print(b, a) ```
output
1
27,002
4
54,005
Provide tags and a correct Python 3 solution for this coding contest problem. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off.
instruction
0
27,003
4
54,006
Tags: brute force, constructive algorithms, greedy, math Correct Solution: ``` # import re # re.split(r'[;,\s]\s*', line) n=int(input()) if n>=8: ans1=((n-5)//7)*2 + min(2, (n-5)%7) ans2=((n-2)//7)*2 + 2 + max(0, (n-2)%7-5) elif n<=2: ans1=0 ans2=n elif n<=5: ans1=0 ans2=2 elif n==6 : ans1=1 ans2=2 elif n==7: ans1=2 ans2=2 print("%d %d"%(ans1, ans2)) ```
output
1
27,003
4
54,007
Provide tags and a correct Python 3 solution for this coding contest problem. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off.
instruction
0
27,004
4
54,008
Tags: brute force, constructive algorithms, greedy, math Correct Solution: ``` n=int(input()) o=2*(n//7) l=n%7 if(l==0): print(str(o)+" "+str(o)) elif(l<=5): if(l>=2): print(str(o)+" "+str(o+2)) else: print(str(o) + " " + str(o + 1)) else: print(str(o+1) + " " + str(o + 2)) ```
output
1
27,004
4
54,009
Provide tags and a correct Python 3 solution for this coding contest problem. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off.
instruction
0
27,005
4
54,010
Tags: brute force, constructive algorithms, greedy, math Correct Solution: ``` a = [0, 0, 0, 0, 0, 0, 1] b = [0, 1, 2, 2, 2, 2, 2] n = int(input()) x = 2 * (n // 7) + a[n % 7] y = 2 * (n // 7) + b[n % 7] print(x, y) ```
output
1
27,005
4
54,011
Provide tags and a correct Python 3 solution for this coding contest problem. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off.
instruction
0
27,006
4
54,012
Tags: brute force, constructive algorithms, greedy, math Correct Solution: ``` import sys if __name__ == "__main__": n = int(sys.stdin.readline()) minimum_days_off = (n // 7) * 2 + max(n % 7 - 5, 0) maximum_days_off = (n // 7) * 2 + min(n % 7, 2) print(minimum_days_off, maximum_days_off) ```
output
1
27,006
4
54,013
Provide tags and a correct Python 3 solution for this coding contest problem. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off.
instruction
0
27,007
4
54,014
Tags: brute force, constructive algorithms, greedy, math Correct Solution: ``` n=int(input()) if n%7==1 : max = 1+2*((n-1)//7) min = 2*((n-1)//7) elif n%7==2 : max = 2+2*((n-2)//7) min = 2*((n-2)//7) elif n%7==3 : max = 2+2*((n-3)//7) min = 2*((n-3)//7) elif n%7==4 : max = 2+2*((n-4)//7) min = 2*((n-4)//7) elif n%7==5 : max = 2+2*((n-5)//7) min = 2*((n-5)//7) elif n%7==6 : max = 2+2*((n-6)//7) min = 2*((n-6)//7)+1 elif n%7==0 : max = 2*((n)//7) min = 2*((n)//7) print (min,max) ```
output
1
27,007
4
54,015
Provide tags and a correct Python 3 solution for this coding contest problem. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off.
instruction
0
27,008
4
54,016
Tags: brute force, constructive algorithms, greedy, math Correct Solution: ``` n = int(input()) div, mod = divmod(n, 7) _min = 2 * div + max(0, mod - 5) _max = 2 * div + min(2, mod) print(_min, _max) ```
output
1
27,008
4
54,017
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off. Submitted Solution: ``` n = int(input()) mini = n//7*2 + (n%7 > 5) if n%7 > 1: maxi = n//7*2 +2 else: maxi = n//7*2 + n%7 print(mini, maxi) ```
instruction
0
27,009
4
54,018
Yes
output
1
27,009
4
54,019
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off. Submitted Solution: ``` a = int(input()) ans = a//7 * 2 ans1 = a//7 * 2 + min(2,a%7) if a%7 == 6: ans += 1 print(ans,ans1) ```
instruction
0
27,010
4
54,020
Yes
output
1
27,010
4
54,021
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off. Submitted Solution: ``` n = int(input()) mn = 2 * (n // 7) t = n % 7 if t == 0: print(mn, mn) elif t == 1: print(mn, mn + 1) elif 2 <= t <= 5: print(mn, mn + 2) elif t == 6: print(mn + 1, mn + 2) else: exit(100500) ```
instruction
0
27,011
4
54,022
Yes
output
1
27,011
4
54,023
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off. Submitted Solution: ``` from sys import stdin def getOff(n, i): t = 0 while i <= 7 and n > 0: if i == 6 or i == 7: t += 1 i += 1 n -= 1 t += (n // 7) * 2 n = n % 7 if n == 6: t += 1 return t def main(): n = int(stdin.readline()) maxOff, minOff = 0, n for i in range(1, 8): t = getOff(n, i) maxOff = max(maxOff, t) minOff = min(minOff, t) print(minOff, maxOff) main() ```
instruction
0
27,012
4
54,024
Yes
output
1
27,012
4
54,025
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off. Submitted Solution: ``` n=int(input()) x=2*(n//7) y=min(2,n%7) print(x,x+y) ```
instruction
0
27,013
4
54,026
No
output
1
27,013
4
54,027
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off. Submitted Solution: ``` inp = int(input()) mod = inp % 7 if inp % 7 < 2 else 2 print(str(int(inp/7)*2) + " " + str(int(inp/7+mod)*2)) ```
instruction
0
27,014
4
54,028
No
output
1
27,014
4
54,029
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off. Submitted Solution: ``` a = int(input()) print([(a // 7) * 2, 1][a == 6] , (a // 7) * 2 + [2, a % 7] [ a % 7 <= 1]) ```
instruction
0
27,015
4
54,030
No
output
1
27,015
4
54,031
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. On the planet Mars a year lasts exactly n days (there are no leap years on Mars). But Martians have the same weeks as earthlings — 5 work days and then 2 days off. Your task is to determine the minimum possible and the maximum possible number of days off per year on Mars. Input The first line of the input contains a positive integer n (1 ≤ n ≤ 1 000 000) — the number of days in a year on Mars. Output Print two integers — the minimum possible and the maximum possible number of days off per year on Mars. Examples Input 14 Output 4 4 Input 2 Output 0 2 Note In the first sample there are 14 days in a year on Mars, and therefore independently of the day a year starts with there will be exactly 4 days off . In the second sample there are only 2 days in a year on Mars, and they can both be either work days or days off. Submitted Solution: ``` n=int(input()) if n%7==0: print(2*(n//7),2*(n//7)) elif n%7==1: print(2*(n//7),2*(n//7)+1) else: print(2*(n//7),2*(n//7)+2) ```
instruction
0
27,016
4
54,032
No
output
1
27,016
4
54,033
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Vasya has recently got a job as a cashier at a local store. His day at work is L minutes long. Vasya has already memorized n regular customers, the i-th of which comes after t_{i} minutes after the beginning of the day, and his service consumes l_{i} minutes. It is guaranteed that no customer will arrive while Vasya is servicing another customer. Vasya is a bit lazy, so he likes taking smoke breaks for a minutes each. Those breaks may go one after another, but Vasya must be present at work during all the time periods he must serve regular customers, otherwise one of them may alert his boss. What is the maximum number of breaks Vasya can take during the day? Input The first line contains three integers n, L and a (0 ≤ n ≤ 10^{5}, 1 ≤ L ≤ 10^{9}, 1 ≤ a ≤ L). The i-th of the next n lines contains two integers t_{i} and l_{i} (0 ≤ t_{i} ≤ L - 1, 1 ≤ l_{i} ≤ L). It is guaranteed that t_{i} + l_{i} ≤ t_{i + 1} and t_{n} + l_{n} ≤ L. Output Output one integer — the maximum number of breaks. Examples Input 2 11 3 0 1 1 1 Output 3 Input 0 5 2 Output 2 Input 1 3 2 1 2 Output 0 Note In the first sample Vasya can take 3 breaks starting after 2, 5 and 8 minutes after the beginning of the day. In the second sample Vasya can take 2 breaks starting after 0 and 2 minutes after the beginning of the day. In the third sample Vasya can't take any breaks. Submitted Solution: ``` n,l,a = [int(s) for s in input().split()] t = 0 cnt = 0 for i in range(n): ti, li = [int(s) for s in input().split()] cnt += (ti-t)//a t = ti+li cnt += (l-t)//a print(cnt) ```
instruction
0
27,421
4
54,842
Yes
output
1
27,421
4
54,843
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Vasya has recently got a job as a cashier at a local store. His day at work is L minutes long. Vasya has already memorized n regular customers, the i-th of which comes after t_{i} minutes after the beginning of the day, and his service consumes l_{i} minutes. It is guaranteed that no customer will arrive while Vasya is servicing another customer. Vasya is a bit lazy, so he likes taking smoke breaks for a minutes each. Those breaks may go one after another, but Vasya must be present at work during all the time periods he must serve regular customers, otherwise one of them may alert his boss. What is the maximum number of breaks Vasya can take during the day? Input The first line contains three integers n, L and a (0 ≤ n ≤ 10^{5}, 1 ≤ L ≤ 10^{9}, 1 ≤ a ≤ L). The i-th of the next n lines contains two integers t_{i} and l_{i} (0 ≤ t_{i} ≤ L - 1, 1 ≤ l_{i} ≤ L). It is guaranteed that t_{i} + l_{i} ≤ t_{i + 1} and t_{n} + l_{n} ≤ L. Output Output one integer — the maximum number of breaks. Examples Input 2 11 3 0 1 1 1 Output 3 Input 0 5 2 Output 2 Input 1 3 2 1 2 Output 0 Note In the first sample Vasya can take 3 breaks starting after 2, 5 and 8 minutes after the beginning of the day. In the second sample Vasya can take 2 breaks starting after 0 and 2 minutes after the beginning of the day. In the third sample Vasya can't take any breaks. Submitted Solution: ``` n,L,a=map(int,input().split()) break_num=0 right=0 for i in range(n): t,l=map(int,input().split()) if t-right>=a: break_num+=(t-right)//a right=t+l break_num+=(L-right)//a print(break_num) ```
instruction
0
27,422
4
54,844
Yes
output
1
27,422
4
54,845
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Vasya has recently got a job as a cashier at a local store. His day at work is L minutes long. Vasya has already memorized n regular customers, the i-th of which comes after t_{i} minutes after the beginning of the day, and his service consumes l_{i} minutes. It is guaranteed that no customer will arrive while Vasya is servicing another customer. Vasya is a bit lazy, so he likes taking smoke breaks for a minutes each. Those breaks may go one after another, but Vasya must be present at work during all the time periods he must serve regular customers, otherwise one of them may alert his boss. What is the maximum number of breaks Vasya can take during the day? Input The first line contains three integers n, L and a (0 ≤ n ≤ 10^{5}, 1 ≤ L ≤ 10^{9}, 1 ≤ a ≤ L). The i-th of the next n lines contains two integers t_{i} and l_{i} (0 ≤ t_{i} ≤ L - 1, 1 ≤ l_{i} ≤ L). It is guaranteed that t_{i} + l_{i} ≤ t_{i + 1} and t_{n} + l_{n} ≤ L. Output Output one integer — the maximum number of breaks. Examples Input 2 11 3 0 1 1 1 Output 3 Input 0 5 2 Output 2 Input 1 3 2 1 2 Output 0 Note In the first sample Vasya can take 3 breaks starting after 2, 5 and 8 minutes after the beginning of the day. In the second sample Vasya can take 2 breaks starting after 0 and 2 minutes after the beginning of the day. In the third sample Vasya can't take any breaks. Submitted Solution: ``` n,le,a=map(int,input().split()) ans=0 st=0 t=[0]*n l=[0]*n for i in range(n): t[i],l[i]=map(int,input().split()) for i in range(n): if t[i]-st>=a: ans+=(t[i]-st)//a st=t[i]+l[i] # print(ans,i) #print(le,st) if le-st>=a: # print('hoi') ans+=(le-st)//a print(ans) ```
instruction
0
27,423
4
54,846
Yes
output
1
27,423
4
54,847
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Vasya has recently got a job as a cashier at a local store. His day at work is L minutes long. Vasya has already memorized n regular customers, the i-th of which comes after t_{i} minutes after the beginning of the day, and his service consumes l_{i} minutes. It is guaranteed that no customer will arrive while Vasya is servicing another customer. Vasya is a bit lazy, so he likes taking smoke breaks for a minutes each. Those breaks may go one after another, but Vasya must be present at work during all the time periods he must serve regular customers, otherwise one of them may alert his boss. What is the maximum number of breaks Vasya can take during the day? Input The first line contains three integers n, L and a (0 ≤ n ≤ 10^{5}, 1 ≤ L ≤ 10^{9}, 1 ≤ a ≤ L). The i-th of the next n lines contains two integers t_{i} and l_{i} (0 ≤ t_{i} ≤ L - 1, 1 ≤ l_{i} ≤ L). It is guaranteed that t_{i} + l_{i} ≤ t_{i + 1} and t_{n} + l_{n} ≤ L. Output Output one integer — the maximum number of breaks. Examples Input 2 11 3 0 1 1 1 Output 3 Input 0 5 2 Output 2 Input 1 3 2 1 2 Output 0 Note In the first sample Vasya can take 3 breaks starting after 2, 5 and 8 minutes after the beginning of the day. In the second sample Vasya can take 2 breaks starting after 0 and 2 minutes after the beginning of the day. In the third sample Vasya can't take any breaks. Submitted Solution: ``` n,l,a= map(int , input().split()) m=0 p=0 s=0 for i in range(1,n+1): t1,t2=map(int , input().split()) if(i==1 and t1>=a): s=s+int(t1/a) if(t1-(m+p)>=a and m!=0): s=s+int((t1-(m+p))/a) m=t2 p=t1 s=s+int((l-p-m)/a) print(s) ```
instruction
0
27,424
4
54,848
Yes
output
1
27,424
4
54,849
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Vasya has recently got a job as a cashier at a local store. His day at work is L minutes long. Vasya has already memorized n regular customers, the i-th of which comes after t_{i} minutes after the beginning of the day, and his service consumes l_{i} minutes. It is guaranteed that no customer will arrive while Vasya is servicing another customer. Vasya is a bit lazy, so he likes taking smoke breaks for a minutes each. Those breaks may go one after another, but Vasya must be present at work during all the time periods he must serve regular customers, otherwise one of them may alert his boss. What is the maximum number of breaks Vasya can take during the day? Input The first line contains three integers n, L and a (0 ≤ n ≤ 10^{5}, 1 ≤ L ≤ 10^{9}, 1 ≤ a ≤ L). The i-th of the next n lines contains two integers t_{i} and l_{i} (0 ≤ t_{i} ≤ L - 1, 1 ≤ l_{i} ≤ L). It is guaranteed that t_{i} + l_{i} ≤ t_{i + 1} and t_{n} + l_{n} ≤ L. Output Output one integer — the maximum number of breaks. Examples Input 2 11 3 0 1 1 1 Output 3 Input 0 5 2 Output 2 Input 1 3 2 1 2 Output 0 Note In the first sample Vasya can take 3 breaks starting after 2, 5 and 8 minutes after the beginning of the day. In the second sample Vasya can take 2 breaks starting after 0 and 2 minutes after the beginning of the day. In the third sample Vasya can't take any breaks. Submitted Solution: ``` # cook your code here n, l, a = map(int, input().split(' ')) tpi, lpi = 0, 0 output = 0 for _ in range(n): ti, li = map(int, input().split(' ')) if tpi+lpi == ti: tpi = ti lpi = li continue else: dist = ti - tpi+lpi output += dist//a tpi = ti lpi = li output += (l - (tpi+ lpi))//a print(output) ```
instruction
0
27,425
4
54,850
No
output
1
27,425
4
54,851
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Vasya has recently got a job as a cashier at a local store. His day at work is L minutes long. Vasya has already memorized n regular customers, the i-th of which comes after t_{i} minutes after the beginning of the day, and his service consumes l_{i} minutes. It is guaranteed that no customer will arrive while Vasya is servicing another customer. Vasya is a bit lazy, so he likes taking smoke breaks for a minutes each. Those breaks may go one after another, but Vasya must be present at work during all the time periods he must serve regular customers, otherwise one of them may alert his boss. What is the maximum number of breaks Vasya can take during the day? Input The first line contains three integers n, L and a (0 ≤ n ≤ 10^{5}, 1 ≤ L ≤ 10^{9}, 1 ≤ a ≤ L). The i-th of the next n lines contains two integers t_{i} and l_{i} (0 ≤ t_{i} ≤ L - 1, 1 ≤ l_{i} ≤ L). It is guaranteed that t_{i} + l_{i} ≤ t_{i + 1} and t_{n} + l_{n} ≤ L. Output Output one integer — the maximum number of breaks. Examples Input 2 11 3 0 1 1 1 Output 3 Input 0 5 2 Output 2 Input 1 3 2 1 2 Output 0 Note In the first sample Vasya can take 3 breaks starting after 2, 5 and 8 minutes after the beginning of the day. In the second sample Vasya can take 2 breaks starting after 0 and 2 minutes after the beginning of the day. In the third sample Vasya can't take any breaks. Submitted Solution: ``` n, l, a = map(int, input().split()) ans, t0 = 0, 0 for i in range(n): t, li = map(int, input().split()) ans += (t - t0) // a t0 = li ans += (l - t0) // a print(ans) ```
instruction
0
27,426
4
54,852
No
output
1
27,426
4
54,853
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Vasya has recently got a job as a cashier at a local store. His day at work is L minutes long. Vasya has already memorized n regular customers, the i-th of which comes after t_{i} minutes after the beginning of the day, and his service consumes l_{i} minutes. It is guaranteed that no customer will arrive while Vasya is servicing another customer. Vasya is a bit lazy, so he likes taking smoke breaks for a minutes each. Those breaks may go one after another, but Vasya must be present at work during all the time periods he must serve regular customers, otherwise one of them may alert his boss. What is the maximum number of breaks Vasya can take during the day? Input The first line contains three integers n, L and a (0 ≤ n ≤ 10^{5}, 1 ≤ L ≤ 10^{9}, 1 ≤ a ≤ L). The i-th of the next n lines contains two integers t_{i} and l_{i} (0 ≤ t_{i} ≤ L - 1, 1 ≤ l_{i} ≤ L). It is guaranteed that t_{i} + l_{i} ≤ t_{i + 1} and t_{n} + l_{n} ≤ L. Output Output one integer — the maximum number of breaks. Examples Input 2 11 3 0 1 1 1 Output 3 Input 0 5 2 Output 2 Input 1 3 2 1 2 Output 0 Note In the first sample Vasya can take 3 breaks starting after 2, 5 and 8 minutes after the beginning of the day. In the second sample Vasya can take 2 breaks starting after 0 and 2 minutes after the beginning of the day. In the third sample Vasya can't take any breaks. Submitted Solution: ``` n,L,a = map(int,input().split()) time = 0 count = 0 for i in range(n): t,l = map(int,input().split()) if (t-time)//a >=1: count +=(t-time)//a time = t+l if i == n -1: count += (L-time)//a print(count) ```
instruction
0
27,427
4
54,854
No
output
1
27,427
4
54,855
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Vasya has recently got a job as a cashier at a local store. His day at work is L minutes long. Vasya has already memorized n regular customers, the i-th of which comes after t_{i} minutes after the beginning of the day, and his service consumes l_{i} minutes. It is guaranteed that no customer will arrive while Vasya is servicing another customer. Vasya is a bit lazy, so he likes taking smoke breaks for a minutes each. Those breaks may go one after another, but Vasya must be present at work during all the time periods he must serve regular customers, otherwise one of them may alert his boss. What is the maximum number of breaks Vasya can take during the day? Input The first line contains three integers n, L and a (0 ≤ n ≤ 10^{5}, 1 ≤ L ≤ 10^{9}, 1 ≤ a ≤ L). The i-th of the next n lines contains two integers t_{i} and l_{i} (0 ≤ t_{i} ≤ L - 1, 1 ≤ l_{i} ≤ L). It is guaranteed that t_{i} + l_{i} ≤ t_{i + 1} and t_{n} + l_{n} ≤ L. Output Output one integer — the maximum number of breaks. Examples Input 2 11 3 0 1 1 1 Output 3 Input 0 5 2 Output 2 Input 1 3 2 1 2 Output 0 Note In the first sample Vasya can take 3 breaks starting after 2, 5 and 8 minutes after the beginning of the day. In the second sample Vasya can take 2 breaks starting after 0 and 2 minutes after the beginning of the day. In the third sample Vasya can't take any breaks. Submitted Solution: ``` n,L,a=map(int,input().split()) t=[] l=[] if(n==0):print(L//a) else: for _ in range(n): ti,li=map(int,input().split()) t.append(ti) l.append(li) count=((L-l[n-1])//a) if(n==1):print(count) else: for i in range(1,n): count+=(t[i]-l[i-1])//a print(count) ```
instruction
0
27,428
4
54,856
No
output
1
27,428
4
54,857
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Julia is going to cook a chicken in the kitchen of her dormitory. To save energy, the stove in the kitchen automatically turns off after k minutes after turning on. During cooking, Julia goes to the kitchen every d minutes and turns on the stove if it is turned off. While the cooker is turned off, it stays warm. The stove switches on and off instantly. It is known that the chicken needs t minutes to be cooked on the stove, if it is turned on, and 2t minutes, if it is turned off. You need to find out, how much time will Julia have to cook the chicken, if it is considered that the chicken is cooked evenly, with constant speed when the stove is turned on and at a constant speed when it is turned off. Input The single line contains three integers k, d and t (1 ≤ k, d, t ≤ 1018). Output Print a single number, the total time of cooking in minutes. The relative or absolute error must not exceed 10 - 9. Namely, let's assume that your answer is x and the answer of the jury is y. The checker program will consider your answer correct if <image>. Examples Input 3 2 6 Output 6.5 Input 4 2 20 Output 20.0 Note In the first example, the chicken will be cooked for 3 minutes on the turned on stove, after this it will be cooked for <image>. Then the chicken will be cooked for one minute on a turned off stove, it will be cooked for <image>. Thus, after four minutes the chicken will be cooked for <image>. Before the fifth minute Julia will turn on the stove and after 2.5 minutes the chicken will be ready <image>. In the second example, when the stove is turned off, Julia will immediately turn it on, so the stove will always be turned on and the chicken will be cooked in 20 minutes. Submitted Solution: ``` line1 = input().split() fire_time = int(line1[0]) visit_time = int(line1[1]) need_time = int(line1[2]) total_time = 0 def less(fire_time,visit_time,need_time): total_time=0 every_time = fire_time+(visit_time-fire_time)/2 times = int(need_time/every_time) rest_time = need_time-times*every_time if(rest_time==0): total_time=times*visit_time return total_time else: if(rest_time<=fire_time): total_time=times*visit_time+rest_time else: total_time=times*visit_time+2*rest_time-fire_time return total_time def more(fire_time,visit_time,need_time): visit_time1=0 if(fire_time%visit_time==0): visit_time1=fire_time else: visit_time1=(fire_time//visit_time)*visit_time+visit_time total_time = 0 every_time = fire_time + (visit_time1 - fire_time) / 2 times = int(need_time / every_time) rest_time = need_time - times * every_time if (rest_time == 0): total_time = times * visit_time1 return total_time else: if (rest_time <= fire_time): total_time = times * visit_time1 + rest_time else: total_time = times * visit_time1 + 2 * rest_time - fire_time return total_time if(fire_time<visit_time): print(less(fire_time,visit_time,need_time)) elif(fire_time==visit_time): print(need_time) else: print(more(fire_time,visit_time,need_time)) ```
instruction
0
28,009
4
56,018
Yes
output
1
28,009
4
56,019
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Julia is going to cook a chicken in the kitchen of her dormitory. To save energy, the stove in the kitchen automatically turns off after k minutes after turning on. During cooking, Julia goes to the kitchen every d minutes and turns on the stove if it is turned off. While the cooker is turned off, it stays warm. The stove switches on and off instantly. It is known that the chicken needs t minutes to be cooked on the stove, if it is turned on, and 2t minutes, if it is turned off. You need to find out, how much time will Julia have to cook the chicken, if it is considered that the chicken is cooked evenly, with constant speed when the stove is turned on and at a constant speed when it is turned off. Input The single line contains three integers k, d and t (1 ≤ k, d, t ≤ 1018). Output Print a single number, the total time of cooking in minutes. The relative or absolute error must not exceed 10 - 9. Namely, let's assume that your answer is x and the answer of the jury is y. The checker program will consider your answer correct if <image>. Examples Input 3 2 6 Output 6.5 Input 4 2 20 Output 20.0 Note In the first example, the chicken will be cooked for 3 minutes on the turned on stove, after this it will be cooked for <image>. Then the chicken will be cooked for one minute on a turned off stove, it will be cooked for <image>. Thus, after four minutes the chicken will be cooked for <image>. Before the fifth minute Julia will turn on the stove and after 2.5 minutes the chicken will be ready <image>. In the second example, when the stove is turned off, Julia will immediately turn it on, so the stove will always be turned on and the chicken will be cooked in 20 minutes. Submitted Solution: ``` """Problem C - Save Energy!. http://codeforces.com/contest/937/problem/C Julia is going to cook a chicken in the kitchen of her dormitory. To save energy, the stove in the kitchen automatically turns off after k minutes after turning on. During cooking, Julia goes to the kitchen every d minutes and turns on the stove if it is turned off. While the cooker is turned off, it stays warm. The stove switches on and off instantly. It is known that the chicken needs t minutes to be cooked on the stove, if it is turned on, and 2t minutes, if it is turned off. You need to find out, how much time will Julia have to cook the chicken, if it is considered that the chicken is cooked evenly, with constant speed when the stove is turned on and at a constant speed when it is turned off. Input: The single line contains three integers k, d and t (1 ≤ k, d, t ≤ 1018). Output: Print a single number, the total time of cooking in minutes. The relative or absolute error must not exceed 10 - 9. Namely, let's assume that your answer is x and the answer of the jury is y. The checker program will consider your answer correct if . """ import logging import math fmt = '%(levelname)s - %(name)s (line:%(lineno)s) - %(message)s' formatter = logging.Formatter(fmt) ch = logging.StreamHandler() ch.setLevel(logging.DEBUG) ch.setFormatter(formatter) logger = logging.getLogger('sae') logger.setLevel(logging.DEBUG) logger.addHandler(ch) def solve(k, d, t): if k % d == 0: r = 0 elif k > d: r = d - k % d elif k < d: r = d - k n = t / (k + 0.5 * r) cooked = math.floor(n) * (k + 0.5 * r) diff = t - cooked time = math.floor(n) * (k + r) if diff > 0: time += diff return time def main(): k, d, t = [int(x) for x in input().strip().split()] result = solve(k, d, t) print(result) if __name__ == '__main__': main() ```
instruction
0
28,011
4
56,022
No
output
1
28,011
4
56,023