| Task: | Bittijono |
| Sender: | MääVaa |
| Submission time: | 2016-10-03 17:50:31 +0300 |
| Language: | Scala |
| Status: | READY |
| Result: | 10 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 10 |
| #2 | TIME LIMIT EXCEEDED | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.44 s | 1 | details |
| #2 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #3 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
import scala.io.StdIn
object Kisa extends App {
val amount = StdIn.readInt
val arr = Array.ofDim[Long](amount)
for(i <- 0 until amount){
arr(i) = StdIn.readLong
}
for(i <- arr)println(binNum(i))
def binNum(k: Long): Long = {
if(k == 1) 0
else (1 - binNum(remPow(k))).toLong
}
def remPow(i: Long) = {
var pow = 0l
while(power(2,pow+1)<i)pow += 1
i - power(2,pow)
}
def power(i: Long, j: Long) = {
var ret = 1l
for(k <- 0l until j)ret *= i
ret
}
}Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 100 62 9 12 73 ... |
| correct output |
|---|
| 1 1 1 0 1 ... |
| user output |
|---|
| 1 1 1 0 1 ... |
Test 2
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 565433 141881 120108 825392 ... |
| correct output |
|---|
| 1 1 0 0 1 ... |
| user output |
|---|
| (empty) |
Test 3
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100000 374768524402011755 937067109466254318 389256426086302899 932585725667010169 ... |
| correct output |
|---|
| 0 1 1 1 1 ... |
| user output |
|---|
| (empty) |
