티스토리 뷰

출처 : https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWS2dSgKA8MDFAVT


#include <iostream>

#include <algorithm>
#include <string>
using namespace std;
 
int np, p;
string s;
 
int main()
{
    int T, t = 1;
    cin >> T;
    while (T--)
    {
        np = 0; p = 0;
        cin >> s;
        for (int i = 0; i < s.length();i++)
        {
            if ((s[i]-48>0) && i > p) { np += (i - p); p += (i-p); }
            p +=(s[i]-48);
        }
        cout << "#" << t++ << " " << np << endl;
    }
    return 0;
}


'알고리즘 > SWEA' 카테고리의 다른 글

[SWEA 4672] 수진이의 팰린드롬  (0) 2018.07.29
[SWEA 4796] 의석이의 우뚝 선 산  (0) 2018.07.26
[SWEA 4747] 사막에서 만난 지니  (0) 2018.07.26
[SWEA 2117] 홈 방범 서비스  (0) 2018.07.23
[SWEA 4012] 요리사  (0) 2018.07.23
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
글 보관함