首页 > 其他分享 >考试检查

考试检查

时间:2024-10-03 15:45:40浏览次数:14  
标签:rand exe 检查 int system include 考试 1000

  • 针对WA \(\longrightarrow\) 对拍!!!

例:造数据

#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <cstring>
#include <iostream>

using namespace std;

int main()
{
    srand(time(0));
    freopen("xxx.in", "w", stdout);

    int n = rand() % 1000 + 1;
    int m = rand() % 1000 + 1;
    int up = 1000;

    cout << n << ' ' << m << '\n';

    for (int i = 1; i <= n; ++i)
    {
        for (int j = 1; j <= m; ++j)
        {
            cout << rand() % up + 1 << ' ';
        }
        cout << '\n';
    }
    return 0;
}

比较:

#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <cstring>
#include <iostream>

using namespace std;

int main()
{
    while(1)
    {
      system("xxx.exe");//运行造数据的文件
      system("xxx1.exe");//运行要交的代码
      system("xxx2.exe");//运行暴力
      if (system("fc xxx1.out xxx2.out")) break;//比较两个文件的结果
    }
   return 0;
}

标签:rand,exe,检查,int,system,include,考试,1000
From: https://www.cnblogs.com/xu-jh2024/p/18445729

相关文章

  • 基于python+flask框架的线上考试系统(开题+程序+论文) 计算机毕设
    本系统(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。系统程序文件列表开题报告内容研究背景随着互联网技术的飞速发展,教育领域也迎来了数字化转型的浪潮。传统考试模式因受时间、地点限制,已难以满足现代教育的灵活性和便捷性需求。......
  • 2024年华为OD机试真题-找终点-Java-OD统一考试(E卷)
    最新华为OD机试考点合集:华为OD机试2024年真题题库(E卷+D卷+C卷)_华为od机试题库-CSDN博客     每一题都含有详细的解题思路和代码注释,精选c++、JAVA、Python三种语言解法。帮助每一位考生轻松、高效刷题。订阅后永久可看,发现新题及时跟新。题目描述给定一个正整数数组,设......
  • 检查域名过期
    思路*whois命令过滤到期时间·判断whois命令是否存在whichwhois;$?*时间格式转换·转换为秒级date+%s-d'过滤的时间'·当前时间的转换*两个时间相减·echos1-s2|bc*相差时间格式的转换·/60/60/24天*输出打印*多个网址判断for......
  • 2024年华为OD机试真题-找终点-Python-OD统一考试(E卷)
    最新华为OD机试考点合集:华为OD机试2024年真题题库(E卷+D卷+C卷)_华为od机试题库-CSDN博客     每一题都含有详细的解题思路和代码注释,精选c++、JAVA、Python三种语言解法。帮助每一位考生轻松、高效刷题。订阅后永久可看,发现新题及时跟新。题目描述给定一个正整数数组,设......