큰 수를 더하는 문제다.
C/C++/Java long int형을 사용하면 된다고 한다.
long aVeryBigSum(int ar_count, long* ar) {
long long int sum = 0;
for(int i=0; i<ar_count; i++){
sum += ar[i];
}
return sum;
}
long long int형을 썼는데 long int형으로도 가능하다.
'HackerRank > Algorithms' 카테고리의 다른 글
[HackerRank] Implementation > Cats and a Mouse (0) | 2021.10.04 |
---|---|
[HackerRank] Implementation > Bill Division (0) | 2021.09.26 |
[HackerRank] Implementation > The Hurdle Race (0) | 2021.09.19 |
[HackerRank] Sorting > Running Time of Algorithms (0) | 2021.09.19 |
[HackerRank] Implementation > Divisible Sum Pairs (0) | 2021.09.12 |