2 条题解
-
0
#include <bits/stdc++.h> using namespace std; int main() { int n; char st; cin >> n >> st; if(n <= 1000){ if(st == 'y'){ cout << 8+5; }else{ cout << 8; } }else{ if(st == 'y'){ cout << 8+int(((n-1000)/500)+1)*4+5; } else{ cout << 8+int(((n-1000)/500)+1)*4; } } return 0; }
信息
- ID
- 195
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 7
- 标签
- 递交数
- 83
- 已通过
- 20
- 上传者