QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#626703#6431. Oops, It's Yesterday Twice MoregankingRE 0ms0kbC++20263b2024-10-10 11:48:462024-10-10 11:48:48

Judging History

你现在查看的是最新测评结果

  • [2024-10-10 11:48:48]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2024-10-10 11:48:46]
  • 提交

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);
}

詳細信息

Test #1:

score: 0
Dangerous Syscalls

input:

3 3 3

output:


result: