| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146102 | 刘宸宇 | 判断身材 | C++ | Accepted | 0 MS | 276 KB | 237 | 2026-01-25 22:12:54 |
#include<bits/stdc++.h> using namespace std; int main(){ int h,t; cin>>h>>t; double u=(h-100)*1.0*0.9; if(t>u*1.1) cout<<"fat\n"; else if(t<u*0.9) cout<<"thin\n"; else cout<<"standard\n"; return 0; }