码迷,mamicode.com
首页 > 其他好文 > 详细

ACM学习历程—UESTC 1226 Huatuo's Medicine(数学)(2015CCPC L)

时间:2015-11-26 14:39:42      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:http://acm.uestc.edu.cn/#/problem/show/1226

题目就是构造一个对称的串,除了中间的那个只有1个,其余的两边都是对称的两个,自然答案就是2*n-1

代码:

技术分享
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <algorithm>
#include <set>
#include <map>
#include <queue>
#include <string>
#define LL long long

using namespace std;

int main()
{
    //freopen("test.in", "r", stdin);
    int n, T;
    scanf("%d", &T);
    for (int times = 1; times <= T; ++times)
    {
        scanf("%d", &n);
        printf("Case #%d: %d\n", times, 2*n-1);
    }
    return 0;
}
View Code

 

ACM学习历程—UESTC 1226 Huatuo's Medicine(数学)(2015CCPC L)

标签:

原文地址:http://www.cnblogs.com/andyqsmart/p/4997323.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!