Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126785 | 陈淮遇 | 判断身材 | C++ | Wrong Answer | 0 MS | 268 KB | 262 | 2025-07-21 16:56:29 |
#include<bits/stdc++.h> using namespace std; int main() { int a; int b; cin >> a >> b; int c = (a - 100) * 0.9; if (b == c * 1.1) { cout << "fat"; } else if (b == c * 0.9) { cout << "thin"; } else { cout << "standard"; } return 0; }
------Input------
12 12 100 130
------Answer-----
fat
------Your output-----
standard