A1336.[COCI-2007_2008-contest3]#4 OKTALNI
普及+/提高
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
Slavko is learning about different numeral systems. Slavko is not the brightest when it comes to math, so he is starting out converting binary numerals to octal. The algorithm Slavko uses is this:
• Pad the binary numeral with zeros on the left until the number of digits is divisible by three.
• Group adjacent binary digits into groups of 3 digits.
• Replace each group of binary digits with the corresponding octal digit (as in the table on the right).
Write a program that converts a binary numeral to octal so that Slavko can verify his results.
000 0 001 1 010 2 011 3 100 4 101 5 110 6 111 7
输入格式
The input contains a binary numeral. The number of digits will be less than 100, and the first digit will be
1.
输出格式
Output the number in octal.
输入输出样例
输入#1
1010
输出#1
12
输入#2
11001100
输出#2
314