E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
杭电2546
杭电
1019 Least Common Multiple
* 日期:2011-2-9 * 作者:SJF * 题号:
杭电
·
2015-10-31 11:52
com
杭电
1017 A Mathematical Curiosity
nbsp;* 日期:2011-2-9 * 作者:SJF * 题号:
杭电
·
2015-10-31 11:52
Math
杭电
1018 Big Number
nbsp;* 日期:2011-2-9 * 作者:SJF * 题号:
杭电
·
2015-10-31 11:52
number
杭电
2014
1 #include <iostream> 2 #include <iomanip> 3 using namespace std; 4 5 int main() 6 { 7 int n; 8 double max,min,sum,aver; 9 double a[110] = {0}; 10 while
·
2015-10-31 11:11
杭电
杭电
2012
1 #include <iostream> 2 3 using namespace std; 4 5 int is_prime(int ); 6 int main() 7 { 8 int x,y,val; 9 while (cin>>x>>y && x||y) 10 { 11
·
2015-10-31 11:11
2012
杭电
2007
1 #include <iostream> 2 using namespace std; 3 4 int ji(int); 5 int ou(int); 6 int main() 7 { 8 int m,n,x,y; 9 while (cin >> m >> n) 10 { 11 i
·
2015-10-31 11:10
2007
杭电
2001
#include <iostream> #include <iomanip> #include <cmath> using namespace std; int main() { double x1,y1,x2,y2; double result; while (cin>>x1>>y1>>
·
2015-10-31 11:10
杭电
杭电
2000
#include <iostream> using namespace std; #define MAXN 4 int main() { //char arr[MAXN] = {0}; char arr[MAXN]; memset(arr,0,MAXN); while (cin >> arr) {
·
2015-10-31 11:10
杭电
杭电
oj 1002
1 #include <iostream> 2 #include <algorithm> 3 using namespace std; 4 int nCases; 5 int m[1001], n[1001]; 6 char a[1001], b[1001]; 7 int main() 8 { 9 scanf("%d&qu
·
2015-10-31 11:10
杭电
杭电
2005
1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 int main() 6 { 7 int year,month,day; 8 9 char a; 10 int days_of_month1[13] = {0,31,29,3
·
2015-10-31 11:10
杭电
杭电
2004
1 #include <iostream> 2 using namespace std; 3 char grand(int); 4 int main() 5 { 6 int n; 7 while (cin>> n) 8 { 9 if (n>100 || n<0) 10 {
·
2015-10-31 11:10
杭电
杭电
oj 1001
#include<iostream> using namespace std; int main() { int n = 0, sum; while (cin>>n) { sum = 0; // 这里要清零 for (int i =0; i <= n; i++) {
·
2015-10-31 11:10
杭电
杭电
2035人见人爱A^B
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2035 #include <cstdlib> #include <iostream> #include <math.h> using namespace std; int main(int argc, char *argv[]) { int
·
2015-10-31 11:16
杭电
杭电
2034人见人爱A-B
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2034 #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { int m,n; int A[100]={
·
2015-10-31 11:15
杭电
杭电
2031进制转换
#include <cstdlib> #include <iostream> #include <math.h> using namespace std; int main(int argc, char *argv[]) { int n,r; int Remainder[100]={0}; while(cin>
·
2015-10-31 11:15
进制转换
杭电
2033人见人爱A+B
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2033 #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { int n,residue,quotient;
·
2015-10-31 11:15
杭电
杭电
2030汉字统计(已解决)
#include "stdio.h" int main(int argc, char* argv[]){ int index,sum; char c; scanf("%d",&index); getchar
·
2015-10-31 11:15
汉字
杭电
2029
#include <cstdlib>#include <iostream>#include <string>using namespace std; int main(int argc, char *argv[]){ int flag,n,len; char str[50]; &
·
2015-10-31 11:15
杭电
杭电
2032杨辉三角
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2032 做该题时,开始就给出Presentation Error ( 程序总体正确,但是输出格式不符合要求!注意程序中的空格、空行) 开始的代码: #include <cstdlib> #include <iostream> using namespac
·
2015-10-31 11:15
杭电
杭电
2028
#include <cstdlib>#include <iostream>using namespace std;int main(int argc, char *argv[]){ int n; int dividend,max,a[100]={0}; &
·
2015-10-31 11:14
杭电
杭电
2027
#include <cstdlib>#include <iostream>#include <string>using namespace std;int main(int argc, char *argv[]){ int A,E,I,O,U,n,len; char str[100];&nb
·
2015-10-31 11:14
杭电
杭电
2025题
#include <cstdlib>#include <iostream>#include <string>using namespace std; int main(int argc, char *argv[]){ int len; char c; c
·
2015-10-31 11:14
杭电
杭电
2026题答案
#include <cstdlib>#include <iostream>#include <string>using namespace std; int main(int argc, char *argv[]){ int len; char str[100]; &
·
2015-10-31 11:14
杭电
HDOJ---
2546
饭卡[DP01背包问题]
饭卡 Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4160 Accepted Submission(s): 1410 Problem Descri
·
2015-10-31 10:27
dp
2015
杭电
多校(I)改题表
2015
杭电
多校(I)改题表 题号 HDU 类型 赛时 分配 最终 题解 1001 5288 简单题 √ - √ 1002 5289 简单题 √ - √  
·
2015-10-31 10:31
杭电
2015
杭电
多校(II)改题表
2015
杭电
多校(II)改题表 题号 HDU 类型 赛时 分配 最终 题解 1001 5300 ?
·
2015-10-31 10:31
杭电
HDU_2021——最少RMB问题
Problem Description 作为
杭电
的老师,最盼望的日子就是每月的8号了,因为这一天是发工资的日子,养家糊口就靠它了,呵呵 但是对于学校财务处的工作人员来说,这一天则是很忙碌的一天,财务处的小胡老师最近就在考虑一个问题
·
2015-10-31 10:58
HDU
杭电
2019
1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 int a[110] = {0};//已经排好的 7 int n,m; 8 while (cin>>n>>m && n||m) 9 { 10
·
2015-10-31 10:15
杭电
杭电
2024
1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 int main() 6 { 7 int n; 8 string str; 9 int flag; 10 while (cin>>n) 11 {
·
2015-10-31 10:15
杭电
杭电
2025
1 #include <iostream> 2 #include <string> 3 using namespace std; 4 5 int main() 6 { 7 string str=""; 8 string str2=""; 9 char max; 10
·
2015-10-31 10:15
杭电
恒生电子面试过程纪录
13:00点开始面试,7 Candidates,5
杭电
,2理工。 一面,HR。 1.自我介绍,2M。感觉说的不好,没有条理,没掌握好时间。 2.HR问有谁知
·
2015-10-31 10:24
面试
杭电
胜利大逃亡续
Ignatius再次被魔王抓走了(搞不懂他咋这么讨魔王喜欢)…… 这次魔王汲取了上次的教训,把Ignatius关在一个n*m的地牢里,并在地牢的某些地方安装了带锁的门,钥匙藏在地牢另外的某些地方。刚开始Ignatius被关在(sx,sy)的位置,离开地牢的门在(ex,ey)的位置。Ignatius每分钟只能从一个坐标走到相邻四个坐标中的其中一个。魔王每t分钟回地牢视察一次,若发现Ignatius不
·
2015-10-31 10:24
杭电
杭电
2043密码
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2043 感觉自己读题太不认真啦! 第一次没有考虑密码的长度。欠揍······· AC代码: #include <cstdlib> #include <iostream>
·
2015-10-31 09:12
杭电
杭电
2042不容易系列之二
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2042 这道题是一个递归题! #include <cstdlib> #include <iostream> using namespace std; int f(int n) { if(n==
·
2015-10-31 09:12
杭电
杭电
2039三角形
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2039 这道题提交了五次才AC,可见我的数学功底太差啦! #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) {
·
2015-10-31 09:12
杭电
杭电
2040亲和数
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2040 #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { int m; cin>
·
2015-10-31 09:12
杭电
杭电
2054A == B ?(未解决 坑爹)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2054 开始还以为这题放在这,太那个了,结果无语······· 提交两次没有AC,坑爹·······&m
·
2015-10-31 09:12
==
杭电
2052Picture
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2052 本题就是一个构造图形的问题: #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { char str[7
·
2015-10-31 09:12
杭电
杭电
2051Bitset
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2051 进制转换问题: #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { int n; int a
·
2015-10-31 09:12
bitset
杭电
ACM 题目分类
近期做
杭电
题,就从网上搜了相关的题目分类的日志,具体正确与否,不清楚!
·
2015-10-31 09:11
ACM
水题日记
一定要相信水题真的很水 POJ-
2546
1 #include<iostream> 2 #include<stdio.h> 3 #include<cmath
·
2015-10-31 09:21
水题
何去何从
前几天和一个
杭电
的哥们聊天,说了说他们学校集训的事,他们暑假放一周,隔壁班的周天涯大一的时候就在他们学校的oj上ac了200题,我问他,是不是周天涯把他的女友培养成队员的时候,他说:女队那几个都是极品&
·
2015-10-31 09:20
hdu 1097 A hard puzzle(快速幂取模模板题)
杭电
怎么不认识long long了??改成__int64就对了。。
·
2015-10-31 09:37
HDU
HDU
2546
饭卡
简单0-1背包 #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> using namespace std; const int maxn=1000+10; int A[maxn],dp[50000+10]; int main()
·
2015-10-31 09:29
HDU
杭电
OJ 提交代码需要注意的问题
杭电
acm 提交代码需要注意的问题 1. 用 Java 的时候类名请用 Main 2.
·
2015-10-31 09:34
代码
胜利大逃亡(
杭电
hdu1253)bfs简单题
胜利大逃亡 Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 21759 Accepted Submiss
·
2015-10-31 09:31
HDU
hdu
2546
01背包
把最贵的先留着最后再买 View Code #include<stdio.h>#include<string.h>int dp[1010];int p[1010];int max(int a,int b){ return a>b?a:b;}int main(){ int n,m,i,j,pos; while(scanf("%d&
·
2015-10-31 08:12
HDU
杭电
1019 Least Common Multiple(已解决)
以下代码不知道错哪了? #include <cstdlib> #include <iostream> using namespace std; int main(int argc, char *argv[]) { int m,n; int str[100]={0}; cin>>n; while(n--)
·
2015-10-30 14:21
com
放大的X 【
杭电
-2655】 附题
/* 放大的X Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 8866 Accepted Submission(s): 2678 Problem Descriptio
·
2015-10-30 14:30
杭电
杭电
2188--悼念512汶川大地震遇难同胞——选拔志愿者(巴什博弈)
悼念512汶川大地震遇难同胞——选拔志愿者 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 6756 Accepted Submission(s): 4
·
2015-10-30 14:43
杭电
上一页
77
78
79
80
81
82
83
84
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他