zoukankan      html  css  js  c++  java
  • April Fools Day Contest 2016 A. Da Vinci Powers

    A. Da Vinci Powers

    题目连接:

    http://www.codeforces.com/contest/656/problem/A

    Description

    The input contains a single integer a (0 ≤ a ≤ 35).

    Input

    Output a single integer.

    Output

    In the first line print "YES" (without quotes), if Polycarpus can perform the reorganisation and "NO" (without quotes) otherwise. If the answer is "YES" (without quotes), then in next n lines print m numbers — the heights of the remaining hay stacks. All the remaining non-zero values should be equal, represent a connected area and at least one of these values shouldn't be altered.

    If there are multiple answers, print any of them.

    Sample Input

    3

    Sample Output

    8

    Hint

    题意

    给你a,让你输出达芬奇幂

    题解:

    达芬奇这个智障把2^n算错了,他把2^13算错了

    算成8092了

    代码

    #include<bits/stdc++.h>
    using namespace std;
    long long a[]={1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8092, 16184, 32368, 64736, 129472, 258944, 517888, 1035776, 2071552, 4143104, 8286208, 16572416, 33144832, 66289664, 132579328, 265158656, 530317312, 1060634624, 2121269248, 4242538496, 8485076992, 16970153984, 33940307968};
    
    int main()
    {
        int n;
        scanf("%d",&n);
        cout<<a[n]<<endl;
    }
  • 相关阅读:
    Licp
    [持续更新]Python 笔记
    求 LCA 的三种方法
    一些题目(4)
    欧几里得算法与扩展欧几里得算法
    最近打的三场比赛的总结
    10day2
    10day1
    chrome谷歌浏览器插件制作简易教程
    nodejs net模块
  • 原文地址:https://www.cnblogs.com/qscqesze/p/5348008.html
Copyright © 2011-2022 走看看