| Task: | Kasat |
| Sender: | |
| Submission time: | 2015-09-14 01:53:33 +0300 |
| Language: | Python3 |
| Status: | READY |
| Result: | 100 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 21 |
| #2 | ACCEPTED | 33 |
| #3 | ACCEPTED | 46 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.10 s | 1 | details |
| #2 | ACCEPTED | 0.11 s | 2 | details |
| #3 | ACCEPTED | 0.14 s | 3 | details |
Code
for t in range(int(input())):
a, b, c, n = (int(x) for x in input().split())
D = sorted([a,b,c])
d = min(D[1]-D[0], D[2]-D[1], n)
D = [D[0]+d, D[1], D[2]-d]
n = n - d
if n > 0: # D[0] == D[1] or D[1] == D[2]
d = int(n / 2)
while d >= 1:
while n >= 2*d and D[2]-D[0] >= 3*d:
if D[0] < D[1]:
D = [D[0]+2*d, D[1]-1*d, D[2]-1*d]
else: # D[1] < D[2]
D = [D[0]+1*d, D[1]+1*d, D[2]-2*d]
n = n - 2*d
d = int(d / 2)
while n > 0 and D[2]-D[0] > 1:
D, n = sorted([D[0]+1, D[1], D[2]-1]), n -1
n = n - 1
if n % 2 and D[0] == D[2]:
D = [D[0]-1, D[1], D[2]+1]
print(" ".join(str(x) for x in D))
Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 1000 7 69 64 45 37 5 30 81 50 49 37 38 46 37 100 6 ... |
| correct output |
|---|
| 46 47 47 24 24 24 45 45 46 43 46 94 32 32 33 ... |
| user output |
|---|
| 46 47 47 24 24 24 45 45 46 43 46 94 32 32 33 ... |
Test 2
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 1000 19 13 88 978977859 67 57 39 960003440 81 16 67 971611942 92 96 2 957979201 ... |
| correct output |
|---|
| 39 40 41 54 54 55 54 55 55 63 63 64 36 37 38 ... |
| user output |
|---|
| 39 40 41 54 54 55 54 55 55 63 63 64 36 37 38 ... |
Test 3
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 1000 211358104 753479603 549127067 ... |
| correct output |
|---|
| 504654924 504654925 504654925 589019272 589019272 589019273 101309993 101309994 101309994 436205296 436205297 436205298 351062567 351062568 351062568 ... |
| user output |
|---|
| 504654924 504654925 504654925 589019272 589019272 589019273 101309993 101309994 101309994 436205296 436205297 436205298 351062567 351062568 351062568 ... |
