Skip to content

Commit d699cc2

Browse files
committed
[2023-12-27] SWEA 1984번 풀이
1 parent bbe3df2 commit d699cc2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

SWEA/Difficulty_2/SWEA_1984.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
t = int(input())
2+
for tc in range(1, t + 1):
3+
arr = sorted(map(int, input().split()))
4+
result = round(sum(arr[1:9]) / 8)
5+
print(f'#{tc} {result}')

0 commit comments

Comments
 (0)