记录详情

Accepted


  
[Hydro](https://hydro.ac)提供评测服务
# 状态 耗时 内存占用
#1 Accepted 1ms 392.0 KiB
#2 Accepted 1ms 408.0 KiB
#3 Accepted 1ms 384.0 KiB
#4 Accepted 1ms 396.0 KiB
#5 Accepted 2ms 408.0 KiB

代码

#include<iostream>
using namespace std;
int main()
{
int n;
cin>>n;
int a[n];
int cnt=0;
for(int c=0;c<n;c++)
{
cin>>a[c];
}
for(int t=0;t<n;t++)
{
if(a[t]<60)
cnt++;
}
cout<<cnt<<endl;
return 0;

}

信息

递交者
类型
递交
比赛
8/29 比赛
语言
C++
递交时间
2021-08-29 09:43:40
评测时间
2021-08-29 09:43:40
评测机
分数
100
总耗时
9ms
峰值内存
408.0 KiB