zoukankan      html  css  js  c++  java
  • Codeforces 934 B.A Prosperous Lot

     
    B. A Prosperous Lot
     
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Apart from Nian, there is a daemon named Sui, which terrifies children and causes them to become sick. Parents give their children money wrapped in red packets and put them under the pillow, so that when Sui tries to approach them, it will be driven away by the fairies inside.

    Big Banban is hesitating over the amount of money to give out. He considers loops to be lucky since it symbolizes unity and harmony.

    He would like to find a positive integer n not greater than 1018, such that there are exactly k loops in the decimal representation of n, or determine that such n does not exist.

    loop is a planar area enclosed by lines in the digits' decimal representation written in Arabic numerals. For example, there is one loop in digit 4, two loops in 8 and no loops in 5. Refer to the figure below for all exact forms.

    Input

    The first and only line contains an integer k (1 ≤ k ≤ 106) — the desired number of loops.

    Output

    Output an integer — if no such n exists, output -1; otherwise output any such n. In the latter case, your output should be a positivedecimal integer not exceeding 1018.

    Examples
    input
    Copy
    2
    output
    462
    input
    Copy
    6
    output
    8080
     

    代码:
     1 //B
     2 #include<iostream>
     3 #include<cstring>
     4 #include<cstdio>
     5 #include<cmath>
     6 #include<algorithm>
     7 #include<queue>
     8 using namespace std;
     9 #define ll long long
    10 int main(){
    11     ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
    12     int n;
    13     cin>>n;
    14     if(n>36) cout<<-1<<endl;
    15     else{
    16         for(int i = 0;i < n/2;i++)
    17             cout<<8;
    18         if(n%2==1) cout<<6;
    19         cout<<endl;
    20     }
    21 }
  • 相关阅读:
    Oracle 手工创建awr快照,获取报告
    Oracle块修改跟踪功能
    Oracle 反向索引(反转建索引) 理解
    oracle聚簇表的理解 (转自:https://blog.csdn.net/gumengkai/article/details/51009345 )
    Fix the iOS code signing issue when using Jenkins
    ios系统crash文件分析
    python版本管理
    python requirements.txt
    android makefile protoc路径添加
    初识tflite源码
  • 原文地址:https://www.cnblogs.com/ZERO-/p/9723047.html
Copyright © 2011-2022 走看看