ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Grading Students
    해커랭크(HackerRank) 2018. 8. 19. 17:41
    반응형


    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
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    #include <bits/stdc++.h>
     
    using namespace std;
     
    /*
     * Complete the gradingStudents function below.
     */
    vector<int> gradingStudents(vector<int> grades) {
        /*
         * Write your code here.
         */
        vector<int> arr;
        int size = grades.size();
        for(int i = 0; i <size; i ++) {
            int cand = grades[i];
     
            int newGrade = ((cand / 5+ 1* 5;
            if(newGrade < 40) {
                arr.push_back(cand);
                continue;
            }
            
            if(newGrade - cand < 3
                arr.push_back(newGrade);
            else
                arr.push_back(cand);
        }
        return arr;
    }
     
    int main()
    {
        ofstream fout(getenv("OUTPUT_PATH"));
     
        int n;
        cin >> n;
        cin.ignore(numeric_limits<streamsize>::max(), '\n');
     
        vector<int> grades(n);
     
        for (int grades_itr = 0; grades_itr < n; grades_itr++) {
            int grades_item;
            cin >> grades_item;
            cin.ignore(numeric_limits<streamsize>::max(), '\n');
     
            grades[grades_itr] = grades_item;
        }
     
        vector<int> result = gradingStudents(grades);
     
        for (int result_itr = 0; result_itr < result.size(); result_itr++) {
            fout << result[result_itr];
     
            if (result_itr != result.size() - 1) {
                fout << "\n";
            }
        }
     
        fout << "\n";
     
        fout.close();
     
        return 0;
    }
    cs

    반응형

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

    Birthday Cake Candles  (0) 2018.08.19
    Time Conversion  (0) 2018.08.19
    Day 0: Mean, Median, and Mode  (0) 2018.08.19
    Breaking the Records  (0) 2018.08.19
    Birthday Chocolate  (0) 2018.08.19

    댓글

Designed by Tistory.