ACM runtime error
[解决办法]
请注意题中:
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。
[解决办法]
顶楼上,是楼上说的样子
发布时间: 2013-06-25 23:45:41 作者: rapoo
ACM runtime error