记录编号 | 134981 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [NOIP 2005]陶陶摘苹果 | 最终得分 | 100 | ||
用户昵称 | lyl610 | 是否通过 | 通过 | ||
代码语言 | Pascal | 运行时间 | 0.000 s | ||
提交时间 | 2014-10-31 13:02:57 | 内存使用 | 0.17 MiB | ||
var a:array[0..100]of longint; i,j,t,s:longint; begin assign(input,'apple.in'); reset(input); assign(output,'apple.out'); rewrite(output); for i:=1 to 10 do read(a[i]); readln; read(j); t:=j+30; for i:=1 to 10 do if a[i]<=t then inc(s); writeln(s); close(input); close(output); end.