BIOS与CMOS的区别 : 1. 所谓BIOS,实际上搜索就是微机的基本输入输出系统(Basic Input-Output System),其内容集成在微机主板上的一个ROM芯片上,主要保存着有关微机系统最重要的基本输入输出程序,系统信息设置、开机上电自检程序和系统启动自举程序等。 2. CMOS ...
分类:
其他好文 时间:
2018-03-17 19:44:57
阅读次数:
143
1486: [HNOI2009]最小圈 Time Limit: 10 Sec Memory Limit: 64 MB Submit: 2728 Solved: 1315 [Submit][Status][Discuss] Description Input Output Sample Input 4 ...
分类:
其他好文 时间:
2018-03-11 19:15:42
阅读次数:
164
"友链" Description Examples input output Solution 两两算出LCA,有两个LCA是相同的,选择另一个作为答案 这道题似乎卡常数 cpp include include include define MAXN 500005 int head[MAXN]; i ...
分类:
其他好文 时间:
2018-03-11 17:23:27
阅读次数:
235
Problem Calculate a + b Input a and b a and b Output a + b a + b Example Notes Use + operator 题目大意 读入 a 和 b,输出 a + b。 题目解读 许多 OJ 的入门第一题,没啥好说的。 代码 1 s ...
分类:
其他好文 时间:
2018-03-11 00:26:33
阅读次数:
158
1449: [JSOI2009]球队收益 Description Input Output 一个整数表示联盟里所有球队收益之和的最小值。 Sample Input 3 3 1 0 2 1 1 1 10 1 0 1 3 3 1 2 2 3 3 1 Sample Output 43 HINT Sourc ...
分类:
Web程序 时间:
2018-03-09 22:40:45
阅读次数:
247
1787: [Ahoi2008]Meet 紧急集合 Description Input Output Sample Input 6 4 1 2 2 3 2 4 4 5 5 6 4 5 6 6 3 1 2 4 4 6 6 6 Sample Output 5 2 2 5 4 1 6 0 HINT Sou ...
分类:
其他好文 时间:
2018-03-09 14:05:51
阅读次数:
197
3622: 已经没有什么好害怕的了 Description Input Output Sample Input 4 2 5 35 15 45 40 20 10 30 Sample Output 4 HINT 输入的2*n个数字保证全不相同。 还有输入应该是第二行是糖果,第三行是药片 输入的2*n个数 ...
分类:
其他好文 时间:
2018-03-08 14:09:19
阅读次数:
140
F. Machine Learning time limit per test 4 seconds memory limit per test 512 megabytes input standard input output standard output F. Machine Learning ...
分类:
系统相关 时间:
2018-03-07 01:01:40
阅读次数:
252
不用数组打印 N=3 对应到一个3 3的矩阵: 1 2 3 4 5 6 7 8 9 斜45度遍历得到: 3 2 6 1 5 9 4 8 7 input: N output:如上的三角形数字 java package Array; import java.util.Scanner; / Created ...
分类:
其他好文 时间:
2018-03-07 00:57:02
阅读次数:
199
subprocess模块用来管理子进程,可以调用外部的命令作为子进程,而且可以连接到子进程的input/output/error管道,获取相关的返回信息。像Linux进程那样,一个进程可以fork一个子进程,并让这个子进程exec另外一个程序。在Python中,我们通过标准库中的subprocess ...
分类:
编程语言 时间:
2018-03-06 20:14:36
阅读次数:
233