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;
    }
  • 相关阅读:
    vbs下载文件
    变量名自动变化
    VBS获得随机数,截图函数
    VBS定时关闭的弹窗
    VBS操作剪切板
    手动关闭端口
    win7,xp通用的打开文件浏览对话框的方法
    QTP全选页面的复选框
    SVN的使用
    工作中用到的前端内容整理
  • 原文地址:https://www.cnblogs.com/qscqesze/p/5348008.html
Copyright © 2011-2022 走看看