1
0

case-string-zb.cpp 377 B

1234567891011121314151617
  1. #include "testlib.h"
  2. using namespace std;
  3. int main(int argc, char *argv[]) {
  4. registerValidation(argc, argv);
  5. int testCaseCount = inf.readInt(1, 10, "t");
  6. inf.readEoln();
  7. for (int testCase = 1; testCase <= testCaseCount; testCase++) {
  8. setTestCase(testCase - 1);
  9. inf.readLine("[\\\\!a-z]{1,100}");
  10. }
  11. inf.readEof();
  12. }