沈没したタイタニック号
3774 ワード
作成日:2022年1月21日午後5:12
インプリメンテーションコード
# 침몰하는 타이타닉
import sys
sys.stdin = open("input.txt", "rt")
n, m = map(int, input().split())
people = list(map(int, input().split()))
people.sort()
res = 0
while people:
if len(people) > 1:
if people[0] + people[-1] <= m:
res += 1
people.pop(0)
people.pop()
else:
res += 1
people.pop()
else:
res += 1
break
print(res)
Reference
この問題について(沈没したタイタニック号), 我々は、より多くの情報をここで見つけました https://velog.io/@lsj8706/침몰하는-타이타닉テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol