[백준]B2-8958

py_code·2020년 12월 23일
0

백준-브론즈2

목록 보기
4/9
post-custom-banner
t = int(input())
for _ in range(t):
    w = input().split('X')
    ans = 0
    for e in w:
        n = len(e)
        ans += n*(n+1)*0.5 # 1부터 n까지의 합의 공식 사용
    print(int(ans))    
profile
개발자를 꿈꿉니다.

0개의 댓글