| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146081 | 张奕杨 | 判断身材 | C++ | Accepted | 0 MS | 268 KB | 228 | 2026-01-25 20:35:11 |
#include<bits/stdc++.h> using namespace std; int main(){ int h,w; cin>>h>>w; double z=(h-100)*0.9; if(w>z*1.1) cout<<"fat"; else if(w<z*0.9) cout<<"thin"; else cout<<"standard"; return 0; }