Notice
Recent Posts
Recent Comments
Link
์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- jvm ๋ฐ๋ฐ๋ฅ๊น์ง ํํค์น๊ธฐ
- ์๋ฐ
- private subnet ec2 ๋ก์ปฌ ์ ์
- ํ๋ก๊ทธ๋๋จธ์ค
- Kafka
- s3 log ์ ์ฅ
- aws saa ํฉ๊ฒฉ
- ์ ํจ์ค ์ค์ผ์ค๋ฌ
- redis ํ ์คํธ์ฝ๋
- docker-compose kafka
- ํ๋ก๊ทธ๋๋จธ์ค ํฉ์นํ์์๊ธ
- docker compose
- Codedeploy ์ค๋ฅ
- JPA
- ์๋ฒ ํฐ์ง๋ ๋์ปค ์ฌ์คํ
- AWS Certified Solutions Architect - Associate
- s3 ์ด๋ฏธ์ง ์ ์ฅ
- ํ๋ก๊ทธ๋๋จธ์ค ์ปฌ๋ฌ๋ง๋ถ
- ๋ค์ค ์ปจํ ์ด๋
- redis ์กฐํ
- ์ ํจ์ค ๋น๋ ์ค๋ฅ
- docker ps -a
- docker
- ์คํํ๋ ๋ฏธ์ค
- ํ์ดํผ๋ฐ์ด์
- s3 ์ด๋ฏธ์ง ๋ค์ด๋ก๋
- Entity
- aws ์ฟ ํฐ
- nGrinder
- prod docker-compose
Archives
- Today
- Total
๐๐ข๐๐ โ๐๐๐ ๐๐๐ก๐๐ ๐๐๐๐โง
[Python] ๋ฐฑ์ค 11650 & ๋ฐฑ์ค 2798 & ๋ฐฑ์ค 5597 ๋ณธ๋ฌธ
๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ด๐ป/[๐๐ฒ๐ญ๐ก๐จ๐ง] ๐๐ฅ๐ ๐จ๐ซ๐ข๐ญ๐ก๐ฆ
[Python] ๋ฐฑ์ค 11650 & ๋ฐฑ์ค 2798 & ๋ฐฑ์ค 5597
๐คRyusun๐ค 2023. 6. 6. 22:11# ๋ฐฑ์ค 11650
n = int(input())
array = []
for _ in range(n):
coord = list(map(int, input().split(' ')))
array.append(coord)
print(array)
array.sort()
for i in array:
print(i[0], i[1])
# ๋ฐฑ์ค 2798
from itertools import combinations
n, m = map(int, input().split())
cards = list(map(int, input().split()))
three_cards = list(combinations(cards, 3))
max_sum = 0
for i in three_cards:
if sum(i)> m:
continue
max_sum = max(max_sum, sum(i))
print(max_sum)
# ๋ฐฑ์ค 5597
students = {}
for i in range(1, 31):
students[i] = 0
for _ in range(28):
n = int(sys.stdin.readline())
students[n] = 1
for x,y in students.items():
if y == 0:
print(x)
'๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ด๐ป > [๐๐ฒ๐ญ๐ก๐จ๐ง] ๐๐ฅ๐ ๐จ๐ซ๐ข๐ญ๐ก๐ฆ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Python] ๋ฐฑ์ค 1283 & ๋ฐฑ์ค 3055 (0) | 2023.06.10 |
---|---|
[Python] ๋ฐฑ์ค 11004 & ๋ฐฑ์ค 10282 (0) | 2023.06.09 |
[Python] ๋ฐฑ์ค 1302 & ๋ฐฑ์ค 1543 (0) | 2023.06.05 |
[Python] ๋ฐฑ์ค 18352 (0) | 2023.06.04 |
[Python] ๋ฐฑ์ค 1966 & ํ๋ก๊ทธ๋๋จธ์ค ๊ธฐ๋ฅ๊ฐ๋ฐ (0) | 2023.06.03 |