| Task: | Kasat |
| Sender: | |
| Submission time: | 2015-09-11 23:57:00 +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.09 s | 1 | details |
| #2 | ACCEPTED | 0.09 s | 2 | details |
| #3 | ACCEPTED | 0.08 s | 3 | details |
Code
#!/usr/bin/env python3
def hidas(a, b, c, n):
while n > 0:
a, b, c = sorted((a, b, c))
a += 1
c -= 1
n -= 1
return tuple(sorted([a, b, c]))
def laske(a, b, c, n):
a, b, c = sorted((a, b, c))
pienin_ero = min(c - b, b - a)
if n <= pienin_ero:
return a + n, b, c - n
a, b, c = (a + pienin_ero), b, (c - pienin_ero)
n -= pienin_ero
# nyt a == b tai b == c
if a == b:
tarvitaan = (c - b) * 2 // 3
if tarvitaan % 2:
tarvitaan += 1
if n > tarvitaan:
a, b, c = a + tarvitaan // 2, b + tarvitaan // 2, c - tarvitaan
a, b, c = sorted((a, b, c))
n -= tarvitaan
if n % 2:
a, b, c = a + 1, b, c - 1
else:
siirretaan = n - n % 2
a, b, c = a + siirretaan // 2, b + siirretaan // 2, c - siirretaan
a, b, c = sorted((a, b, c))
n -= siirretaan
if n % 2:
a, b, c = a + 1, b, c - 1
else:
# b == c
tarvitaan = (b - a) * 2 // 3
if tarvitaan % 2:
tarvitaan += 1
if n > tarvitaan:
a, b, c = a + tarvitaan, b - tarvitaan // 2, c - tarvitaan // 2
a, b, c = sorted((a, b, c))
n -= tarvitaan
if n % 2:
a, b, c = a + 1, b, c - 1
else:
siirretaan = n - n % 2
a, b, c = a + siirretaan, b - siirretaan // 2, c - siirretaan // 2
a, b, c = sorted((a, b, c))
n -= siirretaan
if n % 2:
a, b, c = a + 1, b, c - 1
return tuple(sorted([a, b, c]))
def testaa():
from random import randint as ri
tapaukset = {
(2, 2, 2, 1): (1, 2, 3),
(1, 1, 10, 1): (1, 2, 9),
(1, 1, 10, 2): (2, 2, 8),
(1, 10, 10, 1): (2, 9, 10),
(1, 10, 10, 2): (3, 9, 9),
(1, 10, 10, 6): (7, 7, 7),
(1, 10, 10, 7): (6, 7, 8),
(4, 4, 10, 7): (5, 6, 7),
(4, 4, 10, 8): (6, 6, 6),
(1, 5, 8, 1): (2, 5, 7),
(1, 5, 8, 2): (3, 5, 6),
(1, 5, 8, 3): (4, 5, 5),
(1, 5, 8, 4): (4, 5, 5),
(1, 5, 8, 15): (4, 5, 5),
(2, 10, 5, 2): (4, 5, 8),
(6, 6, 6, 1): (5, 6, 7),
(3, 3, 8, 3): (4, 5, 5),
}
for i in range(5):
syote = (ri(1, 100), ri(1, 100), ri(1, 100), ri(1, 10**5))
tulos = hidas(*syote)
tapaukset[syote] = tulos
for syote, tulos in tapaukset.items():
if laske(*syote) != tulos:
print('syote', syote, 'tuotti', laske(*syote), 'piti olla', tulos)
def main():
for i in range(int(input())):
a, b, c, n = map(int, input().strip().split())
print('%d %d %d' % laske(a, b, c, n))
if __name__ == '__main__':
# testaa()
main()
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 ... |
