💡 Info
- 난이도: D2
- 시간 제한: 10개의 테스트 케이스를 합쳐서 30초
- 메모리 제한: 힙, 정적 메모리 합쳐서 256MB 이내, 스택 메모리 1MB 이내
3
3 17 1 39 8 41 2 32 99 2
22 8 5 123 7 2 63 7 3 46
6 63 2 3 58 76 21 33 8 1
#1 24
#2 29
#3 27
실제 풀이 시간 :10분
import java.util.*;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T;
T=sc.nextInt();
for(int test_case = 1; test_case <= T; test_case++)
{
int sum = 0;
for(int i=10; i>0; i--) {
int num = sc.nextInt();
sum += num;
}
System.out.println("#" + test_case + " " + Math.round(sum/10.0));
}
}
}
3
3 17 1 39 8 41 2 32 99 2
22 8 5 123 7 2 63 7 3 46
6 63 2 3 58 76 21 33 8 1
#1 200
#2 208
#3 121
실제 풀이 시간 : 12분
import java.util.*;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for(int test_case = 1; test_case <= T; test_case++)
{
int sum = 0;
for(int i=0; i<10; i++) {
int num = sc.nextInt();
if(num%2 == 1)
sum += num;
}
System.out.println("#" + test_case + " " + sum);
}
}
}