应该是水题把
codingXT
菜鸡一枚,请多指教。
展开
-
杭电 2028 Lowest Common Multiple Plus
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2028 Problem Description 求n个数的最小公倍数。Input 输入包含多个测试实例,每个测试实例的开始是一个正整数n,然后是n个正整数。Output 为每组测试数据输出它们的最小公倍数,每个测试实例的输出占一行。你可以假设最后的输出是一个32位的整数。Sample...原创 2018-07-31 10:27:34 · 1049 阅读 · 0 评论 -
杭电 2030 汉字统计
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2030 Problem Description 统计给定文本文件中汉字的个数。Input 输入文件首先包含一个整数n,表示测试实例的个数,然后是n段文本。Output 对于每一段文本,输出其中的汉字的个数,每个测试实例的输出占一行。[Hint:]从汉字机内码的特点考虑~Sampl...原创 2018-07-31 10:46:55 · 1018 阅读 · 0 评论 -
杭电 2032 杨辉三角
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2032 Problem Description 还记得中学时候学过的杨辉三角吗?具体的定义这里不再描述,你可以参考以下的图形: 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1Input 输入数据包含多个测试实例,每个测试实例的输入只包含一个正...原创 2018-07-31 11:00:05 · 970 阅读 · 0 评论 -
杭电 2072 单词数
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2072 Problem Description lily的好朋友xiaoou333最近很空,他想了一件没有什么意义的事情,就是统计一篇文章里不同单词的总数。下面你的任务是帮助xiaoou333解决这个问题。Input 有多组数据,每组一行,每组就是一篇小文章。每篇小文章都是由小写字母和空格组成...原创 2018-07-31 11:22:58 · 1200 阅读 · 0 评论 -
杭电 2057 A + B Again
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2057 Problem Description There must be many A + B problems in our HDOJ , now a new one is coming. Give you two hexadecimal integers , your task is to ...原创 2018-07-31 14:33:17 · 1152 阅读 · 0 评论 -
杭电 汉诺塔VI 1996
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1996 Problem Description n个盘子的汉诺塔问题的最少移动次数是2^n-1,即在移动过程中会产生2^n个系列。由于 发生错移产生的系列就增加了,这种错误是放错了柱子,并不会把大盘放到小盘上,即各柱 子从下往上的大小仍保持如下关系 : n=m+p+q a1>a2&g...原创 2018-07-31 16:06:41 · 1215 阅读 · 0 评论 -
杭电 Bone Collector 2602
题目链接:传送门 就是一道裸的01背包问题 背包九讲:https://blog.csdn.net/qq_37774171/article/details/81206480#include<iostream>#include<cstring>#include<algorithm>#include<cstdio>#define m...原创 2018-08-02 11:03:06 · 1029 阅读 · 0 评论 -
杭电 6027 Easy Summation
题目链接:点我 Problem Description You are encountered with a traditional problem concerning the sums of powers. Given two integers n and k. Let f(i)=ik, please evaluate the sum f(1)+f(2)+…+f(n). The prob...原创 2018-08-23 14:28:46 · 1188 阅读 · 0 评论 -
Codeforces Round #481 (Div. 3) B. File Name
题目链接:http://codeforces.com/contest/978/problem/B B. File Name time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output You can not just take the f...原创 2018-07-30 21:28:28 · 1020 阅读 · 0 评论 -
Codeforces Round #481 (Div. 3) A. Remove Duplicates
题目链接:http://codeforces.com/contest/978/problem/A A. Remove Duplicates time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output Petya has an array ...原创 2018-07-30 21:08:24 · 1031 阅读 · 0 评论 -
杭电 2026 首字母变大写
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2026 Problem Description 输入一个英文句子,将每个单词的第一个字母改成大写字母。Input 输入数据包含多个测试实例,每个测试实例是一个长度不超过100的英文句子,占一行。Output 请输出按照要求改写后的英文句子。Sample Input i like a...原创 2018-07-30 16:54:16 · 1036 阅读 · 0 评论 -
杭电 2005 第几天?
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2005 水题,直接看代码:#include<iostream>#include<cstring>#include<algorithm>#include<cmath>#define endl "\n"#define PI 3.141592...原创 2018-07-28 16:02:59 · 925 阅读 · 0 评论 -
杭电 2009 求数列的和
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2009直接上代码:#include<cstring>#include<iostream>#include<cstdio>#include<algorithm>#include<cmath>using namespace s...原创 2018-07-28 17:13:22 · 813 阅读 · 0 评论 -
杭电 2629 Identity Card
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2629 Problem Description Do you own an ID card?You must have a identity card number in your family’s Household Register. From the ID card you can get s...原创 2018-07-30 09:35:57 · 1719 阅读 · 0 评论 -
杭电 2012 素数判定
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2012 Problem Description 对于表达式n^2+n+41,当n在(x,y)范围内取整数值时(包括x,y)(-39<=x#include<iostream>#include<cstring>#include<cmath>#inclu...原创 2018-07-30 09:49:00 · 762 阅读 · 0 评论 -
杭电 2015 偶数求和
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2015 Problem Description 有一个长度为n(n<=100)的数列,该数列定义为从2开始的递增有序偶数,现在要求你按照顺序每m个数求出一个平均值,如果最后不足m个,则以实际数量求平均值。编程输出该平均值序列。Input 输入数据有多组,每组占一行,包含两个正整数n和m,...原创 2018-07-30 11:07:06 · 1049 阅读 · 0 评论 -
杭电 2016 数据的交换输出
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2016 Problem Description 输入n(n<100)个数,找出其中最小的数,将它与最前面的数交换后输出这些数。Input 输入数据有多组,每组占一行,每行的开始是一个整数n,表示这个测试实例的数值的个数,跟着就是n个整数。n=0表示输入的结束,不做处理。Output ...原创 2018-07-30 11:18:39 · 1152 阅读 · 0 评论 -
杭电 2022 海选女主角
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2022 Problem Description potato老师虽然很喜欢教书,但是迫于生活压力,不得不想办法在业余时间挣点外快以养家糊口。 “做什么比较挣钱呢?筛沙子没力气,看大门又不够帅…”potato老师很是无奈。 “张艺谋比你还难看,现在多有钱呀,听说还要导演奥运开幕式呢!你为什么不去娱...原创 2018-07-30 15:37:56 · 1065 阅读 · 0 评论 -
51 Nod 1046 A^B Mod C
题目链接:点我 给出3个正整数A B C,求A^B Mod C。 例如,3 5 8,3^5 Mod 8 = 3。 Input 3个正整数A B C,中间用空格分隔。(1 <= A,B,C <= 10^9) Output 输出计算结果 Input示例 3 5 8 Output示例 3裸题,快速幂#include<stdio.h>typedef...原创 2018-08-24 11:06:07 · 1184 阅读 · 0 评论