- 笨笨的单词排序
- 2009-01-24 16:55:40 @
编译通过...
├ 测试数据 01:答案错误... ├ 标准行输出
├ 错误行输出
├ 测试数据 02:运行时错误...|错误号: -1073741571
├ 测试数据 03:运行时错误...| 错误号: 106 | 无效数字格式
├ 测试数据 04:运行时错误...|错误号: -1073741571
├ 测试数据 05:运行时错误...| 错误号: 106 | 无效数字格式
├ 测试数据 06:运行时错误...| 错误号: 106 | 无效数字格式
├ 测试数据 07:运行时错误...| 错误号: 106 | 无效数字格式
├ 测试数据 08:答案错误... ├ 标准行输出
├ 错误行输出
├ 测试数据 09:运行时错误...| 错误号: 106 | 无效数字格式
├ 测试数据 10:运行时错误...|错误号: -1073741571
---|---|---|---|---|---|---|---|-
Unaccepted 有效得分:0 有效耗时:0ms
program word;
var a:array['a'..'z'] of longint;
b:array[1..100] of string;
i,j,k,l,n,x,m:longint;c:char;t:string;
function next(q,w:string):boolean;
begin
if (q='') or( w='') then begin
if (w='') or (q=w) then exit(false);
if q='' then exit(true);
end;
if a[q[1]]>a[w[1]] then begin exit(true);end;
if a[q[1]]=a[w[1]] then begin delete(q,1,1);delete(w,1,1); next(q,w); end;
if a[q[1]]