<h2><center>Mathematics × Programming Competition #5<br>Announcement of Answer and Winners</center></h2> https://steemitimages.com/0x0/https://steemitimages.com/DQmb33Qwu5vome8xQ2ZLcqFxZmFwV255hPGovzavXSUDtaX/math%26progLOGO-01-01.png <center><sup>Designed by @nicolemoker</sup></center> <center><h6>*For Chinese version please scroll to the bottom. 中文版請見文末。*</h6></center> --- <center><h2>Question</h2></center> <center>https://steemitimages.com/DQmfC1RhQwarYu85vB1ovbMQFe9vWbcistb4z4qcewQ8MuK/image.png</center> Complete the 4 × 4 puzzle above using the numbers 1 to 16 without repetition, subject to the following constraints: 1. A, B, J, K can only be filled with the numbers 2, 4, 6 or 8 2. E + F = 26 3. K + O = 9 4. B + K = 14 5. A + L = 9 6. C + I = 25 7. A + G = 13 8. C + P = 24 9. B + M = 9 10. A + K = 12 11. D + E = 25 12. | E - N | = 4 --- <h2><center>Answer: 4,6,13,15,10,16,9,7,12,2,8,5,3,14,1,11</center></h2> <h4>Solving by hand</h4> There are many possible ways to solve this problem by logical reasoning. Here is one of my preferred way. The 12 constraints can actually be broken down into 3 closed loops which can be solved one by one. <center>https://steemitimages.com/DQmUmpq7QQrVEd7xci8oZ1gbwbn9h9HScFPxscgomXF3LBh/image.png</center> We can find out that the first closed loop can be solved independently. Then we can list out all possible combinations of the second and third loops, and also note that cell H is not in any of the loops. After some cross-checking between the second and third loops, we should be able to find out the unique solution. I will keep the explanation short here. If you wish to study in detail, please take a look at the [article](https://steemit.com/cn/@jubi/egpak-kenchung) written by @jubi . <h4>Programming approach</h4> We can use depth-first search to test for every possible combination, and then list out the correct answer(s). Here is an implementation using JavaScript: ```javascript var arr = [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]; function solve(i){ // if the array has been filled completely, we have found the answer if (i==16){ console.log(arr); } else { // otherwise try to fill in 1 to 16 in the current position for (var j=1; j<=16; j++){ arr[i]=j; if (okay(i)) solve(i+1); } } } function okay(i){ var temp = true; // checking uniqueness of the array for (var j=0; j<i; j++){ if (arr[j]==arr[i]) temp = false; } // checking other rules temp = temp && (arr[0] == 2 || arr[0] == 4 || arr[0] == 6 || arr[0] == 8); temp = temp && (i < 1 || arr[1] == 2 || arr[1] == 4 || arr[1] == 6 || arr[1] == 8); temp = temp && (i < 9 || arr[9] == 2 || arr[9] == 4 || arr[9] == 6 || arr[9] == 8); temp = temp && (i < 5 || arr[4] + arr[5] == 26); temp = temp && (i < 14 || arr[10] + arr[14] == 9); temp = temp && (i < 10 || arr[1] + arr[10] == 14); temp = temp && (i < 11 || arr[0] + arr[11] == 9); temp = temp && (i < 8 || arr[2] + arr[8] == 25); temp = temp && (i < 6 || arr[0] + arr[6] == 13); temp = temp && (i < 15 || arr[2] + arr[15] == 24); temp = temp && (i < 12 || arr[1] + arr[12] == 9); temp = temp && (i < 10 || arr[0] + arr[10] == 12); temp = temp && (i < 4 || arr[3] + arr[4] == 25); temp = temp && (i < 13 || Math.abs(arr[4] - arr[13]) == 4); return temp; } solve(0); ``` Output: ```[4, 6, 13, 15, 10, 16, 9, 7, 12, 2, 8, 5, 3, 14, 1, 11]``` Another version of JavaScript program written by @justyy can be found [here](https://steemit.com/cn/@justyy/bruteforce-solution-to-mathematics-programming-competition-5). This problem may be more easily solved by logic programming languages such as Prolog. Feel free to take a look at [this post](https://steemit.com/contest/@armandocat/mathematics-programming-competition-5-prolog-solution) written by @armandocat ! <center><h6>*If you want to learn JavaScript, visit @adnanrahic 's blog to learn JavaScript!*</h6></center> --- <h2><center>Winners</center></h2> Among 37 participants, there are 33 people who got the correct answers. Thank you for your participation! @philipheihei @challk @shirlam @kona @arkoko @kitcat @carinewhy @jamhuery @yenipaola @firstamendment @tensaix2j @daut44 @tking77798 @ratticus @tzs @livinguktaiwan @doughtaker @me-shell @cauchycauchy @justyy @superbing @dailyfortune @alanman @wilkinshui @ryanfan11 @rayccy @ghasemkiani @susankiani @marziehshahabi @ariak @megii @mindthought @armandocat @chunyinau3 @misalen @osmanbugra @etzel Prize pool = Prize pool balance carried forward (0 SBD) + SBD payout of the the question post (52.565 SBD) = 52.565 SBD Besides, @steemstem has generously sponsored 7.5 SP, 5 SP and 2.5 SP for the first, second and third prizes! <center>https://steemitimages.com/DQmdMr81MQ3cVbtE3L7kjGksy8xz8cZnJYYqRiqtbpgXRrz/image.png</center> The winners and prizes are tabulated below: Winner|Prize|SBD ---|---|--- @philipheihei|First prize|52.565 / 8 = 6.571 SBD + 7.5 SP @challk|Second prize|52.565 / 8 = 6.571 SBD + 5 SP @shirlam|Third prize|52.565 / 8 = 6.571 SBD + 2.5 SP @misalen|Consolation prize|52.565 / 8 = 6.571 SBD @yenipaola|Consolation prize|52.565 / 8 = 6.571 SBD @ghasemkiani|Consolation prize|52.565 / 8 = 6.571 SBD @armandocat|Consolation prize|52.565 / 8 = 6.571 SBD @dailyfortune|Consolation prize|52.565 / 8 = 6.571 SBD Prize carried forward = 0 SBD Congratulations to the winners! ---- <center>https://steemitimages.com/0x0/https://steemitimages.com/DQmY2jUCgfijKRkYnpsENa1jpv6VFwWe8Ts88cYKcQjiLcp/image.png</center> The steemSTEM project (@steemstem) is a community-supported project aiming to increase the quality and the visibility of STEM (STEM is the acronym for Science, Technology, Engineering and Mathematics) articles on Steemit. Please support steemSTEM by following @steemstem, joining the <a href ="https://steemit.chat/channel/steemSTEM">chat channel</a> and following the <a href="https://streemian.com/profile/curationtrail/trailing/564">curation trail on Streemian</a>! In order to further promote the use of the chat channel, I will stop announcing the time of next competition via a post. Instead I will announce the time in advance in the chat channel! --- --- <h2><center>數學 × 程式編寫比賽 (第五回)<br>答案及得獎名單公佈</center></h2> https://steemitimages.com/0x0/https://steemitimages.com/DQmb33Qwu5vome8xQ2ZLcqFxZmFwV255hPGovzavXSUDtaX/math%26progLOGO-01-01.png <center><sup>Designed by @nicolemoker</sup></center> ---- <center><h2>問題</h2></center> <center>https://steemitimages.com/DQmfC1RhQwarYu85vB1ovbMQFe9vWbcistb4z4qcewQ8MuK/image.png</center> 以1至16完成以上之4 × 4 拼圖,數字不能重覆,並需符合以下限制: 1. A, B, J, K 只可由 2, 4, 6, 8 四個數字填上 2. E + F = 26 3. K + O = 9 4. B + K = 14 5. A + L = 9 6. C + I = 25 7. A + G = 13 8. C + P = 24 9. B + M = 9 10. A + K = 12 11. D + E = 25 12. | E - N | = 4 --- <h2><center>答案: 4,6,13,15,10,16,9,7,12,2,8,5,3,14,1,11</center></h2> <h4>筆算解題</h4> 讓我們嘗試透過邏輯推理來解決這個問題。以下是其中一個可行的思路。 12項限制實際上可以分解成3個閉環,並且可以逐個解決。 <center>https://steemitimages.com/DQmUmpq7QQrVEd7xci8oZ1gbwbn9h9HScFPxscgomXF3LBh/image.png</center> 我們可以發現,第一個閉環可以獨立解決。然後我們可以列出第二個和第三個閉環的所有可能的組合,並且同時注意到H並不在任何閉環之中。在第二和第三循環進行交叉檢查後,我們應能找出唯一的可行組合。 如果你想查看詳細解釋的話,可以到[這裡](https://steemit.com/cn/@jubi/egpak-kenchung)看看由 @jubi 所寫的解說。 <h4>編程方法</h4> 我們可以利用深度優先搜索來測試每個組合的可能性。以下是利用入javascript寫成的程式: ```javascript var arr = [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]; function solve(i){ // if the array has been filled completely, we have found the answer if (i==16){ console.log(arr); } else { // otherwise try to fill in 1 to 16 in the current position for (var j=1; j<=16; j++){ arr[i]=j; if (okay(i)) solve(i+1); } } } function okay(i){ var temp = true; // checking uniqueness of the array for (var j=0; j<i; j++){ if (arr[j]==arr[i]) temp = false; } // checking other rules temp = temp && (arr[0] == 2 || arr[0] == 4 || arr[0] == 6 || arr[0] == 8); temp = temp && (i < 1 || arr[1] == 2 || arr[1] == 4 || arr[1] == 6 || arr[1] == 8); temp = temp && (i < 9 || arr[9] == 2 || arr[9] == 4 || arr[9] == 6 || arr[9] == 8); temp = temp && (i < 5 || arr[4] + arr[5] == 26); temp = temp && (i < 14 || arr[10] + arr[14] == 9); temp = temp && (i < 10 || arr[1] + arr[10] == 14); temp = temp && (i < 11 || arr[0] + arr[11] == 9); temp = temp && (i < 8 || arr[2] + arr[8] == 25); temp = temp && (i < 6 || arr[0] + arr[6] == 13); temp = temp && (i < 15 || arr[2] + arr[15] == 24); temp = temp && (i < 12 || arr[1] + arr[12] == 9); temp = temp && (i < 10 || arr[0] + arr[10] == 12); temp = temp && (i < 4 || arr[3] + arr[4] == 25); temp = temp && (i < 13 || Math.abs(arr[4] - arr[13]) == 4); return temp; } solve(0); ``` Output: ```[4, 6, 13, 15, 10, 16, 9, 7, 12, 2, 8, 5, 3, 14, 1, 11]``` 另一個由 @justyy 撰寫的JavaScript版本可以在[這裡](https://steemit.com/cn/@justyy/bruteforce-solution-to-mathematics-programming-competition-5)找到。 這道問題亦能輕易以邏輯編程語言例如Prolog來解決。歡迎到[這裡](https://steemit.com/contest/@armandocat/mathematics-programming-competition-5-prolog-solution)看一看由 @armandocat 所寫的Prolog程式! <center><h6>*如果你想學習JavaScript,不妨參閱 @adnanrahic 的文章!*</h6></center> --- <h2><center>得獎者</center></h2> 在37個參加者之中,有33人答對。多謝大家的熱烈參與! @rayccy @arkoko @victorier @krischy @pizzachain @jubi @justyy @nationalpark @tensaix2j @firstamendment @apsu @hansenator @misko @nocturnal @doughtaker @jeffreytong @wilkinshui @mrkool @davor27 @tking77798 @daut44 @carobetc @jstoddard @tvb @kelkoo 是次獎池 = 上回比賽剩餘獎金 (0 SBD) + 比賽題目帖文的SBD收入 (52.565 SBD) = 52.565 SBD 另外,@steemstem 慷慨贊助了7.5 SP、5 SP以及2.5 SP予是次比賽的第一、二及三等獎! <center>https://steemitimages.com/DQmdMr81MQ3cVbtE3L7kjGksy8xz8cZnJYYqRiqtbpgXRrz/image.png</center> 下表顯示得獎者及其所得獎金: 得獎者|獎項|SBD ---|---|--- @philipheihei|一等獎|52.565 / 8 = 6.571 SBD + 7.5 SP @challk|二等獎|52.565 / 8 = 6.571 SBD + 5 SP @shirlam|三等獎|52.565 / 8 = 6.571 SBD + 2.5 SP @misalen|安慰獎|52.565 / 8 = 6.571 SBD @yenipaola|安慰獎|52.565 / 8 = 6.571 SBD @ghasemkiani|安慰獎|52.565 / 8 = 6.571 SBD @armandocat|安慰獎|52.565 / 8 = 6.571 SBD @dailyfortune|安慰獎|52.565 / 8 = 6.571 SBD 下回比賽獎池現有 = 0 SBD 恭喜所有得獎者! ---- <center>https://steemitimages.com/0x0/https://steemitimages.com/DQmY2jUCgfijKRkYnpsENa1jpv6VFwWe8Ts88cYKcQjiLcp/image.png</center> steemSTEM(@steemstem)是一個由steemit社群支持的項目,旨在宣傳STEM(STEM是科學,技術,工程和數學的首字母縮略詞)。 請通過以下方式來支持steemSTEM:追蹤@steemSTEM,加入<a href ="https://steemit.chat/channel/steemSTEM">聊天頻道</a>和加入<a href ="https://streemian.com/profile/curationtrail/trailing/564">Streemian</a>!為了進一步推廣聊天頻道的使用,我將不再透過發文來宣布下一場比賽的時間,我會在聊天頻道中提前公佈比賽時間!
author | kenchung |
---|---|
permlink | answer-and-winners-mathematics-programming-competition-5 |
category | contest |
json_metadata | {"tags":["contest","cn","cn-contest","math","programming"],"users":["nicolemoker","jubi","justyy","armandocat","adnanrahic","philipheihei","challk","shirlam","kona","arkoko","kitcat","carinewhy","jamhuery","yenipaola","firstamendment","tensaix2j","daut44","tking77798","ratticus","tzs","livinguktaiwan","doughtaker","me-shell","cauchycauchy","superbing","dailyfortune","alanman","wilkinshui","ryanfan11","rayccy","ghasemkiani","susankiani","marziehshahabi","ariak","megii","mindthought","chunyinau3","misalen","osmanbugra","etzel","steemstem","victorier","krischy","pizzachain","nationalpark","apsu","hansenator","misko","nocturnal","jeffreytong","mrkool","davor27","carobetc","jstoddard","tvb","kelkoo"],"image":["https://steemitimages.com/0x0/https://steemitimages.com/DQmb33Qwu5vome8xQ2ZLcqFxZmFwV255hPGovzavXSUDtaX/math%26progLOGO-01-01.png","https://steemitimages.com/DQmfC1RhQwarYu85vB1ovbMQFe9vWbcistb4z4qcewQ8MuK/image.png","https://steemitimages.com/DQmUmpq7QQrVEd7xci8oZ1gbwbn9h9HScFPxscgomXF3LBh/image.png","https://steemitimages.com/DQmdMr81MQ3cVbtE3L7kjGksy8xz8cZnJYYqRiqtbpgXRrz/image.png","https://steemitimages.com/0x0/https://steemitimages.com/DQmY2jUCgfijKRkYnpsENa1jpv6VFwWe8Ts88cYKcQjiLcp/image.png"],"links":["https://steemit.com/cn/@jubi/egpak-kenchung","https://steemit.com/cn/@justyy/bruteforce-solution-to-mathematics-programming-competition-5","https://steemit.com/contest/@armandocat/mathematics-programming-competition-5-prolog-solution","https://steemit.chat/channel/steemSTEM","https://streemian.com/profile/curationtrail/trailing/564"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-09-04 15:34:21 |
last_update | 2017-09-04 15:34:21 |
depth | 0 |
children | 14 |
last_payout | 2017-09-11 15:34:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 107.030 HBD |
curator_payout_value | 26.800 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,408 |
author_reputation | 41,181,348,504,685 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,856,321 |
net_rshares | 38,265,469,447,586 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lafona-miner | 0 | 2,387,569,832,699 | 33.33% | ||
abit | 0 | 12,098,088,734,200 | 20% | ||
ihashfury | 0 | 7,372,389,684 | 6.5% | ||
officialfuzzy | 0 | 1,495,827,052,219 | 25% | ||
fractalnode | 0 | 431,865,766 | 30% | ||
justtryme90 | 0 | 790,961,135,097 | 51% | ||
arcange | 0 | 27,015,444,481 | 10% | ||
deanliu | 0 | 656,704,332,085 | 100% | ||
raphaelle | 0 | 4,572,238,590 | 10% | ||
ace108 | 0 | 151,867,280,015 | 9% | ||
magicmonk | 0 | 29,726,230,977 | 100% | ||
cryptoninja | 0 | 254,195,810 | 5% | ||
kyriacos | 0 | 137,710,212,659 | 25% | ||
lemouth | 0 | 69,656,963,412 | 50% | ||
anarchyhasnogods | 0 | 101,375,394,659 | 50% | ||
tumutanzi | 0 | 1,895,458,079,036 | 10% | ||
ghasemkiani | 0 | 5,469,331,731 | 0.1% | ||
shieha | 0 | 80,047,428,654 | 33% | ||
momertui | 0 | 130,745,914 | 100% | ||
metterber | 0 | 131,468,318 | 100% | ||
whoib | 0 | 190,183,511 | 100% | ||
buhuginnfoth | 0 | 129,199,267 | 100% | ||
luneknight | 0 | 2,561,550,090 | 100% | ||
black-eye | 0 | 65,673,166 | 100% | ||
steemstem | 0 | 482,852,817,262 | 50% | ||
lydiachan | 0 | 15,367,956,131 | 60% | ||
foundation | 0 | 2,729,539,882 | 50% | ||
tradeqwik | 0 | 98,813,026,680 | 5% | ||
the-devil | 0 | 8,764,525,367 | 50% | ||
misalen | 0 | 11,714,415,937 | 100% | ||
comfortgenius | 0 | 1,329,301,191 | 100% | ||
solomka | 0 | 456,668,852 | 100% | ||
balalimo | 0 | 459,709,016 | 100% | ||
bitamihka | 0 | 454,089,587 | 100% | ||
forserg | 0 | 463,085,589 | 100% | ||
mohito | 0 | 457,725,317 | 100% | ||
americ | 0 | 440,375,814 | 100% | ||
gannonjarrell | 0 | 457,537,272 | 100% | ||
htliao | 0 | 6,043,612,467,351 | 40% | ||
aarkay | 0 | 149,433,192 | 100% | ||
wbulot | 0 | 36,525,895,105 | 100% | ||
mobbs | 0 | 34,668,489,772 | 50% | ||
susanlo | 0 | 39,349,782,118 | 80% | ||
guyverckw | 0 | 44,401,619,026 | 60% | ||
nanosesame | 0 | 9,582,293,359 | 100% | ||
cpyjeffrey | 0 | 6,079,852,043 | 100% | ||
john.liao | 0 | 717,387,530 | 100% | ||
kenchung | 0 | 30,022,399,769 | 100% | ||
pakyeechan | 0 | 38,302,425,642 | 80% | ||
jeffreytong | 0 | 9,359,840,702 | 100% | ||
johnliao | 0 | 3,861,813,800 | 100% | ||
helloworld123 | 0 | 720,176,431 | 100% | ||
nuagnorab | 0 | 12,743,463,482 | 100% | ||
kitcat | 0 | 47,674,728,753 | 50% | ||
victorier | 0 | 41,431,612,070 | 100% | ||
linuslee0216 | 0 | 5,804,529,166,991 | 30% | ||
arkoko | 0 | 6,063,623,630 | 100% | ||
chl | 0 | 17,081,842,642 | 100% | ||
wilkinshui | 0 | 51,482,936,176 | 100% | ||
carobetc | 0 | 1,071,143,570 | 100% | ||
thomaskikansha | 0 | 36,930,805,053 | 100% | ||
teteruk | 0 | 538,565,312 | 100% | ||
chingyi | 0 | 4,663,828,379 | 100% | ||
mrjt | 0 | 1,799,194,892 | 100% | ||
natalibali | 0 | 527,124,103 | 100% | ||
brentssanders | 0 | 4,977,379,331 | 100% | ||
aaronli | 0 | 14,669,588,945 | 100% | ||
marylaw | 0 | 17,415,421,541 | 70% | ||
jenthedreamer | 0 | 2,703,209,015 | 100% | ||
pyc1512 | 0 | 600,934,400 | 100% | ||
bilenko70 | 0 | 536,776,893 | 100% | ||
krischy | 0 | 41,448,897,338 | 100% | ||
derevtso | 0 | 519,402,568 | 100% | ||
kdlxvyoau2aa | 0 | 519,712,112 | 100% | ||
claratze | 0 | 602,655,991 | 100% | ||
biuiam | 0 | 12,219,184,307 | 100% | ||
liuke96player | 0 | 207,812,313 | 100% | ||
olyste | 0 | 521,852,511 | 100% | ||
pilcrow | 0 | 20,731,620,037 | 50% | ||
nataliejohnson | 0 | 644,596,627 | 5% | ||
kristytyxd | 0 | 990,572,332 | 100% | ||
carinewhy | 0 | 55,236,922,931 | 100% | ||
livinguktaiwan | 0 | 9,220,010,726 | 55% | ||
yenipaola | 0 | 3,557,315,286 | 100% | ||
sanzo | 0 | 516,839,366 | 100% | ||
himal | 0 | 2,314,238,879 | 50% | ||
travelgirl | 0 | 10,420,895,091 | 30% | ||
yuwineryyuvia | 0 | 2,184,835,076 | 100% | ||
boooster | 0 | 599,881,565 | 100% | ||
votebooster | 0 | 597,747,936 | 100% | ||
shirlam | 0 | 4,812,043,256 | 100% | ||
everrich | 0 | 573,094,145 | 100% | ||
kona | 0 | 581,758,604 | 100% | ||
powerfj | 0 | 3,591,430,461 | 50% | ||
nicolemoker | 0 | 5,067,639,691,514 | 25% | ||
bawi | 0 | 1,145,226,287 | 100% | ||
idx | 0 | 3,799,106,995 | 20% | ||
andrianse | 0 | 489,420,800 | 100% | ||
gdirrern | 0 | 464,640,000 | 100% | ||
iljaermilov | 0 | 527,012,704 | 100% | ||
fakire1sadaka | 0 | 132,761,767 | 50% | ||
juanpe2012 | 0 | 125,741,215 | 100% | ||
sevenstonesgfx | 0 | 1,107,559,435 | 100% | ||
ekpezu | 0 | 633,288,676 | 100% | ||
serchenna | 0 | 524,400,595 | 100% | ||
strelatomsk | 0 | 558,200,276 | 100% | ||
jerlen17 | 0 | 189,167,607 | 100% | ||
wymewa | 0 | 526,977,624 | 100% | ||
mrsquiggle | 0 | 12,867,612,205 | 10% | ||
yhhhhhhhhh | 0 | 2,818,872,089 | 100% | ||
deskart | 0 | 406,388,853 | 100% | ||
zuski | 0 | 389,869,616 | 100% | ||
reclennio | 0 | 993,239,476 | 100% | ||
ryanfan11 | 0 | 2,627,790,309 | 100% | ||
miyata1987 | 0 | 265,125,095 | 100% | ||
tiffchiuhk123 | 0 | 2,514,774,875 | 100% | ||
park7 | 0 | 1,337,465,127 | 100% | ||
oye1 | 0 | 432,778,398 | 100% | ||
alanman | 0 | 1,235,389,057 | 100% | ||
fixatij | 0 | 87,931,047 | 100% | ||
bercyt | 0 | 986,539,786 | 100% | ||
dmacvel | 0 | 454,737,829 | 100% | ||
qacen | 0 | 858,868,937 | 100% | ||
chen-chen | 0 | 677,905,671 | 100% | ||
masterofcoin | 0 | 19,905,225,118 | 100% | ||
xeyri | 0 | 150,454,007 | 100% | ||
dujac | 0 | 870,472,199 | 100% | ||
philipheihei | 0 | 1,351,852,925 | 100% | ||
medvedkus | 0 | 992,336,835 | 100% | ||
yastreb | 0 | 1,003,943,110 | 100% | ||
armandocat | 0 | 27,201,701,260 | 100% | ||
xyziy | 0 | 928,498,153 | 100% | ||
micayla | 0 | 249,532,513 | 25% | ||
brendashockley | 0 | 255,335,594 | 25% | ||
dennisphillips | 0 | 255,335,594 | 25% | ||
johnnyzhou | 0 | 0 | 100% |
I am flattered very much!! Thank you for the reward @kenchung and @steemstem. Steemit and mathematics! Loved the idea!
author | misalen |
---|---|
permlink | re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t215025645z |
category | contest |
json_metadata | {"tags":["contest"],"users":["kenchung","steemstem"],"app":"steemit/0.1"} |
created | 2017-09-04 21:50:33 |
last_update | 2017-09-04 21:50:33 |
depth | 1 |
children | 1 |
last_payout | 2017-09-11 21:50:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 118 |
author_reputation | 3,732,388,456,255 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,887,701 |
net_rshares | 0 |
congrats! looking forward to your participation in the next competition! :)
author | kenchung |
---|---|
permlink | re-misalen-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170909t180501980z |
category | contest |
json_metadata | {"tags":["contest"],"app":"steemit/0.1"} |
created | 2017-09-09 18:05:03 |
last_update | 2017-09-09 18:05:03 |
depth | 2 |
children | 0 |
last_payout | 2017-09-16 18:05:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 75 |
author_reputation | 41,181,348,504,685 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,380,851 |
net_rshares | 0 |
Glad to participate in this contest. Thank you @steemstem and @kenchung for the support.
author | philipheihei |
---|---|
permlink | re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t163732680z |
category | contest |
json_metadata | {"tags":["contest"],"users":["steemstem","kenchung"],"app":"steemit/0.1"} |
created | 2017-09-04 16:37:39 |
last_update | 2017-09-04 16:37:39 |
depth | 1 |
children | 1 |
last_payout | 2017-09-11 16:37:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 183,076,472,611 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,862,414 |
net_rshares | 0 |
you are welcome! :)
author | kenchung |
---|---|
permlink | re-philipheihei-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t172207539z |
category | contest |
json_metadata | {"tags":["contest"],"app":"steemit/0.1"} |
created | 2017-09-04 17:22:06 |
last_update | 2017-09-04 17:22:06 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 17:22:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 41,181,348,504,685 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,866,505 |
net_rshares | 0 |
Nice! I missed this contest but I'll be looking out for the next one :). Congratulations to the winners!
author | pilcrow |
---|---|
permlink | re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t155200179z |
category | contest |
json_metadata | {"tags":["contest"],"app":"steemit/0.1"} |
created | 2017-09-04 15:51:54 |
last_update | 2017-09-04 15:52:06 |
depth | 1 |
children | 1 |
last_payout | 2017-09-11 15:51:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 2,531,070,549,481 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,857,969 |
net_rshares | 0 |
The next competition will start in a few days, stay tuned! ;)
author | kenchung |
---|---|
permlink | re-pilcrow-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t162426354z |
category | contest |
json_metadata | {"tags":["contest"],"app":"steemit/0.1"} |
created | 2017-09-04 16:24:27 |
last_update | 2017-09-04 16:24:27 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 16:24:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.056 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 41,181,348,504,685 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,861,202 |
net_rshares | 20,443,680,870 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pilcrow | 0 | 20,443,680,870 | 50.51% |
Hope next competition is coming .
author | ryanfan11 |
---|---|
permlink | re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t163535661z |
category | contest |
json_metadata | {"tags":["contest"],"app":"steemit/0.1"} |
created | 2017-09-04 16:36:39 |
last_update | 2017-09-04 16:36:39 |
depth | 1 |
children | 1 |
last_payout | 2017-09-11 16:36:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 1,119,565,185,899 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,862,328 |
net_rshares | 0 |
Yes I guess the next competition will start in a few days, stay tuned :)
author | kenchung |
---|---|
permlink | re-ryanfan11-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t172143804z |
category | contest |
json_metadata | {"tags":["contest"],"app":"steemit/0.1"} |
created | 2017-09-04 17:21:42 |
last_update | 2017-09-04 17:21:42 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 17:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 72 |
author_reputation | 41,181,348,504,685 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,866,479 |
net_rshares | 0 |
Thank you Ken Sir!!
author | shirlam |
---|---|
permlink | re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t161329285z |
category | contest |
json_metadata | {"tags":["contest"],"app":"steemit/0.1"} |
created | 2017-09-04 16:13:06 |
last_update | 2017-09-04 16:13:06 |
depth | 1 |
children | 1 |
last_payout | 2017-09-11 16:13:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 4,861,884,890,190 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,860,050 |
net_rshares | 0 |
you are welcome! :)
author | kenchung |
---|---|
permlink | re-shirlam-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t162311321z |
category | contest |
json_metadata | {"tags":["contest"],"app":"steemit/0.1"} |
created | 2017-09-04 16:23:12 |
last_update | 2017-09-04 16:23:12 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 16:23:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 41,181,348,504,685 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,861,083 |
net_rshares | 0 |
:( no luck this time
author | wilkinshui |
---|---|
permlink | re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t155941476z |
category | contest |
json_metadata | {"tags":["contest"],"app":"steemit/0.1"} |
created | 2017-09-04 15:59:42 |
last_update | 2017-09-04 15:59:42 |
depth | 1 |
children | 1 |
last_payout | 2017-09-11 15:59:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 83,484,374,565,395 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,858,757 |
net_rshares | 0 |
coz there are so many people getting correct answers this time lol try again next time ;)
author | kenchung |
---|---|
permlink | re-wilkinshui-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t162350209z |
category | contest |
json_metadata | {"tags":["contest"],"app":"steemit/0.1"} |
created | 2017-09-04 16:23:51 |
last_update | 2017-09-04 16:23:51 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 16:23:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 41,181,348,504,685 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,861,144 |
net_rshares | 0 |
@kenchung Thank you very much I didn't expect it
author | yenipaola |
---|---|
permlink | re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t162747271z |
category | contest |
json_metadata | {"tags":["contest"],"users":["kenchung"],"app":"steemit/0.1"} |
created | 2017-09-04 16:25:39 |
last_update | 2017-09-04 16:25:39 |
depth | 1 |
children | 1 |
last_payout | 2017-09-11 16:25:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 13,245,428,729,833 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,861,325 |
net_rshares | 0 |
You are welcome! :) Great job!
author | kenchung |
---|---|
permlink | re-yenipaola-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t162643698z |
category | contest |
json_metadata | {"tags":["contest"],"app":"steemit/0.1"} |
created | 2017-09-04 16:26:42 |
last_update | 2017-09-04 16:26:42 |
depth | 2 |
children | 0 |
last_payout | 2017-09-11 16:26:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 41,181,348,504,685 |
root_title | "[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,861,429 |
net_rshares | 0 |