2 条题解
-
0房佳坤 LV 10 @ 2021-02-18 20:23:58
#include <iostream> using namespace std; int main() { int n;cin>>n; if(n<=3) cout<<10; else cout<<10+2*(n-3)+1; return 0; }
-
02020-01-03 21:27:21@
a=int(input())
b=a-3
if a<=3: print(10)
else: print(b*2+11)
- 1
信息
- ID
- 1015
- 难度
- 6
- 分类
- (无)
- 标签
- (无)
- 递交数
- 822
- 已通过
- 216
- 通过率
- 26%
- 上传者