Acms
No posts in this language here yet.
- POJ 2028 When Can We Meet?题目 源地址: http://poj.org/problem?id=2028 理解 一边输入一边记录开会最多且最近的那天。 代码 #incl...1 min
- POJ 2017 Speed Limit题目 源地址: http://poj.org/problem?id=2017 理解 一道比较简单的模拟,跨项累加。 代码 #include ...1 min
- POJ 2000 Gold Coins题目 源地址: http://poj.org/problem?id=2000 理解 求N天得到多少个金币,第一天得到1个,第二、三天得到2个...1 min
- POJ 1799 Yeehaa!题目 源地址: http://poj.org/problem?id=1799 理解 借用某大神图: 代码 #include < iostre...1 min
- POJ 1731 Orders题目 源地址: http://poj.org/problem?id=1731 理解 全排列的简单运用 代码 #include < iostr...1 min
- POJ 1658 Eva's Problem题目 源地址: http://poj.org/problem?id=1658 理解 额,水题一枚,直接算就好 代码 #include < c...1 min
- POJ 1604 Just the Facts题目 源地址: http://poj.org/problem?id=1604 理解 只需要截取后面五位,避免超过int的范围 代码 #inc...1 min
- POJ 1575 Easier Done Than Said?题目 源地址: http://poj.org/problem?id=1575 理解 运用三种标记,分别标记三种情况。对每一次字符读入均进行判...1 min
- POJ 1565 Skew数题目 源地址: http://poj.org/problem?id=1565 理解 不难,按照规则计算即可,注意大数的处理。 代码 #inc...1 min
- POJ 1552 Doubles题目 源地址: http://poj.org/problem?id=1552 理解 直接开一个数组,两个循环判断后一个数是不是前一个数的两倍...1 min