Runtime Error는 주로 특정 입력값에서 에러가 있을 경우 발생합니다. 주로 배열 인덱스를 벗어나거나, 0으로 나누는 작업을 할때 발생하죠.
Time Limit Exceeded는 사용한 알고리즘의 복잡도가 높을 때 발생합니다. 더욱 효율적인 알고리즘을 찾아보세요
Wrong Answer는 ^_^;;;;;
아래는 본 사이트의 https://withcs.net/faqs에 나와 있는 에러의 종류입니다.
Runtime Error : All the other Error on the running phrase will get Runtime Error, such as 'segmentation fault','floating point exception','used forbidden functions', 'tried to access forbidden memories' and so on.
Time Limit Exceeded : Your program tried to run during too much time.
Wrong Answer : Correct solution not reached for the inputs. The inputs and outputs that we use to test the programs are not public (it is recomendable to get accustomed to a true contest dynamic ;-).