Charlloss Dev

Charlloss'Dev Technology & TIL(Today I Learn) Blog

Very Big Sum

아직은 기초 알고리즘이지만, 간단한 로직 보다 더 효율적인 로직을 생각하려고 노력하다 보니 은근히 결과가 신경쓰인다.

Very Big Sum

https://www.hackerrank.com/challenges/a-very-big-sum/problem

Input Format

Output

Code

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 resultValue = 0;

        for (int i = 0; i < ar.length; i++) {
            resultValue += ar[i];
        }

        return resultValue;
    }

    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();
    }
}