Advertisement
Guest User

Untitled

a guest
May 26th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. Failed case #1/102: (Wrong answer)
  2. Неправильный результат в 5 строке
  3.  
  4. Input:
  5. AddNewTasks Alice 5
  6. PerformPersonTasks Alice 5
  7. PerformPersonTasks Alice 5
  8. PerformPersonTasks Alice 1
  9. AddNewTasks Alice 5
  10. PerformPersonTasks Alice 2
  11. GetPersonTasksInfo Alice
  12. PerformPersonTasks Alice 4
  13. GetPersonTasksInfo Alice
  14.  
  15. Your output:
  16. []
  17. [{"IN_PROGRESS": 5}, {}]
  18. [{"TESTING": 5}, {}]
  19. [{"DONE": 1}, {"TESTING": 4}]
  20. []
  21. [{"IN_PROGRESS": 2}, {"NEW": 3, "TESTING": 4, "DONE": 1}]
  22. {"NEW": 3, "IN_PROGRESS": 2, "TESTING": 4, "DONE": 1}
  23. [{"IN_PROGRESS": 3, "TESTING": 1}, {"IN_PROGRESS": 1, "TESTING": 4, "DONE": 1}]
  24. {"NEW": 0, "IN_PROGRESS": 4, "TESTING": 5, "DONE": 1}
  25.  
  26. Correct output:
  27. []
  28. [{"IN_PROGRESS": 5}, {}]
  29. [{"TESTING": 5}, {}]
  30. [{"DONE": 1}, {"TESTING": 4}]
  31. []
  32. [{"IN_PROGRESS": 2}, {"NEW": 3, "TESTING": 4}] // DONE куда то пропал.
  33. {"NEW": 3, "IN_PROGRESS": 2, "TESTING": 4, "DONE": 1}
  34. [{"IN_PROGRESS": 3, "TESTING": 1}, {"IN_PROGRESS": 1, "TESTING": 4}]
  35. {"IN_PROGRESS": 4, "TESTING": 5, "DONE": 1}
  36. (Time used: 0.00/1.00, preprocess time used: 0/None, memory used: 45203456/536870912.)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement