Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
86977 | 杨珂茹 | 判断身材 | C++ | Accepted | 1 MS | 272 KB | 209 | 2024-07-31 20:01:11 |
#include<bits/stdc++.h> using namespace std; int main(){ int s,t; cin>>s>>t; if((s-100)*0.9*0.9>t) cout<<"thin"; else if((s-100)*0.9*1.1<t) cout<<"fat"; else cout<<"standard"; return 0; }