• CF409D Big Data


    洛谷蓝题

    题目

    题意翻译

    输入一个n,输出上面的第n句话是否正确。正确输出1,反之输出0 Translated by @chen_zhe

    题目描述

    Little Petya wanted to give an April Fools Day present to some scientists. After some hesitation he decided to give them the array that he got as a present in Codeforces Round #153 (Div.2). The scientists rejoiced at the gift and decided to put some important facts to this array. Here are the first few of the facts:

    • The highest mountain above sea level in the world is Mount Everest. Its peak rises to 8848 m.
    • The largest board game tournament consisted of 958 participants playing chapaev.
    • The largest online maths competition consisted of 12766 participants.
    • The Nile is credited as the longest river in the world. From its farthest stream in Burundi, it extends 6695 km in length.
    • While not in flood, the main stretches of the Amazon river in South America can reach widths of up to 1100 km at its widest points.
    • Angel Falls is the highest waterfall. Its greatest single drop measures 807 m.
    • The Hotel Everest View above Namche, Nepal — the village closest to Everest base camp – is at a record height of 31962 m
    • Uranium is the heaviest of all the naturally occurring elements. Its most common isotope has a nucleus containing 146 neutrons.
    • The coldest permanently inhabited place is the Siberian village of Oymyakon, where the temperature of -68°C was registered in the twentieth century.
    • The longest snake held in captivity is over 25 feet long. Its name is Medusa.
    • Colonel Meow holds the world record for longest fur on a cat — almost 134 centimeters.
    • Sea otters can have up to 10000 hairs per square inch. This is the most dense fur in the animal kingdom.
    • The largest state of USA is Alaska; its area is 663268 square miles
    • Alaska has a longer coastline than all of the other 49 U.S. States put together: it is 154103 miles long.
    • Lake Baikal is the largest freshwater lake in the world. It reaches 1642 meters in depth and contains around one-fifth of the world’s unfrozen fresh water.
    • The most colorful national flag is the one of Turkmenistan, with 106 colors.

    输入输出格式

    输入格式:

    The input will contain a single integer between 1 and 16.

    输出格式:

    Output a single integer.

    输入输出样例

    输入样例#1: 复制
    1
    
    输出样例#1: 复制
    1
    
    输入样例#2: 复制
    7
    
    输出样例#2: 复制
    0

    分析
    这道题其实只是考知识,对,知识.......
    题解
    #include<bits/stdc++.h>
    using namespace std;
    string s="1001010111001010";
    int main()
    {
        int n;
        cin>>n;
        cout<<s[n-1];
        return 0;
    }
    
    
    
     
  • 相关阅读:
    oracle转义用单引号
    【转】plsql 永久注册码适用个版本
    winform datagridview某一列设为自动宽度
    Allow windows service to "Interact with desktop"
    Format a Hard Drive in Csharp C#格式化总结
    Lib New
    大嫂的HTML
    ASP.NET 分页控件
    linux搭建常用命令(运行jar,查看进程)
    如何用navicat连接linux服务器上的mysql以及重启服务
  • 原文地址:https://www.cnblogs.com/earth833/p/11230609.html
Copyright © 2020-2023  润新知