QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#626707 | #6431. Oops, It's Yesterday Twice More | ganking | RE | 0ms | 0kb | C++20 | 296b | 2024-10-10 11:49:30 | 2024-10-10 11:49:31 |
answer
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,x;
freopen("data.in","r",stdin);
freopen("test.out","w",stdout);
scanf("%d",&n);
int ans=0;
for (int i=1;i<=n;i++){
scanf("%d",&x);
if (x>60) ans++;
}
printf("%d",ans);
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Dangerous Syscalls
input:
3 3 3