Hashmat the Brave Warrior

Hashmat the Brave Warrior

XX自己有士兵a人, 敌军有士兵b人,自己的士兵永远比敌军少, 求对方比自己多多少人。       (虽说要从头刷,但是这样的还是太水了吧 2333333

喜闻乐见的错了因为2^32爆了int。。。These two numbers in each line denotes the number of soldiers in Hashmat‘s army and his opponent‘s army or vice versa

1 #include <cstdio>
2 int main() {
3      long long a, b;
4      while (scanf("%lld%lld", &a, &b) != EOF) {
5          long long ans = b - a > 0 ? b - a : a - b;
6          printf("%lld\n", ans);
7      }
8      return 0;
9 }

Rotating Sentences

把一篇文章顺时针旋转90° 看起来挺简单操作起来有点难度。。。               关键的地方在于如果是文章结尾,用空格补全    (读题的时候没读出这个意思)

#include <cstdio>
#include <cstring>
const int N = 110;
char mapp[N][N];
int len[N];

int main() {
    //freopen("in.txt", "r", stdin);
    int i = 0, maxlen = 0;
    memset(mapp, ‘\0‘, sizeof(mapp));
    while (gets(mapp[i]) != NULL) i++;
    for (int j = 0; j < i; j++) {
        len[j] = strlen(mapp[j]);
        maxlen = maxlen > len[j] ? maxlen : len[j];
    }
    for (int j = 0; j < maxlen; j++) {
        for (int k = i-1; k >= 0; k--) {
            if (j >= len[k]) putchar(‘ ‘);
            else putchar(mapp[k][j]);
        }
        puts("");
    }

    return 0;
}

时间: 2024-10-22 12:19:12

Hashmat the Brave Warrior的相关文章

UVA10055 Hashmat the Brave Warrior

问题链接:UVA10055 Hashmat the Brave Warrior. 问题简述:输入两个数,计算其差的绝对值. 问题分析:(略). 程序说明:写程序,不是要写得简单,而是要写得极其简单.也可以写一个带参数的宏定义来计算差的绝对值,这样的宏别的地方也可以使用. AC的C语言程序如下: /* UVA10055 Hashmat the Brave Warrior */ #include <stdio.h> int main(void) { long long a, b; while(sc

10055 - Hashmat the Brave Warrior

#include<stdio.h> #include<string.h> #include<math.h> #include<algorithm> using namespace std; //typedef __int64 lld; typedef long long lld; int main() { lld n,m,ans; //while(scanf("%I64d%I64d",&n,&m)!=EOF) while(

10055 - Hashmat the Brave Warrior &amp; 各数据类型所占字节数 (C语言)

Problem A Hashmat the brave warrior Input: standard input Output: standard output Hashmat is a brave warrior who with his group of young soldiers moves from one place to another to fight against his opponents. Before fighting he just calculates one t

UVA题目分类

题目 Volume 0. Getting Started 开始10055 - Hashmat the Brave Warrior 10071 - Back to High School Physics 10300 - Ecological Premium 458 - The Decoder 494 - Kindergarten Counting Game 414 - Machined Surfaces 490 - Rotating Sentences 445 - Marvelous Mazes

2016-the brave never die

2016年最后一天工作日了,由于这段时间一直忙于春节项目没时间写点关于2016年的总结,回忆一下,2016年其实还有很多事情没做好,究其原因,感觉是因为对于2016年没有做任何的规划和计划,就凭着一股意气就离开了一份安稳的工作,但是随之而来的是我看到更多对未来的未知,遇到了她又让我对未来有着无限憧憬,不管未来如何-the brave  never die,在此,要对2017年做一下规划,将年目标完成,或许到2017年末,2018年初,再回忆一下,会感觉到很充实. 对于2017年,有很多要做的事情

第二十八章 springboot + zipkin(brave定制-AsyncHttpClient)

brave本身没有对AsyncHttpClient提供类似于brave-okhttp的ClientRequestInterceptor和ClientResponseInterceptor,所以需要我们定制,而ServerRequestInterceptor和ServerResponseInterceptor是在BraveServletFilter部分直接指定就好了(这在任何client技术下都可以复用). 实际上,ClientRequestInterceptor和ClientResponseIn

HDU 1846 —— Brave Game

Brave Game Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Problem Description 各位勇敢者要玩的第一个游戏是什么呢?很简单,它是这样定义的:1.  本游戏是一个二人游戏;2.  有一堆石子一共有n个:3.  两人轮流进行;4.  每走一步可以取走1…m个石子:5.  最先取光石子的一方为胜: 如果游戏的双方使用的都是最优策略,请输出哪个人能赢. I

hdu 1846 Brave Game 博弈

点击打开链接链接 Brave Game Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 6903    Accepted Submission(s): 4636 Problem Description 十年前读大学的时候,中国每年都要从国外引进一些电影大片,其中有一部电影就叫<勇敢者的游戏>(英文名称:Zathura),一直到现在,我

hdu 1846 Brave Game (巴什博弈 最简单的博弈水题)

Brave Game Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 6434    Accepted Submission(s): 4294 Problem Description 十年前读大学的时候,中国每年都要从国外引进一些电影大片,其中有一部电影就叫<勇敢者的游戏>(英文名称:Zathura),一直到现在,我依然对于电影中的部分