update project structure

This commit is contained in:
2024-06-20 06:29:07 +08:00
parent 17b4ef8970
commit fdaa94a0fa
49 changed files with 35 additions and 4 deletions

7
luogu_py/p1046.py Normal file
View File

@@ -0,0 +1,7 @@
a0,a1,a2,a3,a4,a5,a6,a7,a8,a9=map(int,input().split())
h=input()
num=0
for i in [a0,a1,a2,a3,a4,a5,a6,a7,a8,a9]:
if ((int(i)) <= (int(h)+30)):
num+=1
print(num)