/ SB域 /

记录详情

Runtime Error

/usr/bin/ld.bfd: warning: /out/link.res contains output sections; did you forget -T?
# 状态 耗时 内存占用
#1 Accepted 1ms 256.0 KiB
#2 Accepted 1ms 256.0 KiB
#3 Accepted 1ms 256.0 KiB
#4 Accepted 1ms 256.0 KiB
#5 Accepted 1ms 256.0 KiB
#6 Accepted 2ms 256.0 KiB
#7 Accepted 5ms 256.0 KiB
#8 Accepted 8ms 256.0 KiB
#9 Runtime Error 5ms 256.0 KiB
#10 Accepted 14ms 256.0 KiB

代码

var t,a,b,c,d,i:longint;
    p1,p2:extended;
begin
//assign(input,'cmp.in');
//assign(output,'cmp.out');
//reset(input);
//rewrite(output);
 readln(t);
 for i:=1 to t do begin
  readln(a,b,c,d);
  p1:=b*ln(a);
  p2:=d*ln(c);
  if p1=p2 then writeln('equal')
  else if p1-p2<1e-9 then writeln('less')
  else writeln('more');
 end;
 close(input);
 close(output);
end.

信息

递交者
类型
递交
题目
数字比较器
题目数据
下载
语言
Pascal
递交时间
2017-08-22 22:27:23
评测时间
2017-08-22 22:27:23
评测机
分数
90
总耗时
43ms
峰值内存
256.0 KiB