本文整理匯總了Golang中github.com/uwedeportivo/codejam.Problem類的典型用法代碼示例。如果您正苦於以下問題:Golang Problem類的具體用法?Golang Problem怎麽用?Golang Problem使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Problem類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: solve
func solve(pr *codejam.Problem, d *data) {
var unitsDigit, tensDigit, hundredsDigit int
if d.num == 0 {
unitsDigit, tensDigit, hundredsDigit = 1, 0, 0
} else if d.num == 1 {
unitsDigit, tensDigit, hundredsDigit = 5, 0, 0
} else if d.num == 2 {
unitsDigit, tensDigit, hundredsDigit = 7, 2, 0
} else {
v := (d.num - hundredsOffset) % hundredsPeriod
u := hundredsLookup[v+hundredsOffset] - 1
unitsDigit = mod10(u)
if u >= 10 {
u = (u - unitsDigit) / 10
tensDigit = mod10(u)
if u >= 10 {
u = (u - tensDigit) / 10
hundredsDigit = mod10(u)
}
}
}
pr.Write(fmt.Sprintf("Case #%d: %d%d%d\n", d.testIndex, hundredsDigit, tensDigit, unitsDigit))
}
示例2: parse
func parse(pr *codejam.Problem, testCaseIndex int) *data {
d := &data{
testIndex: testCaseIndex,
}
d.val = pr.ReadString()
return d
}