message
stringlengths
2
22.7k
message_type
stringclasses
2 values
message_id
int64
0
1
conversation_id
int64
145
109k
cluster
float64
9
9
__index_level_0__
int64
290
217k
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In one little known, but very beautiful country called Waterland, lives a lovely shark Valerie. Like all the sharks, she has several rows of teeth, and feeds on crucians. One of Valerie's distin...
instruction
0
71,077
9
142,154
Yes
output
1
71,077
9
142,155
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In one little known, but very beautiful country called Waterland, lives a lovely shark Valerie. Like all the sharks, she has several rows of teeth, and feeds on crucians. One of Valerie's distin...
instruction
0
71,078
9
142,156
Yes
output
1
71,078
9
142,157
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In one little known, but very beautiful country called Waterland, lives a lovely shark Valerie. Like all the sharks, she has several rows of teeth, and feeds on crucians. One of Valerie's distin...
instruction
0
71,079
9
142,158
No
output
1
71,079
9
142,159
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In one little known, but very beautiful country called Waterland, lives a lovely shark Valerie. Like all the sharks, she has several rows of teeth, and feeds on crucians. One of Valerie's distin...
instruction
0
71,080
9
142,160
No
output
1
71,080
9
142,161
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In one little known, but very beautiful country called Waterland, lives a lovely shark Valerie. Like all the sharks, she has several rows of teeth, and feeds on crucians. One of Valerie's distin...
instruction
0
71,081
9
142,162
No
output
1
71,081
9
142,163
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In one little known, but very beautiful country called Waterland, lives a lovely shark Valerie. Like all the sharks, she has several rows of teeth, and feeds on crucians. One of Valerie's distin...
instruction
0
71,082
9
142,164
No
output
1
71,082
9
142,165
Provide a correct Python 3 solution for this coding contest problem. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining two breads into a pair. Yun-san is very careful, so I wan...
instruction
0
71,578
9
143,156
"Correct Solution: ``` N = int(input()) A = list(map(int, input().split())) oc = 0 mi = 1e9 for a in A: if a % 2: oc += 1 mi = min(mi, a) print((sum(A) - [0, mi][oc % 2]) // 2) ```
output
1
71,578
9
143,157
Provide a correct Python 3 solution for this coding contest problem. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining two breads into a pair. Yun-san is very careful, so I wan...
instruction
0
71,579
9
143,158
"Correct Solution: ``` N = int(input()) A = [int(x) for x in input().split()] A.sort() ans = sum(A) for a in A: if ans % 2 == 0 or a % 2 == 0: continue ans -= a ans = ans//2 print(ans) ```
output
1
71,579
9
143,159
Provide a correct Python 3 solution for this coding contest problem. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining two breads into a pair. Yun-san is very careful, so I wan...
instruction
0
71,580
9
143,160
"Correct Solution: ``` n = int(input()) li = list(map(int,input().split())) li.sort(reverse = True) ki = 0 kifl = False ans = 0 for a in li: if a%2 == 0: ans += a else: if(kifl == True): ans += ki+a kifl = False else: ki = a kifl = True pri...
output
1
71,580
9
143,161
Provide a correct Python 3 solution for this coding contest problem. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining two breads into a pair. Yun-san is very careful, so I wan...
instruction
0
71,581
9
143,162
"Correct Solution: ``` n = int(input()) a = list(map(int, input().split())) r = sum(a) if r % 2 == 0: print(r // 2) else: a.sort() for j in a: if (r - j) % 2 == 0: print((r-j) // 2) break ```
output
1
71,581
9
143,163
Provide a correct Python 3 solution for this coding contest problem. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining two breads into a pair. Yun-san is very careful, so I wan...
instruction
0
71,582
9
143,164
"Correct Solution: ``` n = int(input()) a = list(map(int,input().split())) if sum(a) % 2 == 0: print(sum(a) // 2) else: a.sort() mi = 10000 for i in a: if i % 2 == 1: mi = i break print((sum(a) - mi) // 2) ```
output
1
71,582
9
143,165
Provide a correct Python 3 solution for this coding contest problem. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining two breads into a pair. Yun-san is very careful, so I wan...
instruction
0
71,583
9
143,166
"Correct Solution: ``` N=int(input()) A=list(map(int,input().split())) A.sort() if sum(A)%2==0: print(sum(A)//2) else: for i in range(N): if A[i]%2==1: break print((sum(A)-A[i])//2) ```
output
1
71,583
9
143,167
Provide a correct Python 3 solution for this coding contest problem. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining two breads into a pair. Yun-san is very careful, so I wan...
instruction
0
71,584
9
143,168
"Correct Solution: ``` _ = input() A = [int(x) for x in input().split()] S = sum(A) if S % 2 == 0: print(S // 2) else: print((S - min(x for x in A if x % 2)) // 2) ```
output
1
71,584
9
143,169
Provide a correct Python 3 solution for this coding contest problem. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining two breads into a pair. Yun-san is very careful, so I wan...
instruction
0
71,585
9
143,170
"Correct Solution: ``` n = int(input()) li = list(map(int,input().split())) li.sort(reverse = True) ans = acc = 0 for x in li: if x%2 == 0: ans += x//2 elif acc != 0: ans += (acc+x)//2 acc = 0 else: acc = x print(ans) ```
output
1
71,585
9
143,171
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining tw...
instruction
0
71,586
9
143,172
Yes
output
1
71,586
9
143,173
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining tw...
instruction
0
71,587
9
143,174
Yes
output
1
71,587
9
143,175
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining tw...
instruction
0
71,588
9
143,176
Yes
output
1
71,588
9
143,177
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. F: Tea Party Yun decided to hold a tea party at the company. The shop sells $ N $ sets of bread, each containing $ A_1, A_2, A_3, \ dots, A_N $. Yun decided to make a sandwich by combining tw...
instruction
0
71,589
9
143,178
Yes
output
1
71,589
9
143,179
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Automatic Bakery of Cyberland (ABC) recently bought an n Γ— m rectangle table. To serve the diners, ABC placed seats around the table. The size of each seat is equal to a unit square, so there ar...
instruction
0
72,039
9
144,078
No
output
1
72,039
9
144,079
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A teacher decides to give toffees to his students. He asks n students to stand in a queue. Since the teacher is very partial, he follows the following rule to distribute toffees. He looks at th...
instruction
0
72,129
9
144,258
Yes
output
1
72,129
9
144,259
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A teacher decides to give toffees to his students. He asks n students to stand in a queue. Since the teacher is very partial, he follows the following rule to distribute toffees. He looks at th...
instruction
0
72,130
9
144,260
Yes
output
1
72,130
9
144,261
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A teacher decides to give toffees to his students. He asks n students to stand in a queue. Since the teacher is very partial, he follows the following rule to distribute toffees. He looks at th...
instruction
0
72,132
9
144,264
Yes
output
1
72,132
9
144,265
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A teacher decides to give toffees to his students. He asks n students to stand in a queue. Since the teacher is very partial, he follows the following rule to distribute toffees. He looks at th...
instruction
0
72,133
9
144,266
No
output
1
72,133
9
144,267
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A teacher decides to give toffees to his students. He asks n students to stand in a queue. Since the teacher is very partial, he follows the following rule to distribute toffees. He looks at th...
instruction
0
72,134
9
144,268
No
output
1
72,134
9
144,269
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A teacher decides to give toffees to his students. He asks n students to stand in a queue. Since the teacher is very partial, he follows the following rule to distribute toffees. He looks at th...
instruction
0
72,135
9
144,270
No
output
1
72,135
9
144,271
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A teacher decides to give toffees to his students. He asks n students to stand in a queue. Since the teacher is very partial, he follows the following rule to distribute toffees. He looks at th...
instruction
0
72,136
9
144,272
No
output
1
72,136
9
144,273
Provide a correct Python 3 solution for this coding contest problem. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza with the highest calories per dollar among the pizzas he co...
instruction
0
73,227
9
146,454
"Correct Solution: ``` #C N = int(input()) A,B = map(int,input().split()) C = int(input()) T = [int(input()) for i in range(N)] T.sort(reverse=True) cal = C cost = A for t in T: if cal/cost < (cal+t)/(cost+B): cal+=t cost+=B else: break print(cal//cost) ```
output
1
73,227
9
146,455
Provide a correct Python 3 solution for this coding contest problem. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza with the highest calories per dollar among the pizzas he co...
instruction
0
73,228
9
146,456
"Correct Solution: ``` n=int(input()) a,b=map(int,input().split()) c=int(input()) d=sorted([int(input()) for _ in range(n)])[::-1] e=c//a for x in d: a+=b;c+=x e=max(e,c//a) print(e) ```
output
1
73,228
9
146,457
Provide a correct Python 3 solution for this coding contest problem. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza with the highest calories per dollar among the pizzas he co...
instruction
0
73,229
9
146,458
"Correct Solution: ``` N=int(input()) A,B=map(int,input().split()) C=int(input()) D=sorted(int(input())for _ in[0]*N)[::-1] print(max((C+sum(D[:i]))//(A+i*B)for i in range(N))) ```
output
1
73,229
9
146,459
Provide a correct Python 3 solution for this coding contest problem. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza with the highest calories per dollar among the pizzas he co...
instruction
0
73,230
9
146,460
"Correct Solution: ``` n = int(input()) p_cost, t_cost = map(int, input().split()) p_cal = int(input()) t_cal = [] for i in range(n) : t_cal.append(int(input())) t_cal.sort(reverse = True) total_cost = p_cost total_cal = p_cal max_total_cal_par_doll = total_cal // total_cost for i in range(n) : total_cost += ...
output
1
73,230
9
146,461
Provide a correct Python 3 solution for this coding contest problem. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza with the highest calories per dollar among the pizzas he co...
instruction
0
73,231
9
146,462
"Correct Solution: ``` n = int(input()) a, b = map(int, input().split()) c = int(input()) topping = [] for _ in range(n): d = int(input()) topping.append(d) topping.sort(reverse=True) ans = c // a total = c for i, t in enumerate(topping): total += t cal = total // (a + (i+1) * b) if ans <= cal: ...
output
1
73,231
9
146,463
Provide a correct Python 3 solution for this coding contest problem. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza with the highest calories per dollar among the pizzas he co...
instruction
0
73,232
9
146,464
"Correct Solution: ``` n = int(input()) c, b = map(int, input().split()) k = int(input()) A = [int(input()) for _ in range(n)] A.sort(reverse=True) r = k/c for i in A: k += i c += b if k/c<=r: break else: r = k/c print(int(r)) ```
output
1
73,232
9
146,465
Provide a correct Python 3 solution for this coding contest problem. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza with the highest calories per dollar among the pizzas he co...
instruction
0
73,233
9
146,466
"Correct Solution: ``` n = int(input()) a, b = map(int,input().split()) c = int(input()) ds = [int(input()) for i in range(n)] ds.sort(reverse=True) ans = c // a for i in range(n): c += ds[i] ans = max(c // (a + b * (i + 1)), ans) print(ans) ```
output
1
73,233
9
146,467
Provide a correct Python 3 solution for this coding contest problem. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza with the highest calories per dollar among the pizzas he co...
instruction
0
73,234
9
146,468
"Correct Solution: ``` def main(): t_n = int(input()) price_a, price_b = map(int, input().split()) cal_a = int(input()) t_c = sorted([int(input()) for _ in range(t_n)], reverse=True) cpd_a = cal_a / price_a cal_sum = cal_a price_sum = price_a b_sum = 0 for i in range(t_n): b...
output
1
73,234
9
146,469
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza wit...
instruction
0
73,235
9
146,470
Yes
output
1
73,235
9
146,471
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza wit...
instruction
0
73,236
9
146,472
Yes
output
1
73,236
9
146,473
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza wit...
instruction
0
73,237
9
146,474
Yes
output
1
73,237
9
146,475
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. problem Chairman K is a regular customer of the JOI pizza shop in the center of JOI city. For some reason, he decided to start a life-saving life this month. So he wanted to order the pizza wit...
instruction
0
73,238
9
146,476
Yes
output
1
73,238
9
146,477
Provide tags and a correct Python 3 solution for this coding contest problem. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav laid out n skewers parallel to each other, and...
instruction
0
73,303
9
146,606
Tags: dp, greedy, math Correct Solution: ``` from functools import reduce n, k = map(int, input().split()) flip = 2*k+1 l = -(-n//flip) max = (k+1) + (l-1) * flip i = k+1 if max > n: i -= (max-n) arr = [] # if n%flip > k: # i = k+1 while i <= n: arr.append(i) i += flip # else: # i = 1 # while i <= n: # arr...
output
1
73,303
9
146,607
Provide tags and a correct Python 3 solution for this coding contest problem. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav laid out n skewers parallel to each other, and...
instruction
0
73,304
9
146,608
Tags: dp, greedy, math Correct Solution: ``` n, k = map(int, input().split()) t = 2 * k + 1 ans = list(range(min(((n - 1) % t) + 1, k + 1), n + 1, t)) print(len(ans)) print(' '.join(map(str, ans))) ```
output
1
73,304
9
146,609
Provide tags and a correct Python 3 solution for this coding contest problem. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav laid out n skewers parallel to each other, and...
instruction
0
73,305
9
146,610
Tags: dp, greedy, math Correct Solution: ``` n, k = map(int, input().split()) ans = n // (k * 2 + 1) x = n % (k * 2 + 1) if x == 0: print(ans) for i in range(k + 1, n + 1, k * 2 + 1): print(i, end=" ") elif x > k: print(ans + 1) for i in range(x - k, n + 1, k * 2 + 1): print(i, end="...
output
1
73,305
9
146,611
Provide tags and a correct Python 3 solution for this coding contest problem. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav laid out n skewers parallel to each other, and...
instruction
0
73,306
9
146,612
Tags: dp, greedy, math Correct Solution: ``` import sys # from collections import deque # from collections import Counter # from math import sqrt # from math import log from math import ceil # from bisect import bisect_left, bisect_right alpha=['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',...
output
1
73,306
9
146,613
Provide tags and a correct Python 3 solution for this coding contest problem. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav laid out n skewers parallel to each other, and...
instruction
0
73,307
9
146,614
Tags: dp, greedy, math Correct Solution: ``` def mi(): return map(int, input().split(' ')) n, k = mi() t = 2*k + 1 m = n % t start = 0 ans = [] if m == 0: print(int(n/t)) start = 2*k else: print(int(n/t) + 1) #ans.append(m-1//k) start = m for i in range((start//2)+1,n+1,t): ans.append(i) ...
output
1
73,307
9
146,615
Provide tags and a correct Python 3 solution for this coding contest problem. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav laid out n skewers parallel to each other, and...
instruction
0
73,308
9
146,616
Tags: dp, greedy, math Correct Solution: ``` n,k=map(int,input().split()) i,p=k+1,2*k+1 t=n//p st=[] if n%p!=0: t+=1 if t*p-k>n: i-=t*p-k-n print(t) while t>0: st.append(i+(t-1)*p) t-=1 print(' '.join(list(sorted(map(str,st))))) ```
output
1
73,308
9
146,617
Provide tags and a correct Python 3 solution for this coding contest problem. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav laid out n skewers parallel to each other, and...
instruction
0
73,309
9
146,618
Tags: dp, greedy, math Correct Solution: ``` n, k = map(int, input().split()) r = n % (2*k + 1) out = [] if r >= k + 1: cnt = r - k while cnt < n: out.append(cnt) cnt += 2*k + 1 else: cut1 = (r + 2*k + 1) // 2 cut2 = (r + 2*k + 2) // 2 cnt = cut1 - k if cnt == 0: cnt +...
output
1
73,309
9
146,619
Provide tags and a correct Python 3 solution for this coding contest problem. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav laid out n skewers parallel to each other, and...
instruction
0
73,310
9
146,620
Tags: dp, greedy, math Correct Solution: ``` n,k=list(map(int,input().split(" "))) i,D=1,k*2+1 g=[] while True: R=k+i p=(n-R)%D if p==0 or p>=R: div=n/D a = int(div) b = abs(div)-abs(int(div)) if b: qw=int(n/D)+1 else: qw=int(n/D) for w in range(qw): g.append(i) i=i...
output
1
73,310
9
146,621
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav...
instruction
0
73,311
9
146,622
Yes
output
1
73,311
9
146,623
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav...
instruction
0
73,312
9
146,624
Yes
output
1
73,312
9
146,625
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav...
instruction
0
73,313
9
146,626
Yes
output
1
73,313
9
146,627
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Long story short, shashlik is Miroslav's favorite food. Shashlik is prepared on several skewers simultaneously. There are two states for each skewer: initial and turned over. This time Miroslav...
instruction
0
73,314
9
146,628
Yes
output
1
73,314
9
146,629