Connection Status:
Competition Arena > Submission #7
System Testing
0 / 107
WA 0/107 test cases passed
Submission #7
ProblemEqualizeBags
Handletest-string
Submitted2026-07-05 07:57:42
System Messages
Test case #0
Input:    3
Input:    {5, 47, 5}
Input:    42
Expected: "possible"
Got:      ""
Source Code
#include <string>
#include <vector>
using namespace std;
class EqualizeBags {
public:
    string check(int N, vector<int> bags, int E) { return ""; }
};