ACM runtime error,该如何处理
ACMruntime errorACM[解决办法]请注意题中: The first line of the input specifies the number of teleph
ACM runtime error
ACM
[解决办法]请注意题中:
The first line of the input specifies the number of telephone numbers in the directory (up to 100,000) as a positive integer alone on the line.
char input[10000][7];
改为
char input[100000][7];
可AC。
[解决办法]顶楼上,是楼上说的样子