自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(16)
  • 收藏
  • 关注

原创 1.21 算法题(1)

A/B Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 10244 Accepted Submission(s): 8191 Problem Description 要求(A/B)%9973,但由于A很大,我们只给出n(n=A%99...

2019-01-24 23:13:08 182

原创 1.23 算法题(1)

不容易系列之(4)——考新郎 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 50869 Accepted Submission(s): 18553 Problem Description 国庆期间,省城HZ刚刚举行了一场盛大的集体...

2019-01-24 23:05:24 166

原创 第二次周赛D

The Digital Root The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that digit is the digital root. If the resulting v...

2018-12-19 16:19:28 148

原创 第二次周赛C

在2×n的一个长方形方格中,用一个1× 2的骨牌铺满方格,输入n ,输出铺放方案的总数. 例如n=3时,为2× 3方格,骨牌的铺放方案有三种,如下图: Input 输入数据由多行组成,每行包含一个整数n,表示该测试实例的长方形方格的规格是2×n (0<n<=50)。 Output 对于每个测试实例,请输出铺放方案的总数,每个实例的输出占一行。 解题思路:先简单推出前几种情...

2018-12-19 00:39:05 162

原创 第二次周赛A

Theatre Square in the capital city of Berland has a rectangular shape with the size n × m meters. On the occasion of the city’s anniversary, a decision was taken to pave the Square with square granit...

2018-12-18 20:23:14 142

原创 第二次周赛B

有一只经过训练的蜜蜂只能爬向右侧相邻的蜂房,不能反向爬行。请编程计算蜜蜂从蜂房a爬到蜂房b的可能路线数。 其中,蜂房的结构如下所示。 Input 输入数据的第一行是一个整数N,表示测试实例的个数,然后是N 行数据,每行包含两个整数a和b(0<a<b<50)。 Output 对于每个测试实例,请输出蜜蜂从蜂房a爬到蜂房b的可能路线数,每个实例的输出占一行。 Sample ...

2018-12-18 20:15:55 117

原创 第二期 第五题

水仙花数 http://acm.hdu.edu.cn/showproblem.php?pid=2010 解题思路:先将输入的数拆分成三个个位数,判断是否为水仙花数 #include <iostream> using namespace std; int main() { int m, n, a, b, c, i, k; while (cin >> m ...

2018-12-14 12:45:16 204

原创 第二期 第二题

空心三角形 http://acm.hdu.edu.cn/showproblem.php?pid=2091 解题思路:输入字符和行数,根据每一行对应的空格数量和应输出的字符位置、个数列出通式,注意每个三角形之间空一行; #include using namespace std; int main() { int n, i, j, k = 0; char ch; cin >> ...

2018-12-13 00:20:17 172

原创 第二期 第一题

G-Problem G https://vjudge.net/contest/274223#problem/G 解题思路:开两个动态数组储存两组数据,进行排序,找到最小值,并判断m是否为0,分情况输出; #include using namespace std; int main() { int T, n, m, i, j, y, z, x; int *a, *b; cin >&...

2018-12-13 00:15:29 122

原创 第一期 第八题

A + B Problem Too This problem is also a A + B problem,but it has a little difference,you should determine does (a+b) could be divided with 86.For example ,if (A+B)=98,you should output no for result...

2018-12-07 00:24:35 152

原创 第一期 第七题

计算球体积 根据输入的半径值,计算球的体积。 Input 输入数据有多组,每组占一行,每行包括一个实数,表示球的半径。 Output 输出对应的球的体积,对于每组输入数据,输出一行,计算结果保留三位小数。 解题思路:输入半径,利用体积公式求; #define PI 3.1415927 #include #include using namespace std; int mai...

2018-12-07 00:22:28 244

原创 第一期 第六题

ASCII码排序 输入三个字符后,按各字符的ASCII码从小到大的顺序输出这三个字符。 Input 输入数据有多组,每组占一行,有三个字符组成,之间无空格。 Output 对于每组输入数据,输出一行,字符中间用一个空格分开。 解题思路:用字符数组储存三个字符,选择排序输出; #include using namespace std; int main() { char s[3]...

2018-12-07 00:18:15 154

原创 第一期 第四题

A + B Problem Calculate A + B. Input Each line will contain two integers A and B. Process to end of file. Output For each case, output A + B in one line. 解题思路:输入两个整型数,循环相加至输入零停止; #include us...

2018-12-07 00:03:16 98

原创 第一期 第三题

Stones on the Table There are n stones on the table in a row, each of them can be red, green or blue. Count the minimum number of stones to take from the table so that any two neighboring stones had ...

2018-12-07 00:01:19 173

原创 第一期 第二题

George and Accommodation George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into ...

2018-12-06 23:58:11 210

原创 第一期 第一题

第一期 第一题 String Task Petya started to attend programming lessons. On the first lesson his task was to write a simple program. The program was supposed to do the following: in the given string, consist...

2018-12-06 23:52:11 244

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除