| 比赛 | 十一中校庆欢乐赛 | 评测结果 | AAAAAAAAAA |
|---|---|---|---|
| 题目名称 | 陶陶摘苹果 | 最终得分 | 100 |
| 用户昵称 | 传奇 | 运行时间 | 0.005 s |
| 代码语言 | Pascal | 内存使用 | 0.17 MiB |
| 提交时间 | 2014-10-23 19:03:51 | ||
program cojs927;
var
i,t,k,ans:longint;
begin
assign(input,'apple.in');
assign(output,'apple.out');
reset(input);
rewrite(output);
readln;
readln(k);
k:=k+30;
reset(input);
for i:=1 to 10 do
begin
read(t);
if k>=t then
inc(ans);
end;
writeln(ans);
close(input);
close(output);
end.