ThunderBoltC's blog

By ThunderBoltC, history, 9 months ago, In English

hello there, Is it possible to view all the test cases? Like a submission says wrong answer on test case 2, token number 48 not matching. But the cases are not shown entirely. is it possible to see the all cases or the test case txt file?

  • Vote: I like it
  • +3
  • Vote: I do not like it

»
9 months ago, # |
Rev. 3   Vote: I like it 0 Vote: I do not like it

Maybe not. Because Codeforces' test data is confidential. If you want to debug, You can just use the correct code to create data.

»
9 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Codeforces does not release full test cases. Your best bet is probably to stress test (see here); if stress testing doesn't give you a test case to debug with, your issue is probably specific to large inputs (e.g. int vs long long).