| Task: | Pizzat |
| Sender: | Us3rNam3 |
| Submission time: | 2024-10-29 00:22:08 +0200 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.02 s | details |
| #2 | WRONG ANSWER | 0.02 s | details |
| #3 | WRONG ANSWER | 0.02 s | details |
| #4 | WRONG ANSWER | 0.02 s | details |
| #5 | WRONG ANSWER | 0.02 s | details |
| #6 | WRONG ANSWER | 0.02 s | details |
| #7 | WRONG ANSWER | 0.02 s | details |
| #8 | WRONG ANSWER | 0.02 s | details |
| #9 | WRONG ANSWER | 0.02 s | details |
| #10 | WRONG ANSWER | 0.02 s | details |
| #11 | WRONG ANSWER | 0.02 s | details |
| #12 | WRONG ANSWER | 0.02 s | details |
| #13 | WRONG ANSWER | 0.02 s | details |
Code
n, m, k = map(int, input("Enter people, pizzas, slices (space-separated): ").split())
total_slices = m * k
slices_per_person = total_slices // n
remainder = total_slices % n
max_slices = slices_per_person + (1 if remainder > 0 else 0)
min_slices = slices_per_person
print(f"min_slices per person: {min_slices}")
print(f"max_slices per person: {max_slices}")Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 3 2 4 |
| correct output |
|---|
| 2 3 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1 1 1 |
| correct output |
|---|
| 1 1 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 1 1 2 |
| correct output |
|---|
| 2 2 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 2 1 1 |
| correct output |
|---|
| 0 1 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 2 5 7 |
| correct output |
|---|
| 17 18 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 1 1000 1000 |
| correct output |
|---|
| 1000000 1000000 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 7
Verdict: WRONG ANSWER
| input |
|---|
| 1000 1000 1000 |
| correct output |
|---|
| 1000 1000 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 8
Verdict: WRONG ANSWER
| input |
|---|
| 1000 1 1 |
| correct output |
|---|
| 0 1 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 997 995 997 |
| correct output |
|---|
| 995 995 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 10
Verdict: WRONG ANSWER
| input |
|---|
| 997 994 997 |
| correct output |
|---|
| 994 994 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 11
Verdict: WRONG ANSWER
| input |
|---|
| 997 996 995 |
| correct output |
|---|
| 994 995 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 12
Verdict: WRONG ANSWER
| input |
|---|
| 997 996 996 |
| correct output |
|---|
| 995 996 |
| user output |
|---|
| Enter people, pizzas, slices (... |
Test 13
Verdict: WRONG ANSWER
| input |
|---|
| 997 995 499 |
| correct output |
|---|
| 497 498 |
| user output |
|---|
| Enter people, pizzas, slices (... |
