1 条题解
-
1
周钰宸 (Corey_ZYC) LV 7 @ 2025-06-27 19:31:16
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin>>n;
int ans=0;
for(int i=1;i<=n;i++)
{
int x;
cin>>x;
if(x%9==0&&x%8!=0)ans++;
}
cout<<ans<<endl;
return 0;
}
- 1
信息
- ID
- 2804
- 难度
- 7
- 分类
- (无)
- 标签
- 递交数
- 261
- 已通过
- 58
- 通过率
- 22%
- 被复制
- 1
- 上传者