A - Rotate Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100100

問題文

33 つの数字 x,y,zx,y,z をこの順に並べてできる 33 桁の整数を xyzxyz と表すことにします。

どの桁も 00 でない 33 桁の整数 abcabc が与えられるので、abc+bca+cababc+bca+cab を求めてください。

制約

  • abcabc は どの桁も 00 でない 33 桁の整数

入力

入力は以下の形式で標準入力から与えられる。

abcabc

出力

答えを出力せよ。


入力例 1Copy

Copy
123

出力例 1Copy

Copy
666

123+231+312=666123+231+312=666 となります。


入力例 2Copy

Copy
999

出力例 2Copy

Copy
2997

999+999+999=2997999+999+999=2997 となります。

Score : 100100 points

Problem Statement

Let xyzxyz denote the 33-digit integer whose digits are xx, yy, zz from left to right.

Given a 33-digit integer abcabc none of whose digits is 00, find abc+bca+cababc+bca+cab.

Constraints

  • abcabc is a 33-digit integer abcabc none of whose digits is 00.

Input

Input is given from Standard Input in the following format:

abcabc

Output

Print the answer.


Sample Input 1Copy

Copy
123

Sample Output 1Copy

Copy
666

We have 123+231+312=666123+231+312=666.


Sample Input 2Copy

Copy
999

Sample Output 2Copy

Copy
2997

We have 999+999+999=2997999+999+999=2997.



2025-04-05 (Sat)
00:29:22 +00:00