일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
Tags
- ConMatch
- mocov3
- dann paper
- 컴퓨터구조
- dcgan
- 최린컴퓨터구조
- Pseudo Label
- CycleGAN
- WGAN
- conjugate pseudo label paper
- mme paper
- CoMatch
- Meta Pseudo Labels
- UnderstandingDeepLearning
- semi supervised learnin 가정
- SSL
- shrinkmatch
- remixmatch paper
- shrinkmatch paper
- simclrv2
- GAN
- Entropy Minimization
- adamatch paper
- Pix2Pix
- BYOL
- cifar100-c
- tent paper
- 딥러닝손실함수
- CGAN
- 백준 알고리즘
Archives
- Today
- Total
Hello Computer Vision
백준 알고리즘 3003번 [킹 퀸 룩 비숍 나이트 폰] 파이썬 본문
https://www.acmicpc.net/problem/3003
각각의 체스 말들에 대해서 입력값들을 받고 필요하거나 제거할 개수들을 출력해야한다. 처음에는 반복문을 통해서 풀려고 했으나 더 번거로운 거 같아 그냥 따로따로 print 함수를 써서 활용했다.
k, q, l, b, n, p = map(int, input().split())
print(1 - k, end = " ")
print(1 - q, end = " ")
print(2 - l, end = " ")
print(2 - b, end = " ")
print(2 - n, end = " ")
print(8 - p)
참고로 나이트 knight 인거 알지만 k가 이미 있어 n으로 했습니당
'백준알고리즘 > 수학' 카테고리의 다른 글
백준 알고리즘 9506번 [약수들의 합] 파이썬 (0) | 2023.04.18 |
---|---|
백준 알고리즘 25206번 [너의 평점은] 파이썬 (0) | 2023.04.14 |