15 条题解
-
4
沈俊阳 LV 8 @ 5 年前
-
26 年前@
import math
a=int(input())
if a<=6:
print(3)
elif a<=12:
print(4)
elif a<=32:
print(6+math.ceil((a-32)/10))
else:
print(6+math.ceil((a-32)/20)) -
11 年前@
数据弱到打表都能过。。。
-
16 年前@
mport math
a=int(input())
if a<=6:
print(3)
elif a<=12:
print(4)
elif a<=22:
print(5)
elif a<=32:
print(6)
else:
print(6+math.ceil((a-32)/20)) -
16 年前@
import math
a=int(input())b=math.ceil((a-32)/20)+6
if a<=6:
print(3)
elif a>6 and a<=12:
print(4)
elif a>12 and a<=22:
print(5)
elif a>22 and a<=32:
print(6)
else:
print(b) -
16 年前@
见识一下什么叫暴力算法
仅限娱乐 -
03 年前@
#不需要向上取整函数的题解
s=int(input())
if s<=6:
m=3
elif s>6 and s<=12:
m=4
elif s>12 and s<=22:
m=5
elif s>22 and s<=32:
m=6
else:
if (s-32)%20==0:
m=6+(s-32)//20
else:
m=6+((s-32)//20)+1
print(m) -
05 年前@
import math
m=int(input())
if m<=6:
print(3)
elif m>6 and m<=12:
print(4)
elif m>12 and m<=22:
print(5)
elif m>22 and m<=32:
print(6)
else:
print(6+math.ceil((m-32)/20)) -
06 年前@
#include <iostream>
#include <math.h>
#include <iomanip>using namespace std;
int main()
{
int length, price;
cin >> length;
if(length <= 6)
{
price = 3;
}
else if(length <= 12 && length > 6)
{
price = 4;
}
else if(length <= 22 && length > 12)
{
price = 5;
}
else if(length <= 32 && length > 22)
{
price = 6;
}
else
{
price = 6 + ceil((length - 32) / 20.0);
}
cout << price;
return 0;
} -
06 年前@
数据挺真实/斜眼笑,里程不超过112公里。
x=int(input())
if(x<=6):
print(3)
elif(x<=12):
print(4)
elif(x<=22):
print(5)
elif(x<=32):
print(6)
elif(x<=52):
print(7)
elif(x<=72):
print(8)
elif(x<=92):
print(9)
elif(x<=112):
print(10) -
06 年前@
import math
a=int(input())
if a<=6:
print(3)
elif a<=12:
print(4)
elif a<=32:
print(6+math.ceil((a-32)/10))
else:
print(6+math.ceil((a-32)/20)) -
06 年前@
import math
N=int(input())
if N<=6:
print(3)
elif N>6 and N<=12:
print(4)
elif N>12 and N<=22:
print(5)
elif N>22 and N<=32:
print(6)
else:
print(6+math.ceil((N-32)/20)) -
06 年前@
import math
s=int(input())
if s<=6:
print(3)
if s>6 and s<=12:
print(4)
if s>12 and s<=22:
print(5)
if s>22 and s<=32:
print(6)
if s>32:
print(6+math.ceil((s-32)/20)) -
06 年前@
-
06 年前@
- 1
信息
- 难度
- 7
- 分类
- (无)
- 标签
- (无)
- 递交数
- 4067
- 已通过
- 723
- 通过率
- 18%
- 被复制
- 1
- 上传者