| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 78796 | sh25_shenpy | 甲流病人初筛 | C++ | 解答错误 | 0 MS | 244 KB | 327 | 2025-12-27 21:43:05 |
#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){ getline(cin,s); cin>>e>>d; if(e>=37.3&&d==1){ cout<<s<<endl; ++w; } } cout<<w; return 0; }