zoukankan      html  css  js  c++  java
  • A. Soroban 暴力+水题

    A. Soroban
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    You know that Japan is the country with almost the largest 'electronic devices per person' ratio. So you might be quite surprised to find out that the primary school in Japan teaches to count using a Soroban — an abacus developed in Japan. This phenomenon has its reasons, of course, but we are not going to speak about them. Let's have a look at the Soroban's construction.

    Soroban consists of some number of rods, each rod contains five beads. We will assume that the rods are horizontal lines. One bead on each rod (the leftmost one) is divided from the others by a bar (the reckoning bar). This single bead is called go-dama and four others are ichi-damas. Each rod is responsible for representing a single digit from 0 to 9. We can obtain the value of a digit by following simple algorithm:

    • Set the value of a digit equal to 0.
    • If the go-dama is shifted to the right, add 5.
    • Add the number of ichi-damas shifted to the left.

    Thus, the upper rod on the picture shows digit 0, the middle one shows digit 2 and the lower one shows 7. We will consider the top rod to represent the last decimal digit of a number, so the picture shows number 720.

    Write the program that prints the way Soroban shows the given number n.

    Input

    The first line contains a single integer n (0 ≤ n < 109).

    Output

    Print the description of the decimal digits of number n from the last one to the first one (as mentioned on the picture in the statement), one per line. Print the beads as large English letters 'O', rod pieces as character '-' and the reckoning bar as '|'. Print as many rods, as many digits are in the decimal representation of number n without leading zeroes. We can assume that number 0 has no leading zeroes.

    Sample test(s)
    input
    2
    output
    O-|OO-OO
    input
    13
    output
    O-|OOO-O
    O-|O-OOO
    input
    720
    output
    O-|-OOOO
    O-|OO-OO
    -O|OO-OO
    int main() 
    {
        //freopen("in.txt","r",stdin);
        int n;
        while(cin>>n)
        {
            if(n == 0)
            {
                cout<<"O-|-OOOO"<<endl;
                continue;
            }
            while(n)
            {
                int tp = n%10;
                n/=10;
                if(tp<=4)
                {
                    cout<<"O-|";
                    repf(j,1,tp)
                        cout<<"O";
                    cout<<"-";
                    repf(j,tp+1,4)
                        cout<<"O";
                cout<<endl;
                }
                else
                {
                    cout<<"-O|";
                    tp-=5;
                    repf(j,1,tp)
                        cout<<"O";
                    cout<<"-";
                    repf(j,tp+1,4)
                        cout<<"O";
                    cout<<endl;           
                }
                    
            }
        }
        return 0;
    }
  • 相关阅读:
    微信小程序支付接口之Django后台
    wx.request 请求与django
    ubuntu16.04 安装使用meld及问题
    微信小程序上传单张或多张图片
    ip地址掩码和位数对应关系表、子网掩码、网络地址、主机地址-yellowcong
    公网IP地址就一定是A类地址和B类地址吗?那C类地址就一定是私有地址吗?
    太厉害了,终于有人能把TCP/IP协议讲的明明白白了!
    linux/shell/bash 自动输入密码或文本
    shell case例子
    spring 配置Value常量(不支持到static上)
  • 原文地址:https://www.cnblogs.com/DreamHighWithMe/p/3418529.html
Copyright © 2011-2022 走看看