听取WA声一片,青草池塘处处WA。

P1046 [NOIP2005 普及组] 陶陶摘苹果

noob_114514 @ 2021-12-27 13:33:14

对不起(>人<;),我不会用Markdown。


by EC75 @ 2021-12-27 13:55:23

list1=map(int,input().split(' '))
mylist=list(list1)
n=int(input())
n=n+30
tot=0
for x in range(10):
    if(mylist[x]<=n):
        tot=tot+1
print(tot)

Python精简代码


by EC75 @ 2021-12-27 13:55:33

@Barby


by hhschhx @ 2022-09-04 12:48:10

#include <bits/stdc++.h>
using namespace std;
int main(){
    int a[10],b,c,d=0;
    for(b=0;b<10;b++){
        cin>>a[b];
    }
    cin>>c;
    for(b=0;b<10;b++){
        if(c+30>=a[b]){
            d++;
        }
    }
    cout<<d;
}

C++


|