-Code
from sys import stdin, stdout
n = int(stdin.readline())
f_list = list(map(int, stdin.readline().split()))
boss = sum(f_list) // 2
for f in f_list:
if f != boss:
stdout.write(str(f) + " ")
stdout.write(str(boss))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 24333번 СРЕЩА НА ПРИЯТЕЛИ (0) | 2024.04.12 |
---|---|
[백준/파이썬] 24312번 ДИНИ (0) | 2024.04.11 |
[백준/파이썬] 17924번 Cooking Water (0) | 2024.04.09 |
[백준/파이썬] 25246번 Brexiting and Brentering (0) | 2024.04.08 |
[백준/파이썬] 24311번 TRAVEL (1) | 2024.04.07 |