ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Birthday Chocolate
    해커랭크(HackerRank) 2018. 8. 19. 17:37
    반응형


    1. 문제


    2. 알고리즘

    키워드 - 구현


    3. 코드


    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
    32
    33
    34
    35
    36
    #include <bits/stdc++.h>
     
    using namespace std;
     
    int solve(int n, vector < int > s, int d, int m){
        // Complete this function
        int sol = 0;
        for(int i = 0; i < n-m+1; i ++) {
     
            int dist = i + m;
            int cand = ;
            for(int j = i; j <dist; j++) {
                cand = cand + s[j];
            }
     
            if (cand == d) {
                sol++;
            }
        }
        return sol;
    }
     
    int main() {
        int n;
        cin >> n;
        vector<int> s(n);
        for(int s_i = 0; s_i < n; s_i++){
           cin >> s[s_i];
        }
        int d;
        int m;
        cin >> d >> m;
        int result = solve(n, s, d, m);
        cout << result << endl;
        return 0;
    }
    cs

    반응형

    '해커랭크(HackerRank)' 카테고리의 다른 글

    Day 0: Mean, Median, and Mode  (0) 2018.08.19
    Breaking the Records  (0) 2018.08.19
    Divisible Sum Pairs  (0) 2018.08.19
    Migratory Birds  (0) 2018.08.19
    Bon Appétit  (0) 2018.08.19

    댓글

Designed by Tistory.