Submission #486405

#TimeUsernameProblemLanguageResultExecution timeMemory
486405rainboyDijamant (COI16_dijament)C11
13 / 100
38 ms332 KiB
#include <stdio.h> #include <string.h> #define N 1000 char ss[N][16]; int n; int idx(char *s) { int i; for (i = 0; i < n; i++) if (strcmp(ss[i], s) == 0) return i; strcpy(ss[n], s); return n++; } int main() { int q; scanf("%d", &q); while (q--) { static char cc[16], pp[16]; int n_; scanf("%s%*s", cc); while (1) { scanf("%s", pp); if (pp[0] == ';') break; } n_ = n; idx(cc); printf(n != n_ ? "ok\n" : "greska\n"); } return 0; }

Compilation message (stderr)

dijament.c: In function 'main':
dijament.c:21:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   21 |  scanf("%d", &q);
      |  ^~~~~~~~~~~~~~~
dijament.c:26:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   26 |   scanf("%s%*s", cc);
      |   ^~~~~~~~~~~~~~~~~~
dijament.c:28:4: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
   28 |    scanf("%s", pp);
      |    ^~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...