상세 컨텐츠

본문 제목

[HackerRank] Simple Array Sum (Algorithm)

PROGRAMMING/Algorithm

by koharin 2021. 1. 4. 23:50

본문

728x90
반응형

알고리즘 문제

배열 모든 원소의 합을 출력하면 된다.

#!/bin/python3

import os
import sys

#
# Complete the simpleArraySum function below.
#
def simpleArraySum(ar):
    #
    # Write your code here.
    #
    return sum(ar)

if __name__ == '__main__':
    fptr = open(os.environ['OUTPUT_PATH'], 'w')

    ar_count = int(input())

    ar = list(map(int, input().rstrip().split()))

    result = simpleArraySum(ar)

    fptr.write(str(result) + '\n')

    fptr.close()
728x90
반응형

관련글 더보기