| Task: | LumberUolevi |
| Sender: | aalto25a_012 |
| Submission time: | 2025-09-03 17:34:17 +0300 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.04 s | details |
| #2 | ACCEPTED | 0.04 s | details |
| #3 | ACCEPTED | 0.04 s | details |
| #4 | WRONG ANSWER | 0.05 s | details |
| #5 | WRONG ANSWER | 0.04 s | details |
| #6 | ACCEPTED | 0.04 s | details |
| #7 | ACCEPTED | 0.04 s | details |
| #8 | ACCEPTED | 0.04 s | details |
| #9 | WRONG ANSWER | 0.04 s | details |
| #10 | ACCEPTED | 0.04 s | details |
| #11 | WRONG ANSWER | 0.04 s | details |
| #12 | WRONG ANSWER | 0.04 s | details |
| #13 | WRONG ANSWER | 0.04 s | details |
| #14 | WRONG ANSWER | 0.04 s | details |
| #15 | ACCEPTED | 0.04 s | details |
| #16 | WRONG ANSWER | 0.04 s | details |
| #17 | WRONG ANSWER | 0.04 s | details |
| #18 | ACCEPTED | 0.04 s | details |
| #19 | WRONG ANSWER | 0.04 s | details |
| #20 | ACCEPTED | 0.04 s | details |
| #21 | WRONG ANSWER | 0.04 s | details |
| #22 | WRONG ANSWER | 0.04 s | details |
| #23 | WRONG ANSWER | 0.04 s | details |
| #24 | WRONG ANSWER | 0.04 s | details |
| #25 | ACCEPTED | 0.04 s | details |
| #26 | WRONG ANSWER | 0.04 s | details |
| #27 | WRONG ANSWER | 0.04 s | details |
| #28 | WRONG ANSWER | 0.04 s | details |
| #29 | WRONG ANSWER | 0.04 s | details |
| #30 | ACCEPTED | 0.04 s | details |
| #31 | WRONG ANSWER | 0.04 s | details |
| #32 | WRONG ANSWER | 0.04 s | details |
| #33 | WRONG ANSWER | 0.04 s | details |
| #34 | WRONG ANSWER | 0.04 s | details |
| #35 | WRONG ANSWER | 0.04 s | details |
| #36 | WRONG ANSWER | 0.04 s | details |
| #37 | WRONG ANSWER | 0.04 s | details |
| #38 | WRONG ANSWER | 0.04 s | details |
| #39 | WRONG ANSWER | 0.04 s | details |
| #40 | WRONG ANSWER | 0.04 s | details |
| #41 | WRONG ANSWER | 0.04 s | details |
| #42 | WRONG ANSWER | 0.05 s | details |
| #43 | WRONG ANSWER | 0.06 s | details |
| #44 | WRONG ANSWER | 0.05 s | details |
| #45 | WRONG ANSWER | 0.05 s | details |
| #46 | WRONG ANSWER | 0.05 s | details |
| #47 | WRONG ANSWER | 0.07 s | details |
| #48 | WRONG ANSWER | 0.04 s | details |
| #49 | WRONG ANSWER | 0.06 s | details |
| #50 | WRONG ANSWER | 0.04 s | details |
| #51 | WRONG ANSWER | 0.07 s | details |
| #52 | WRONG ANSWER | 0.07 s | details |
| #53 | WRONG ANSWER | 0.07 s | details |
| #54 | WRONG ANSWER | 0.07 s | details |
| #55 | WRONG ANSWER | 0.07 s | details |
| #56 | WRONG ANSWER | 0.07 s | details |
| #57 | WRONG ANSWER | 0.07 s | details |
| #58 | WRONG ANSWER | 0.07 s | details |
| #59 | WRONG ANSWER | 0.08 s | details |
| #60 | WRONG ANSWER | 0.05 s | details |
| #61 | WRONG ANSWER | 0.07 s | details |
| #62 | WRONG ANSWER | 0.07 s | details |
| #63 | WRONG ANSWER | 0.08 s | details |
Code
n, k = map(int, input().split())
#n size of forest, k number of trees to cut
trees = list(range(1, n+1))
trees.reverse()
cap = trees[0]
i = 0
j = cap-1
if k == 1:
print(trees[0])
for i in range(k // 2):
print(trees[i], trees[j], end=' ')
i += 1
j -= 1
Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 1 1 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 2 1 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 2 |
Test 3
Verdict: ACCEPTED
| input |
|---|
| 2 1 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 2 |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 3 2 |
| correct output |
|---|
| 1 2 |
| user output |
|---|
| 3 1 |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 3 3 |
| correct output |
|---|
| 1 2 3 |
| user output |
|---|
| 3 1 |
Test 6
Verdict: ACCEPTED
| input |
|---|
| 4 1 |
| correct output |
|---|
| 4 |
| user output |
|---|
| 4 |
Test 7
Verdict: ACCEPTED
| input |
|---|
| 4 4 |
| correct output |
|---|
| 1 2 3 4 |
| user output |
|---|
| 4 1 3 2 |
Test 8
Verdict: ACCEPTED
| input |
|---|
| 5 1 |
| correct output |
|---|
| 5 |
| user output |
|---|
| 5 |
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 5 5 |
| correct output |
|---|
| 1 2 3 4 5 |
| user output |
|---|
| 5 1 4 2 |
Test 10
Verdict: ACCEPTED
| input |
|---|
| 6 1 |
| correct output |
|---|
| 6 |
| user output |
|---|
| 6 |
Test 11
Verdict: WRONG ANSWER
| input |
|---|
| 10 6 |
| correct output |
|---|
| 1 2 3 5 9 10 |
| user output |
|---|
| 10 1 9 2 8 3 |
Test 12
Verdict: WRONG ANSWER
| input |
|---|
| 10 5 |
| correct output |
|---|
| 1 2 3 4 10 |
| user output |
|---|
| 10 1 9 2 |
Test 13
Verdict: WRONG ANSWER
| input |
|---|
| 10 5 |
| correct output |
|---|
| 1 2 3 4 10 |
| user output |
|---|
| 10 1 9 2 |
Test 14
Verdict: WRONG ANSWER
| input |
|---|
| 10 6 |
| correct output |
|---|
| 1 2 3 5 9 10 |
| user output |
|---|
| 10 1 9 2 8 3 |
Test 15
Verdict: ACCEPTED
| input |
|---|
| 10 10 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 |
| user output |
|---|
| 10 1 9 2 8 3 7 4 6 5 |
Test 16
Verdict: WRONG ANSWER
| input |
|---|
| 11 3 |
| correct output |
|---|
| 1 2 8 |
| user output |
|---|
| 11 1 |
Test 17
Verdict: WRONG ANSWER
| input |
|---|
| 11 10 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 |
| user output |
|---|
| 11 1 10 2 9 3 8 4 7 5 |
Test 18
Verdict: ACCEPTED
| input |
|---|
| 11 1 |
| correct output |
|---|
| 11 |
| user output |
|---|
| 11 |
Test 19
Verdict: WRONG ANSWER
| input |
|---|
| 12 11 |
| correct output |
|---|
| 1 2 3 4 5 7 8 9 10 11 12 |
| user output |
|---|
| 12 1 11 2 10 3 9 4 8 5 |
Test 20
Verdict: ACCEPTED
| input |
|---|
| 12 1 |
| correct output |
|---|
| 12 |
| user output |
|---|
| 12 |
Test 21
Verdict: WRONG ANSWER
| input |
|---|
| 20 11 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 15 20 |
| user output |
|---|
| 20 1 19 2 18 3 17 4 16 5 |
Test 22
Verdict: WRONG ANSWER
| input |
|---|
| 20 9 |
| correct output |
|---|
| 1 2 3 4 5 6 7 12 20 |
| user output |
|---|
| 20 1 19 2 18 3 17 4 |
Test 23
Verdict: WRONG ANSWER
| input |
|---|
| 21 10 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 18 |
| user output |
|---|
| 21 1 20 2 19 3 18 4 17 5 |
Test 24
Verdict: WRONG ANSWER
| input |
|---|
| 22 13 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 12 21 22 |
| user output |
|---|
| 22 1 21 2 20 3 19 4 18 5 17 6 |
Test 25
Verdict: ACCEPTED
| input |
|---|
| 20 20 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 20 1 19 2 18 3 17 4 16 5 15 6 ... |
Test 26
Verdict: WRONG ANSWER
| input |
|---|
| 20 5 |
| correct output |
|---|
| 1 2 3 4 10 |
| user output |
|---|
| 20 1 19 2 |
Test 27
Verdict: WRONG ANSWER
| input |
|---|
| 23 21 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 13 14 15 ... |
| user output |
|---|
| 23 1 22 2 21 3 20 4 19 5 18 6 ... |
Test 28
Verdict: WRONG ANSWER
| input |
|---|
| 24 2 |
| correct output |
|---|
| 1 23 |
| user output |
|---|
| 24 1 |
Test 29
Verdict: WRONG ANSWER
| input |
|---|
| 20 18 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 20 1 19 2 18 3 17 4 16 5 15 6 ... |
Test 30
Verdict: ACCEPTED
| input |
|---|
| 25 1 |
| correct output |
|---|
| 25 |
| user output |
|---|
| 25 |
Test 31
Verdict: WRONG ANSWER
| input |
|---|
| 123 68 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 123 1 122 2 121 3 120 4 119 5 ... Truncated |
Test 32
Verdict: WRONG ANSWER
| input |
|---|
| 201 84 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 201 1 200 2 199 3 198 4 197 5 ... Truncated |
Test 33
Verdict: WRONG ANSWER
| input |
|---|
| 200 88 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 200 1 199 2 198 3 197 4 196 5 ... Truncated |
Test 34
Verdict: WRONG ANSWER
| input |
|---|
| 202 112 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 202 1 201 2 200 3 199 4 198 5 ... Truncated |
Test 35
Verdict: WRONG ANSWER
| input |
|---|
| 200 194 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 200 1 199 2 198 3 197 4 196 5 ... Truncated |
Test 36
Verdict: WRONG ANSWER
| input |
|---|
| 204 46 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 204 1 203 2 202 3 201 4 200 5 ... Truncated |
Test 37
Verdict: WRONG ANSWER
| input |
|---|
| 205 184 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 205 1 204 2 203 3 202 4 201 5 ... Truncated |
Test 38
Verdict: WRONG ANSWER
| input |
|---|
| 200 16 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 200 1 199 2 198 3 197 4 196 5 ... |
Test 39
Verdict: WRONG ANSWER
| input |
|---|
| 207 181 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 207 1 206 2 205 3 204 4 203 5 ... Truncated |
Test 40
Verdict: WRONG ANSWER
| input |
|---|
| 201 3 |
| correct output |
|---|
| 1 2 198 |
| user output |
|---|
| 201 1 |
Test 41
Verdict: WRONG ANSWER
| input |
|---|
| 1123 617 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 1123 1 1122 2 1121 3 1120 4 11... Truncated |
Test 42
Verdict: WRONG ANSWER
| input |
|---|
| 2201 918 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 2201 1 2200 2 2199 3 2198 4 21... Truncated |
Test 43
Verdict: WRONG ANSWER
| input |
|---|
| 3200 1396 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 3200 1 3199 2 3198 3 3197 4 31... Truncated |
Test 44
Verdict: WRONG ANSWER
| input |
|---|
| 2202 1213 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 2202 1 2201 2 2200 3 2199 4 21... Truncated |
Test 45
Verdict: WRONG ANSWER
| input |
|---|
| 1200 1161 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 1200 1 1199 2 1198 3 1197 4 11... Truncated |
Test 46
Verdict: WRONG ANSWER
| input |
|---|
| 5204 1156 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 5204 1 5203 2 5202 3 5201 4 52... Truncated |
Test 47
Verdict: WRONG ANSWER
| input |
|---|
| 6205 5541 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 6205 1 6204 2 6203 3 6202 4 62... Truncated |
Test 48
Verdict: WRONG ANSWER
| input |
|---|
| 3200 245 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 3200 1 3199 2 3198 3 3197 4 31... Truncated |
Test 49
Verdict: WRONG ANSWER
| input |
|---|
| 7207 6295 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 7207 1 7206 2 7205 3 7204 4 72... Truncated |
Test 50
Verdict: WRONG ANSWER
| input |
|---|
| 9201 96 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 9201 1 9200 2 9199 3 9198 4 91... Truncated |
Test 51
Verdict: WRONG ANSWER
| input |
|---|
| 51123 28058 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 51123 1 51122 2 51121 3 51120 ... Truncated |
Test 52
Verdict: WRONG ANSWER
| input |
|---|
| 32201 13429 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 32201 1 32200 2 32199 3 32198 ... Truncated |
Test 53
Verdict: WRONG ANSWER
| input |
|---|
| 23200 10116 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 23200 1 23199 2 23198 3 23197 ... Truncated |
Test 54
Verdict: WRONG ANSWER
| input |
|---|
| 12202 6721 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 12202 1 12201 2 12200 3 12199 ... Truncated |
Test 55
Verdict: WRONG ANSWER
| input |
|---|
| 21200 20502 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 21200 1 21199 2 21198 3 21197 ... Truncated |
Test 56
Verdict: WRONG ANSWER
| input |
|---|
| 35204 7816 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 35204 1 35203 2 35202 3 35201 ... Truncated |
Test 57
Verdict: WRONG ANSWER
| input |
|---|
| 46205 41255 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 46205 1 46204 2 46203 3 46202 ... Truncated |
Test 58
Verdict: WRONG ANSWER
| input |
|---|
| 63200 4823 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 63200 1 63199 2 63198 3 63197 ... Truncated |
Test 59
Verdict: WRONG ANSWER
| input |
|---|
| 87207 76170 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 87207 1 87206 2 87205 3 87204 ... Truncated |
Test 60
Verdict: WRONG ANSWER
| input |
|---|
| 99201 1030 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 99201 1 99200 2 99199 3 99198 ... Truncated |
Test 61
Verdict: WRONG ANSWER
| input |
|---|
| 100000 54883 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 100000 1 99999 2 99998 3 99997... Truncated |
Test 62
Verdict: WRONG ANSWER
| input |
|---|
| 100000 41703 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 100000 1 99999 2 99998 3 99997... Truncated |
Test 63
Verdict: WRONG ANSWER
| input |
|---|
| 100000 43601 |
| correct output |
|---|
| 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 100000 1 99999 2 99998 3 99997... Truncated |
