Run ID:7976
提交时间:2025-05-31 20:12:01
#include<bits/stdc++.h> using namespace std; int main(){ int n,y=0; cin>>n; while(n--){ int x; cin>>x; x=x%10-x/10%10-x/100%10-x/1000; if(x>0){ y++; } } cout<<y<<endl; return 0; }