create account

[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回) by kenchung

View this thread on: hive.blogpeakd.comecency.com
· @kenchung · (edited)
$48.47
[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)
<h2><center>Mathematics × Programming Competition #2<br>Announcement of the Answer and Winners</center></h2>
<h2><center>數學 × 程式編寫比賽 (第二回)<br>答案及得獎名單公佈</center></h2>


---

<center><h2>Question 問題</h2></center>

A regular 2017999-sided polygon is drawn on a rectangular coordinate plane, with (0,0) as its center and the distance between any vertex to the center is 1. It is given that one of the vertices is (1,0). Find the sum of x- and y-coordinates of all the other 2017998 vertices.

> 在直角坐標系統上,我們以(0,0)為中心畫出一個正2017999邊形。它中心與任意一個頂點的距離為1。已知其中一個頂點為 (1,0),求其他所有2017998個頂點的x坐標及y坐標之和。

<center>https://ds055uzetaobb.cloudfront.net/image_optimizer/67dbe96a1c538dc2f6ff1e92ae3c928bb0f9b3cd.png</center>
Photo source: https://ds055uzetaobb.cloudfront.net/

---
<h2><center>Answer 答案: -1</center></h2>
<h4>Mathematical approach 數學解法</h4>

Let the number of vertices be N. First of all we should note that the <i>n</i>th vertex starting from (1,0) in the anti-clockwise direction has the coordinates ( cos (2πn/N) ,  sin (2πn/N) ), where n is from 0 to N-1. 

It is easy to observe the summation of y-coordinates is 0,  as the polygon is symmetric about x-axis regardless of the value of N.

However the polygon is only symmetric about the y-axis if N is even. Note that N is odd in this case, so we cannot conclude the summation of x-coordinates is 0 right away. *(A lot of proofs submitted claimed that summation of x-coordinates = 0 because of symmetry, which is wrong!)*

What if we put the coordinates on a *complex plane* instead? Then the <i>n</i>th vertex now can be written as cos (2πn/N) +  i sin (2πn/N). By the De Moivre's formula<sup>1</sup>, we know that each of these vertices satisfies the equation z<sup>N</sup> = 1. The sum of roots of this equation is 0, which means both the sum of real part and sum of imaginary part of the vertices are 0. Put it in another way, we have <img src="https://latex.codecogs.com/gif.latex?\sum_{n=0}^{N-1}\sin&space;\left&space;(&space;\frac{2\pi&space;n}{N}&space;\right&space;)&space;=&space;0" title="\sum_{n=0}^{N-1}\sin \left ( \frac{2\pi n}{N} \right ) = 0" /> and  <img src="https://latex.codecogs.com/gif.latex?\sum_{n=0}^{N-1}\cos&space;\left&space;(&space;\frac{2\pi&space;n}{N}&space;\right&space;)&space;=&space;0" title="\sum_{n=0}^{N-1}\sin \left ( \frac{2\pi n}{N} \right ) = 0" />.  

Taking away the point (1,0), our answer should be -1. Actually the value of N does not matter!

<sup>1</sup> De Moivre's formula: <img src="https://latex.codecogs.com/gif.latex?\inline&space;\left&space;(&space;\cos\left&space;(&space;x&space;\right&space;)&space;&plus;&space;i&space;\sin\left&space;(&space;x&space;\right&space;)\right&space;)^{n}&space;=&space;\cos\left&space;(&space;nx&space;\right&space;)&space;&plus;&space;i&space;\sin\left&space;(&space;nx&space;\right&space;)" title="\left ( \cos\left ( x \right ) + i \sin\left ( x \right )\right )^{n} = \cos\left ( nx \right ) + i \sin\left ( nx \right )" />

> 設N為頂點數目。將圖形置於複數平面,第n個頂點可寫成cos (2πn/N) +  i sin (2πn/N)。由 De Moivre's formula 可知每個頂點均附合方程z<sup>N</sup> = 1。此方程的根之和為0,即實數和虛數部分均為0。因此可得 <img src="https://latex.codecogs.com/gif.latex?\sum_{n=0}^{N-1}\sin&space;\left&space;(&space;\frac{2\pi&space;n}{N}&space;\right&space;)&space;=&space;0" title="\sum_{n=0}^{N-1}\sin \left ( \frac{2\pi n}{N} \right ) = 0" />及<img src="https://latex.codecogs.com/gif.latex?\sum_{n=0}^{N-1}\cos&space;\left&space;(&space;\frac{2\pi&space;n}{N}&space;\right&space;)&space;=&space;0" title="\sum_{n=0}^{N-1}\sin \left ( \frac{2\pi n}{N} \right ) = 0" />。除去頂點(1,0),答案為-1。事實上N的數值並不重要!

 <h4>Programming approach 編程解法</h4>


JavaScript:
```javascript
var sum = 0; 
for (var i = 1; i < 2017999; i++){
   sum = sum + Math.sin(i / 2017999 * 2 * Math.PI) + Math.cos(i / 2017999 * 2 * Math.PI);
} 
console.log(sum);
```
 Output: [a number very close to -1, due to rounding errors]
>輸出: [非常接近-1的數字,其誤差是由於捨入誤差。]

The above JavaScript snippet has been reviewed by @adnanrahic. You can visit his blog to learn JavaScript!
> 以上JavaScript程式經由@adnanrahic檢閱,你可以按以下連結學習一下JavaScript!

<a href="https://steemit.com/programming/@adnanrahic/the-javascript-journey-1-values
">The JavaScript Journey 1 - Values</a>
<a href="https://steemit.com/programming/@adnanrahic/the-javascript-journey-2-arithmetic-and-operators">The JavaScript Journey 2 - Arithmetic and Operators</a>
<a href="https://steemit.com/programming/@adnanrahic/the-javascript-journey-3-logical-operators">The JavaScript Journey #3 - Logical Operators</a>
<a href="https://steemit.com/programming/@adnanrahic/the-javascript-journey-4-special-values-and-precise-comparisons">The JavaScript Journey #4 - Special Values & Precise Comparisons</a>

---
<h2><center>Winners 得獎者</center></h2>

In 24 hours' time, we have received <b>19</b> responses! Thank you for all your participation! 

> 在短短24小時的比賽時間,我們收到了<b>19</b>名參賽者的答案! 感謝大家的熱烈支持!

In the following list, the participants highlighted in yellow have won the first prize, while those highlighted in orange won the second prize! According to the rules, only the SBD payout of the announcement posts will be used as the prize pool, but unfortunately the amount is only several SBD. Nevertheless, I have decided to increase the prize pool to <b>20 SBD</b>, using part of the payout from the question post!

> 下表以黃色標示者贏得第一名,而橙色者則贏得二獎。根據規則,只有預告帖的SBD金額方會作為獎池,但今次預告帖的SBD金額只有數SBD。不過我決定將獎池調升至<b>20 SBD</b>!

![](https://steemitimages.com/DQmWu3HJ4oxqTycXNwnsLzDLFZsNnvXcTZL212M91ZPuRVK/image.png)

<h3><center>Congrats to @kelkoo and @binbin88 for being the first ones to submit a valid numerical answer and mathematical proof respectively, thus getting the 1st prizes!</center></h3>
In particular, @kelkoo has won the first prize for 2 consecutive competitions already! Great job!

> <h3><center>恭喜 @kelkoo 和 @binbin88 分別奪得數字答案及數學證明的第一名!</center></h3>
> 而@kelkoo已第二次奪得第一名,表現實在驚人!

However, as you may notice in the table above, there are participants who answered the question correctly, but they didn't upvote both the announcement post and question posts, so they become ineligible for the prizes :( Make sure you read the rules carefully and hope that you can win next time! :)

> 然而有部分參賽者因未upvote預告帖,所以被取消資格。記得下次要清楚閱讀規則啊! 下表為派彩名單:

The winners and prizes have been tabulated below:

Winner|Prize|SBD
---|---|---
@kelkoo|Numerical answer: first prize|5
@binbin88|Numerical answer: second prize|1
@lbdcdb|Numerical answer: second prize|1
@teambuktu|Numerical answer: second prize|1
@happychau123|Numerical answer: second prize|1
@binbin88|Mathematical proof: first prize|5
@frenchredrum|Mathematical proof: second prize|1
@rossjstanley|Mathematical proof: second prize|1
@schneidor|Mathematical proof: second prize|1
@lbdcdb|Mathematical proof: second prize|1
@point|Mathematical proof: second prize|1

We have one second prize for numerical answers not given out, since there are not sufficient qualified winners. SBD has been deposited into your wallet already :) Hope to see you in the next competition!

> 由於合資格的參賽者不足,是此比賽尚有一名數字答案二獎未被派發。SBD已派發予各位,希望下一次比賽再見到大家!

----

<i>Upvote, resteem and follow me at @kenchung if you like my posts!</i>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 19 others
properties (23)
authorkenchung
permlinkanswer-and-winners-mathematics-programming-competition-2-201773t233054959z
categorycontest
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":["contest","math","cn","cn-contest","programming"]}
created2017-07-03 15:31:00
last_update2017-07-04 00:48:15
depth0
children29
last_payout2017-07-10 15:31:00
cashout_time1969-12-31 23:59:59
total_payout_value38.014 HBD
curator_payout_value10.452 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,131
author_reputation41,181,348,504,685
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,156,514
net_rshares7,258,847,871,772
author_curate_reward""
vote details (83)
@adnanrahic ·
Great job @kenchung! I'm very proud to be part of your awesome contests. :)
👍  
properties (23)
authoradnanrahic
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170704t020332314z
categorycontest
json_metadata{"tags":["contest"],"users":["kenchung"],"app":"steemit/0.1"}
created2017-07-04 02:03:36
last_update2017-07-04 02:03:36
depth1
children1
last_payout2017-07-11 02:03:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation1,605,311,705,685
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,218,558
net_rshares2,172,659,490
author_curate_reward""
vote details (1)
@kenchung ·
$0.05
I am very honored to have you as my adviser! :)
👍  ,
properties (23)
authorkenchung
permlinkre-adnanrahic-re-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170704t020332314z-201774t112932304z
categorycontest
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-04 03:30:33
last_update2017-07-04 03:30:33
depth2
children0
last_payout2017-07-11 03:30:33
cashout_time1969-12-31 23:59:59
total_payout_value0.041 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation41,181,348,504,685
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,225,228
net_rshares9,065,207,420
author_curate_reward""
vote details (2)
@arkoko · (edited)
期待下一次的比賽!xD
👍  
properties (23)
authorarkoko
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170703t155147454z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-07-03 15:51:48
last_update2017-07-03 15:52:00
depth1
children1
last_payout2017-07-10 15:51:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation1,502,380,914,580
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,158,721
net_rshares2,172,659,490
author_curate_reward""
vote details (1)
@kenchung ·
多謝支持 :D
👍  
properties (23)
authorkenchung
permlinkre-arkoko-re-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170703t155147454z-201774t84642779z
categorycontest
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-04 00:47:45
last_update2017-07-04 00:47:45
depth2
children0
last_payout2017-07-11 00:47:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation41,181,348,504,685
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,212,856
net_rshares242,883,066
author_curate_reward""
vote details (1)
@binbin88 ·
Thank you sir~
properties (22)
authorbinbin88
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170706t071400071z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-07-06 07:14:00
last_update2017-07-06 07:14:00
depth1
children0
last_payout2017-07-13 07:14:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation204,910,622,092
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,488,071
net_rshares0
@guyverckw · (edited)
<test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test test >

OK, this is a good one. I couldn't systemmatically list out my proof but at least I thought that it should be -1. Next time I will put in my answer anyway. Thank you for setting this contest up. A really good one!  Enjoy it very much!
👍  
properties (23)
authorguyverckw
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170703t160830673z
categorycontest
json_metadata{"tags":"contest","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-07-03 16:08:30
last_update2017-07-03 19:25:21
depth1
children1
last_payout2017-07-10 16:08:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length958
author_reputation121,609,723,418,181
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,160,704
net_rshares2,172,659,490
author_curate_reward""
vote details (1)
@kenchung ·
Sure, thanks for your support bro!
👍  
properties (23)
authorkenchung
permlinkre-guyverckw-re-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170703t160830673z-201774t84846638z
categorycontest
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-04 00:49:51
last_update2017-07-04 00:49:51
depth2
children0
last_payout2017-07-11 00:49:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation41,181,348,504,685
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,213,039
net_rshares242,883,066
author_curate_reward""
vote details (1)
@happychau123 ·
$0.06
Thx for the contest :)
It was fun indeed ~
👍  ,
properties (23)
authorhappychau123
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-201774t5554624z
categorycontest
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-03 21:57:24
last_update2017-07-03 21:57:24
depth1
children1
last_payout2017-07-10 21:57:24
cashout_time1969-12-31 23:59:59
total_payout_value0.058 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation1,502,642,488,306
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,198,594
net_rshares10,426,783,690
author_curate_reward""
vote details (2)
@kenchung ·
you are welcome bro :)
👍  
properties (23)
authorkenchung
permlinkre-happychau123-re-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-201774t5554624z-201774t84948556z
categorycontest
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-04 00:50:51
last_update2017-07-04 00:50:51
depth2
children0
last_payout2017-07-11 00:50:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation41,181,348,504,685
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,213,130
net_rshares242,883,066
author_curate_reward""
vote details (1)
@minnowsupport ·
<p>Congratulations!  This post has been upvoted from the communal account, @minnowsupport, by kenchung from the Minnow Support Project.  It's a witness project run by aggroed, ausbitbank, teamsteem, theprophet0, and someguy123.  The goal is to help Steemit grow by supporting Minnows and creating a social network.  Please find us in the <a href="https://discord.gg/HYj4yvw">Peace, Abundance, and Liberty Network (PALnet) Discord Channel</a>.  It's a completely public and open space to all members of the Steemit community who voluntarily choose to be there.</p>

<p>If you like what we're doing please upvote this comment so we can continue to build the community account that's supporting all members.</p>
properties (22)
authorminnowsupport
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170703t155725038z
categorycontest
json_metadata{"tags":["contest"],"app":"cosgrove/0.0.1rc3"}
created2017-07-03 15:57:24
last_update2017-07-03 15:57:24
depth1
children0
last_payout2017-07-10 15:57:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length709
author_reputation148,902,805,319,183
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,159,389
net_rshares0
@nanosesame ·
Bro you are great! My maths is suck... just support :)
👍  
properties (23)
authornanosesame
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170703t183816567z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-07-03 18:38:18
last_update2017-07-03 18:38:18
depth1
children1
last_payout2017-07-10 18:38:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation108,906,482,282,725
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,178,598
net_rshares2,172,659,490
author_curate_reward""
vote details (1)
@kenchung ·
haha nvm, you can still submit a wild guess, maybe you can get it correct! :)
👍  
properties (23)
authorkenchung
permlinkre-nanosesame-re-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170703t183816567z-201774t84919758z
categorycontest
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-04 00:50:24
last_update2017-07-04 00:50:24
depth2
children0
last_payout2017-07-11 00:50:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation41,181,348,504,685
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,213,085
net_rshares242,883,066
author_curate_reward""
vote details (1)
@oflyhigh ·
不错的活动
再接再厉
👍  
properties (23)
authoroflyhigh
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170704t003723830z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-07-04 00:37:27
last_update2017-07-04 00:37:27
depth1
children3
last_payout2017-07-11 00:37:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation6,385,338,237,399,097
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,211,978
net_rshares2,172,659,490
author_curate_reward""
vote details (1)
@kenchung ·
謝謝啊,下一次你們也過來玩玩吧! :)
👍  
properties (23)
authorkenchung
permlinkre-oflyhigh-re-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170704t003723830z-201774t85119780z
categorycontest
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-04 00:52:24
last_update2017-07-04 00:52:24
depth2
children2
last_payout2017-07-11 00:52:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation41,181,348,504,685
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,213,255
net_rshares242,883,066
author_curate_reward""
vote details (1)
@oflyhigh ·
玩不转啊,脑袋早已秀逗了,哈哈哈哈
properties (22)
authoroflyhigh
permlinkre-kenchung-re-oflyhigh-re-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-201774t85119780z-20170704t005311078z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-07-04 00:53:12
last_update2017-07-04 00:53:12
depth3
children1
last_payout2017-07-11 00:53:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation6,385,338,237,399,097
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,213,312
net_rshares0
@pizzachain ·
Too bad I'm 11 days too late at this competition, lol! This is really easy to answer if you use your brain.
properties (22)
authorpizzachain
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170714t091111039z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-07-14 09:11:06
last_update2017-07-14 09:11:06
depth1
children8
last_payout2017-07-21 09:11:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation6,751,100,842,809
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,435,705
net_rshares0
@kenchung ·
lol the next competition is live now! check out the latest competition at @kenchung :)
properties (22)
authorkenchung
permlinkre-pizzachain-2017714t172721416z
categorycontest
json_metadata{"tags":"contest","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-14 09:27:24
last_update2017-07-14 09:27:24
depth2
children7
last_payout2017-07-21 09:27:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation41,181,348,504,685
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,437,001
net_rshares0
@pizzachain ·
yeah, I saw... But it starts at 4 AM gmt? That's 6 AM Dutch time... so I'll probably be far too late.
properties (22)
authorpizzachain
permlinkre-kenchung-re-pizzachain-2017714t172721416z-20170714t102356126z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-07-14 10:23:51
last_update2017-07-14 10:23:51
depth3
children6
last_payout2017-07-21 10:23:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation6,751,100,842,809
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id8,441,348
net_rshares0
@point ·
$0.02
Oops...  all the "other" 2017998 vertices.

All is 0
Other is -1

;D

@kenchung Thanks for a fun contest.
👍  ,
properties (23)
authorpoint
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170703t232441491z
categorycontest
json_metadata{"tags":["contest"],"users":["kenchung"],"app":"steemit/0.1"}
created2017-07-03 23:24:39
last_update2017-07-03 23:24:39
depth1
children1
last_payout2017-07-10 23:24:39
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation914,037,002,035
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,206,313
net_rshares3,843,029,898
author_curate_reward""
vote details (2)
@kenchung ·
haha careless mistake ;) a lot of people answered 0 actually lol
👍  
properties (23)
authorkenchung
permlinkre-point-re-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170703t232441491z-201774t85023670z
categorycontest
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-04 00:51:27
last_update2017-07-04 00:51:27
depth2
children0
last_payout2017-07-11 00:51:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation41,181,348,504,685
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,213,177
net_rshares242,883,066
author_curate_reward""
vote details (1)
@teambuktu ·
Next time, I'll have to resteem. Did not read the rules careful enough, I guess :) I'm looking forward to your next competition!
👍  
properties (23)
authorteambuktu
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170703t160053154z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-07-03 16:00:54
last_update2017-07-03 16:00:54
depth1
children1
last_payout2017-07-10 16:00:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation33,800,779,326
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,159,788
net_rshares2,172,659,490
author_curate_reward""
vote details (1)
@kenchung ·
ye haha resteem will earn you a much higher chance ;) see you in the next competition!
👍  
properties (23)
authorkenchung
permlinkre-teambuktu-re-kenchung-answer-and-winners-mathematics-programming-competition-2-201773t233054959z-20170703t160053154z-201774t8488260z
categorycontest
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-04 00:49:12
last_update2017-07-04 00:49:12
depth2
children0
last_payout2017-07-11 00:49:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation41,181,348,504,685
root_title"[Answer and winners] Mathematics × Programming Competition #2 [公佈得獎名單] 數學 × 程式編寫比賽 (第二回)"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,212,977
net_rshares242,883,066
author_curate_reward""
vote details (1)