제출 #976600

#제출 시각아이디문제언어결과실행 시간메모리
976600Isam크레이피쉬 글쓰는 기계 (IOI12_scrivener)C++17
컴파일 에러
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];
}

컴파일 시 표준 에러 (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