create account

[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回) by kenchung

View this thread on: hive.blogpeakd.comecency.com
· @kenchung ·
$133.83
[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)
<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>!為了進一步推廣聊天頻道的使用,我將不再透過發文來宣布下一場比賽的時間,我會在聊天頻道中提前公佈比賽時間!
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 72 others
properties (23)
authorkenchung
permlinkanswer-and-winners-mathematics-programming-competition-5
categorycontest
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"}
created2017-09-04 15:34:21
last_update2017-09-04 15:34:21
depth0
children14
last_payout2017-09-11 15:34:21
cashout_time1969-12-31 23:59:59
total_payout_value107.030 HBD
curator_payout_value26.800 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,408
author_reputation41,181,348,504,685
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,856,321
net_rshares38,265,469,447,586
author_curate_reward""
vote details (136)
@misalen ·
I am flattered very much!! Thank you for the reward @kenchung and @steemstem. Steemit and mathematics! Loved the idea!
properties (22)
authormisalen
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t215025645z
categorycontest
json_metadata{"tags":["contest"],"users":["kenchung","steemstem"],"app":"steemit/0.1"}
created2017-09-04 21:50:33
last_update2017-09-04 21:50:33
depth1
children1
last_payout2017-09-11 21:50:33
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_length118
author_reputation3,732,388,456,255
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,887,701
net_rshares0
@kenchung ·
congrats! looking forward to your participation in the next competition! :)
properties (22)
authorkenchung
permlinkre-misalen-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170909t180501980z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-09-09 18:05:03
last_update2017-09-09 18:05:03
depth2
children0
last_payout2017-09-16 18:05:03
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_reputation41,181,348,504,685
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,380,851
net_rshares0
@philipheihei ·
Glad to participate in this contest. 
Thank you @steemstem and @kenchung for the support.
properties (22)
authorphilipheihei
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t163732680z
categorycontest
json_metadata{"tags":["contest"],"users":["steemstem","kenchung"],"app":"steemit/0.1"}
created2017-09-04 16:37:39
last_update2017-09-04 16:37:39
depth1
children1
last_payout2017-09-11 16:37:39
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_length89
author_reputation183,076,472,611
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,862,414
net_rshares0
@kenchung ·
you are welcome! :)
properties (22)
authorkenchung
permlinkre-philipheihei-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t172207539z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-09-04 17:22:06
last_update2017-09-04 17:22:06
depth2
children0
last_payout2017-09-11 17:22: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_length19
author_reputation41,181,348,504,685
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,866,505
net_rshares0
@pilcrow · (edited)
Nice! I missed this contest but I'll be looking out for the next one :). Congratulations to the winners!
properties (22)
authorpilcrow
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t155200179z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-09-04 15:51:54
last_update2017-09-04 15:52:06
depth1
children1
last_payout2017-09-11 15:51: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_length104
author_reputation2,531,070,549,481
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,857,969
net_rshares0
@kenchung ·
$0.07
The next competition will start in a few days, stay tuned! ;)
👍  
properties (23)
authorkenchung
permlinkre-pilcrow-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t162426354z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-09-04 16:24:27
last_update2017-09-04 16:24:27
depth2
children0
last_payout2017-09-11 16:24:27
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation41,181,348,504,685
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,861,202
net_rshares20,443,680,870
author_curate_reward""
vote details (1)
@ryanfan11 ·
Hope next competition is coming .
properties (22)
authorryanfan11
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t163535661z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-09-04 16:36:39
last_update2017-09-04 16:36:39
depth1
children1
last_payout2017-09-11 16:36:39
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_length33
author_reputation1,119,565,185,899
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,862,328
net_rshares0
@kenchung ·
Yes I guess the next competition will start in a few days, stay tuned :)
properties (22)
authorkenchung
permlinkre-ryanfan11-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t172143804z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-09-04 17:21:42
last_update2017-09-04 17:21:42
depth2
children0
last_payout2017-09-11 17:21:42
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_length72
author_reputation41,181,348,504,685
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,866,479
net_rshares0
@shirlam ·
Thank you Ken Sir!!
properties (22)
authorshirlam
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t161329285z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-09-04 16:13:06
last_update2017-09-04 16:13:06
depth1
children1
last_payout2017-09-11 16:13: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_length19
author_reputation4,861,884,890,190
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,860,050
net_rshares0
@kenchung ·
you are welcome! :)
properties (22)
authorkenchung
permlinkre-shirlam-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t162311321z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-09-04 16:23:12
last_update2017-09-04 16:23:12
depth2
children0
last_payout2017-09-11 16:23: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_length19
author_reputation41,181,348,504,685
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,861,083
net_rshares0
@wilkinshui ·
:( no luck this time
properties (22)
authorwilkinshui
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t155941476z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-09-04 15:59:42
last_update2017-09-04 15:59:42
depth1
children1
last_payout2017-09-11 15:59:42
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_length20
author_reputation83,484,374,565,395
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,858,757
net_rshares0
@kenchung ·
coz there are so many people getting correct answers this time lol
try again next time ;)
properties (22)
authorkenchung
permlinkre-wilkinshui-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t162350209z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-09-04 16:23:51
last_update2017-09-04 16:23:51
depth2
children0
last_payout2017-09-11 16: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_length89
author_reputation41,181,348,504,685
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,861,144
net_rshares0
@yenipaola ·
@kenchung Thank you very much I didn't expect it
properties (22)
authoryenipaola
permlinkre-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t162747271z
categorycontest
json_metadata{"tags":["contest"],"users":["kenchung"],"app":"steemit/0.1"}
created2017-09-04 16:25:39
last_update2017-09-04 16:25:39
depth1
children1
last_payout2017-09-11 16:25:39
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_length48
author_reputation13,245,428,729,833
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,861,325
net_rshares0
@kenchung ·
You are welcome! :) Great job!
properties (22)
authorkenchung
permlinkre-yenipaola-re-kenchung-answer-and-winners-mathematics-programming-competition-5-20170904t162643698z
categorycontest
json_metadata{"tags":["contest"],"app":"steemit/0.1"}
created2017-09-04 16:26:42
last_update2017-09-04 16:26:42
depth2
children0
last_payout2017-09-11 16:26:42
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_length30
author_reputation41,181,348,504,685
root_title"[Answer and Winners] Mathematics × Programming Competition #5 [答案及得獎名單] 數學 × 程式編寫比賽 (第五回)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,861,429
net_rshares0