提交时间:2026-01-04 15:21:48
运行 ID: 80552
#include<bits/stdc++.h> using namespace std; int main(){ int x,w=0; bool d; float e; string s; cin>>x; for(int i=1;i<=x;++i){ cin>>s; cin>>e>>d; if(e>=37.3&&d==1){ cout<<s<<endl; ++w; } } cout<<w; return 0; }