Submission details
Task:Tulkki
Sender:Lily2
Submission time:2025-11-08 07:55:38 +0200
Language:C
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED12
#2ACCEPTED32
#3ACCEPTED56
Test results
testverdicttimegroup
#1ACCEPTED0.00 s1, 2, 3details
#2ACCEPTED0.00 s1, 2, 3details
#3ACCEPTED0.00 s1, 2, 3details
#4ACCEPTED0.00 s1, 2, 3details
#5ACCEPTED0.00 s1, 2, 3details
#6ACCEPTED0.00 s1, 2, 3details
#7ACCEPTED0.00 s2, 3details
#8ACCEPTED0.00 s2, 3details
#9ACCEPTED0.00 s2, 3details
#10ACCEPTED0.00 s2, 3details
#11ACCEPTED0.00 s2, 3details
#12ACCEPTED0.00 s2, 3details
#13ACCEPTED0.00 s3details
#14ACCEPTED0.00 s3details
#15ACCEPTED0.01 s3details
#16ACCEPTED0.00 s3details
#17ACCEPTED0.04 s3details
#18ACCEPTED0.01 s3details

Code

#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define MAX_CMDS 1000

typedef enum { CMD_CLEAR, CMD_INCREASE, CMD_PRINT, CMD_REPEAT } CmdType;

typedef struct Command {
  CmdType type;
  char var;
  char repeatVar;
  struct Command **body;
  int bodyCount;
} Command;

int vars[26];

static inline void stripComment(char *s) {
  for (int i = 0; s[i]; i++)
    if (s[i] == '#') {
      s[i] = '\0';
      break;
    }
}

static inline int readNextToken(char *buf) {
  while (fscanf(stdin, "%63s", buf) == 1) {
    stripComment(buf);
    if (buf[0] != '\0') return 1;
    int ch;
    while ((ch = fgetc(stdin)) != '\n' && ch != EOF);
  }
  return 0;
}

void run(Command **cmds, int count) {
  for (int i = 0; i < count; i++) {
    Command *c = cmds[i];
    switch (c->type) {
      case CMD_CLEAR:
        vars[c->var - 'A'] = 0;
        break;
      case CMD_INCREASE:
        vars[c->var - 'A']++;
        break;
      case CMD_PRINT:
        printf("%d\n", vars[c->var - 'A']);
        break;
      case CMD_REPEAT: {
        int times = vars[c->repeatVar - 'A'];
        for (int j = 0; j < times; j++) run(c->body, c->bodyCount);
        break;
      }
    }
  }
}

Command **parseBlock(int *count) {
  Command **cmds = malloc(MAX_CMDS * sizeof(Command *));
  *count = 0;
  char token[64];

  while (readNextToken(token)) {
    if (!strcmp(token, ")")) break;

    Command *c = malloc(sizeof(Command));
    if (!strcmp(token, "CLEAR") || !strcmp(token, "INCREASE") ||
        !strcmp(token, "PRINT")) {
      c->type = !strcmp(token, "CLEAR")      ? CMD_CLEAR
                : !strcmp(token, "INCREASE") ? CMD_INCREASE
                                             : CMD_PRINT;
      readNextToken(token);
      c->var = token[0];
      cmds[(*count)++] = c;

    } else if (!strcmp(token, "REPEAT")) {
      c->type = CMD_REPEAT;
      readNextToken(token);
      c->repeatVar = token[0];
      readNextToken(token);  // TIMES
      readNextToken(token);  // (
      c->body = parseBlock(&c->bodyCount);
      cmds[(*count)++] = c;

    }
  }
  return cmds;
}

void freeCommands(Command **cmds, int count) {
  for (int i = 0; i < count; i++) {
    if (cmds[i]->type == CMD_REPEAT)
      freeCommands(cmds[i]->body, cmds[i]->bodyCount);
    free(cmds[i]);
  }
  free(cmds);
}

int main() {
  int count;
  Command **cmds = parseBlock(&count);
  run(cmds, count);
  freeCommands(cmds, count);
  return 0;
}

Test details

Test 1 (public)

Group: 1, 2, 3

Verdict: ACCEPTED

input
PRINT X
INCREASE X
PRINT X
INCREASE X
PRINT X
...

correct output
0 1 2 0 

user output
0
1
2
0

Test 2 (public)

Group: 1, 2, 3

Verdict: ACCEPTED

input
INCREASE
X
# aybabtu
   PRINT    X
INCREASE # test
...

correct output
1 3 

user output
1
3

Test 3 (public)

Group: 1, 2, 3

Verdict: ACCEPTED

input
# Create number 3
INCREASE X
INCREASE X
INCREASE X

...

correct output

user output
3

Test 4 (public)

Group: 1, 2, 3

Verdict: ACCEPTED

input
INCREASE A
PRINT A
INCREASE B
PRINT B
INCREASE C
...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
1
1
1
1
1
...

Test 5 (public)

Group: 1, 2, 3

Verdict: ACCEPTED

input
INCREASE X
INCREASE X
INCREASE X
INCREASE X
INCREASE X
...

correct output
999 

user output
999

Test 6 (public)

Group: 1, 2, 3

Verdict: ACCEPTED

input
PRINT X
PRINT X
PRINT X
PRINT X
PRINT X
...

correct output
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

user output
0
0
0
0
0
...

Test 7 (public)

Group: 2, 3

Verdict: ACCEPTED

input
INCREASE A
INCREASE A
INCREASE A
INCREASE A
INCREASE A
...

correct output
5 5 5 5 5 

user output
5
5
5
5
5

Test 8 (public)

Group: 2, 3

Verdict: ACCEPTED

input
INCREASE A
INCREASE A
INCREASE A
INCREASE A
INCREASE A
...

correct output
0 0 0 0 0 

user output
0
0
0
0
0

Test 9 (public)

Group: 2, 3

Verdict: ACCEPTED

input
INCREASE A
INCREASE A
INCREASE A
INCREASE A
INCREASE A
...

correct output
6 7 8 9 10 

user output
6
7
8
9
10

Test 10 (public)

Group: 2, 3

Verdict: ACCEPTED

input
INCREASE A
INCREASE A
INCREASE A
INCREASE A
INCREASE A
...

correct output
5 5 

user output
5
5

Test 11 (public)

Group: 2, 3

Verdict: ACCEPTED

input
INCREASE A
INCREASE A
INCREASE A
INCREASE A
INCREASE A
...

correct output
20 

user output
20

Test 12 (public)

Group: 2, 3

Verdict: ACCEPTED

input
INCREASE A
INCREASE A

INCREASE B
INCREASE B
...

correct output
42 

user output
42

Test 13 (public)

Group: 3

Verdict: ACCEPTED

input
INCREASE A
INCREASE A
INCREASE A
INCREASE A
INCREASE A
...

correct output
1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 

user output
1
2
2
3
3
...

Test 14 (public)

Group: 3

Verdict: ACCEPTED

input
# Create number 3
INCREASE A INCREASE A INCREASE...

correct output
12 

user output
12

Test 15 (public)

Group: 3

Verdict: ACCEPTED

input
INCREASE X
INCREASE X
INCREASE X
INCREASE X
INCREASE X
...

correct output
531441 

user output
531441

Test 16 (public)

Group: 3

Verdict: ACCEPTED

input
INCREASE A
INCREASE A
INCREASE A
INCREASE A
INCREASE A
...

correct output
1337 

user output
1337

Test 17 (public)

Group: 3

Verdict: ACCEPTED

input
INCREASE A
INCREASE A

REPEAT A TIMES (
    REPEAT A TIMES (
...

correct output
1 2 1 2 1 1 3 4 3 4 3 4 3 4 3 ...

user output
1
2
1
2
1
...

Test 18 (public)

Group: 3

Verdict: ACCEPTED

input
# Efficient algorithm for find...

correct output
2 3 5 7 11 13 17 19 23 29 31 3...

user output
2
3
5
7
11
...