QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#626703 | #6431. Oops, It's Yesterday Twice More | ganking | RE | 0ms | 0kb | C++20 | 263b | 2024-10-10 11:48:46 | 2024-10-10 11:48:48 |
answer
#include<bits/stdc++.h>
using namespace std;
int main(){
freopen("data.in","w",stdout);
srand( (unsigned int) time( NULL ));
int n=rand()%20;
printf("%d\n",n);
for (int i=1;i<=n;i++) printf("%d ",rand()%20+50);
fclose(stdout);
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Dangerous Syscalls
input:
3 3 3