COCI '07 Contest 3 #2 Oktalni

View as PDF

Submit solution


Points: 3
Time limit: 1.0s
Memory limit: 32M

Problem type

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.

0000
0011
0102
0113
1004
1015
1106
1117

Input Specification

The input contains a binary numeral. The number of digits will be less than 100, and the first digit will be 1.

Output Specification

Output the number in octal.

Sample Input 1

1010

Sample Output 1

12

Sample Input 2

11001100

Sample Output 2

314

Comments

There are no comments at the moment.