Submission #976600

#TimeUsernameProblemLanguageResultExecution timeMemory
976600IsamCrayfish scrivener (IOI12_scrivener)C++17
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; string s[1000001]; int tot; void init(); void TypeLetter(char L){ s[++tot] = s[tot-1] + 'L'; } void UndoCommands(int U){ s[tot] = s[tot - U]; } char GetLetter(int P){ return s[tot][P-1]; }

Compilation message (stderr)

scrivener.cpp: In function 'void TypeLetter(char)':
scrivener.cpp:12:4: warning: operation on 'tot' may be undefined [-Wsequence-point]
   12 |  s[++tot] = s[tot-1] + 'L';
      |    ^~~~~
/usr/bin/ld: /tmp/ccSuwLS0.o: in function `main':
grader.cpp:(.text.startup+0x63): undefined reference to `Init()'
collect2: error: ld returned 1 exit status