123456789101112131415161718192021222324252627 |
- #include "testlib.h"
- using namespace std;
- int main(int argc, char *argv[]) {
- registerValidation(argc, argv);
- int testCaseCount = inf.readInt(1, 10, "t");
- inf.readEoln();
- for (int testCase = 1; testCase <= testCaseCount; testCase++) {
- setTestCase(testCase);
- int n = inf.readInt(1, 10000, "n");
- inf.readEoln();
- inf.readInts(n, -1000, 1000, "a");
- inf.readEoln();
- }
- inf.readEof();
- }
|