알고리즘/해커랭크

[해커랭크002] A Very Big Sum

천사진수님 2019. 11. 7. 01:09
반응형

Practice>Algorithms>Warmup>A Very Big Sum

 

포인트

1. Long Type 길이

   - 2,147,483,648 ~ 2,147,483,647(-2의31제곱~2의31제곱-1)

   - 초기화할때 뒤에 L(대소문자구분x)

 

정답

import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.regex.*;

public class Solution {

    // Complete the aVeryBigSum function below.
    static long aVeryBigSum(long[] ar) {
        long sum =0;
        for (int i=0 ; i < ar.length; i++) sum += ar[i];
        return sum;
    }

    private static final Scanner scanner = new Scanner(System.in);

    public static void main(String[] args) throws IOException {
        BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(System.getenv("OUTPUT_PATH")));

        int arCount = scanner.nextInt();
        scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");

        long[] ar = new long[arCount];

        String[] arItems = scanner.nextLine().split(" ");
        scanner.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");

        for (int i = 0; i < arCount; i++) {
            long arItem = Long.parseLong(arItems[i]);
            ar[i] = arItem;
        }

        long result = aVeryBigSum(ar);

        bufferedWriter.write(String.valueOf(result));
        bufferedWriter.newLine();

        bufferedWriter.close();

        scanner.close();
    }
}

 

반응형

'알고리즘 > 해커랭크' 카테고리의 다른 글

[해커랭크003] Diagonal Difference  (0) 2019.11.07
[해커랭크001] Compare the Triplets  (0) 2019.11.07