hdoj 4572 Bottles Arrangement

简介: 虽然不知道怎么做,但是AC还是没有问题的。大概就是循环n次,从m加到m-n/2 除了最后一个数,每个都加两次。

虽然不知道怎么做,但是AC还是没有问题的。

大概就是循环n次,从m加到m-n/2 除了最后一个数,每个都加两次。

#include <stdio.h>
int main()
{
    int n, m;
    while (scanf("%d %d", &m, &n) != EOF)
    {
        int ans = 0;
        int t = m;
        for (int i = n; i != 1; i -= 2)
        {
            ans += t*2;
            t--;
        }
        ans += t;
        printf("%d\n", ans);
    }
    return 0;
}
目录
相关文章
|
Java C++
hdoj 1715 大菲波数
先java代码
59 1
HDOJ 2046 骨牌铺方格
HDOJ 2046 骨牌铺方格
152 0
HDOJ 2046 骨牌铺方格
HDOJ 1323 Perfection(简单题)
HDOJ 1323 Perfection(简单题)
134 0
HDOJ 2004 成绩转换
HDOJ 2004 成绩转换
101 0
|
Java 机器学习/深度学习
HDOJ 1303 Doubles(简单题)
Problem Description As part of an arithmetic competency program, your students will be given randomly generated lists of from 2 to 15 uniq...
990 0
HDOJ的题目分类
模拟题, 枚举 1002 1004 1013 1015 1017 1020 1022 1029 1031 1033 1034 1035 1036 1037 1039 1042 1047 1048 1049 1050 1057 1062 1063 1064 1070 1073 ...
1835 0
HDOJ 1214 圆桌会议
Problem Description HDU ACM集训队的队员在暑假集训时经常要讨论自己在做题中遇到的问题.每当面临自己解决不了的问题时,他们就会围坐在一张圆形的桌子旁进行交流,经过大家的讨论后一般没有解决不了的问题,这也只有HDU ACM集训队特有的圆桌会议,有一天你也...
865 0
|
人工智能 算法
HDOJ 3466 Proud Merchants
Problem Description Recently, iSea went to an ancient country. For such a long time, it was the most wealthy and powerful kingdom in the world.
973 0

热门文章

最新文章