| Task: | Kolikot |
| Sender: | inkeri |
| Submission time: | 2016-10-04 14:35:25 +0300 |
| Language: | Python2 |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| #3 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.06 s | 1 | details |
| #2 | RUNTIME ERROR | 0.05 s | 1 | details |
| #3 | RUNTIME ERROR | 0.05 s | 1 | details |
| #4 | RUNTIME ERROR | 0.05 s | 1 | details |
| #5 | RUNTIME ERROR | 0.06 s | 1 | details |
| #6 | RUNTIME ERROR | 0.05 s | 2 | details |
| #7 | RUNTIME ERROR | 0.06 s | 2 | details |
| #8 | RUNTIME ERROR | 0.04 s | 2 | details |
| #9 | RUNTIME ERROR | 0.06 s | 2 | details |
| #10 | RUNTIME ERROR | 0.06 s | 2 | details |
| #11 | RUNTIME ERROR | 0.07 s | 3 | details |
| #12 | RUNTIME ERROR | 0.07 s | 3 | details |
| #13 | RUNTIME ERROR | 0.07 s | 3 | details |
| #14 | RUNTIME ERROR | 0.05 s | 3 | details |
| #15 | RUNTIME ERROR | 0.05 s | 3 | details |
| #16 | RUNTIME ERROR | 0.05 s | 3 | details |
Code
def getKolikot():
input("")
return sorted([int(a) for a in raw_input("").split(' ')])
def saakoSummaa(luku, kolikot):
if luku in kokeillut:
return True
if luku in kolikot:
kokeillut.append(luku)
return True
if sum(kolikot) == luku:
return True
if sum(kolikot) < luku:
return False
pienemmat = []
append = pienemmat.append
remove = pienemmat.remove
sort = pienemmat.sort
for i in kolikot:
if i < luku:
append(i)
else:
break
maara = len(pienemmat)
if maara == 1:
return False
for i in range (maara):
a = pienemmat[i]
remove(a)
if saakoSummaa(luku - a, pienemmat):
return True
append(a)
sort()
return False
def pieninSumma(kolikot):
if kolikot[0] > 1:
return 1
pienin = 0
while True:
pienin += 1
if saakoSummaa(pienin, kolikot):
continue
return pienin
global kokeillut
kokeillut = []
profile.
print (pieninSumma(getKolikot()))
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 10 5 3 1 4 5 1 3 2 2 3 |
| correct output |
|---|
| 30 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 2
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 10 3 5 5 4 5 4 5 5 5 3 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 3
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 10 10 9 2 8 7 10 7 1 5 2 |
| correct output |
|---|
| 62 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 4
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 10 7 4 6 3 9 7 4 4 7 7 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 5
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 10 8 2 1 7 9 7 5 2 4 5 |
| correct output |
|---|
| 51 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 6
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100 3 3 1 4 2 1 2 1 3 1 2 5 1 5 1 ... |
| correct output |
|---|
| 269 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 7
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100 3 3 2 3 4 5 4 4 4 4 2 2 4 4 4 ... |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 8
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100 678 999 374 759 437 390 832 54... |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 9
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100 862 537 633 807 666 248 237 5 ... |
| correct output |
|---|
| 30 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 10
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100 874 302 384 920 76 28 762 163 ... |
| correct output |
|---|
| 41765 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 11
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 4 2 5 3 2 3 5 2 2 2 3 4 3 3 2 ... |
| correct output |
|---|
| 299640 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 12
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 2 5 5 5 5 2 4 4 3 2 3 2 5 5 3 ... |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 13
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 98146842 766872135 84108268 28... |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 14
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 932032495 1 849176169 78948957... |
| correct output |
|---|
| 29970 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 15
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 35894853 796619259 699878597 4... |
| correct output |
|---|
| 44965249639582 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntaxTest 16
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 930494676 960662779 904422858 ... |
| correct output |
|---|
| 800020001 |
| user output |
|---|
| (empty) |
Error:
File "input/code.py", line 53
profile.
^
SyntaxError: invalid syntax