| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 132114 | 蒋云帆 | 判断身材 | C++ | Wrong Answer | 1 MS | 272 KB | 253 | 2025-10-05 19:12:54 |
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; if((a-100)*0.9>b*1.1){ cout<<"fat"; }else if((a-100)*0.9*0.9>b){ cout<<"thin"; }else{ cout<<"standard"; } return 0; }
------Input------
12 12 100 130
------Answer-----
fat
------Your output-----
standard