Record Case Detail

Notes

This function is in beta test. Please help improve it in the issues here.

Stderr

Traceback (most recent call last):
  File "challenge.py", line 47, in <module>
    main()
  File "challenge.py", line 42, in main
    check(c, s, t, p, a, w, 0)
  File "challenge.py", line 33, in check
    if check(c, s, t - 1, [pi + ai for pi, ai in zip(p, a)], a, w, r):
  File "challenge.py", line 37, in check
    check(c, s, t, p, a, w, r + 1)
  File "challenge.py", line 37, in check
    check(c, s, t, p, a, w, r + 1)
  File "challenge.py", line 37, in check
    check(c, s, t, p, a, w, r + 1)
  [Previous line repeated 9 more times]
  File "challenge.py", line 33, in check
    if check(c, s, t - 1, [pi + ai for pi, ai in zip(p, a)], a, w, r):
  File "challenge.py", line 37, in check
    check(c, s, t, p, a, w, r + 1)
  File "challenge.py", line 37, in check
    check(c, s, t, p, a, w, r + 1)
  File "challenge.py", line 37, in check
    check(c, s, t, p, a, w, r + 1)
  [Previous line repeated 9 more times]
  File "challenge.py", line 33, in check
    if check(c, s, t - 1, [pi + ai for pi, ai in zip(p, a)], a

Hints

Your answer may be identical to the JOJ answer in the first several lines.

However, the main problem you meet now is Runtime Error. And the exit code of your program is 120, which should be 0.

Please double check your code to solve this problem and try again.

Your Answer


        

JOJ Answer

1248