← Back to List
23813번: 회전 ↗
Solutions
Python 3
88 B | 88 chars
s = input() ans = 0 for i in range(len(s)): ans += int(s) s = s[1:]+s[0] print(ans)