3 条题解
- 1
信息
- ID
- 31
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 5
- 标签
- 递交数
- 173
- 已通过
- 66
- 上传者
#include <bits/stdc++.h> using namespace std; int main() { double height; cin >> height;
if (height < 1.3) {
cout << "60" << endl;
} else {
cout << "120" << endl;
}
return 0;
}