摘要: 调试和对拍 真正赛场上,你是单独在作战 OI赛制又决定了你不可能立刻知道程序的正确性 所以,写完代码、跑过样例以后,把它直接就放在一边绝对是错误的做法,你需要进一步检查正确性 调试 程序输出错误结果或崩溃时,你就拿到了一组可以用于调试的宝贵输入数据(叫hack数据,就是能把你 的程序卡掉) 接下来你 阅读全文
posted @ 2021-07-23 22:53 limited_Infinite 阅读(207) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; typedef vector<int> VI; vector<int> add(vector<int> &A, vector<int> &B) // C = A + B, A >= 0, B >= 0 { if 阅读全文
posted @ 2021-08-22 10:00 limited_Infinite 阅读(61) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>COVID-19 Group 2</title> <!-- <link rel="stylesheet" href="css/font-awesome.min.css"> --> 阅读全文
posted @ 2021-07-29 19:19 limited_Infinite 阅读(29) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>2组COVID-19</title> <script type="text/javasc 阅读全文
posted @ 2021-07-29 11:15 limited_Infinite 阅读(20) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>select选择-按钮跳转</title> <script type="text/jav 阅读全文
posted @ 2021-07-28 21:07 limited_Infinite 阅读(21) 评论(0) 推荐(0) 编辑
摘要: <!doctype html><html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>select选择-按钮跳转</title> <script type="text/java 阅读全文
posted @ 2021-07-28 15:27 limited_Infinite 阅读(19) 评论(0) 推荐(0) 编辑
摘要: import 'package:flutter/material.dart'; import 'dart:async'; import 'dart:io'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { 阅读全文
posted @ 2021-07-22 10:16 limited_Infinite 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 函数名: #define KEY_DOWN(VK_NONAME) ((GetAsyncKeyState(VK_NONAME) & 0x8000) ? 1:0) 常量名 对应按键 取值 ————————————————————————————————————————————————————————— 阅读全文
posted @ 2021-07-21 16:09 limited_Infinite 阅读(49) 评论(0) 推荐(0) 编辑
摘要: https://qqdie.com/archives/pio-typecho-live2d-plugin.html https://qqdie.com/archives/live2d-histoiretypecho.html https://nocilol.me/archives/none/unde 阅读全文
posted @ 2021-07-19 11:17 limited_Infinite 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 请写一个程序,要求维护一个数列,支持以下 66 种操作:(请注意,格式栏 中的下划线 _ 表示实际输入文件中的空格) 输入格式 第 11 行包含两个数 NN 和 MM,NN 表示初始时数列中数的个数,MM 表示要进行的操作数目。 第 22 行包含 NN 个数字,描述初始时的数列。 以下 MM 行,每 阅读全文
posted @ 2021-07-15 11:44 limited_Infinite 阅读(59) 评论(0) 推荐(0) 编辑
// //返回顶部 //返回顶部按钮