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 | 29 | 30 |
Tags
- JSON
- C-RNN-GAN:Continuous recurrent neural networkswith adversarial training
- Image Inpainting
- CelebA
- 이미지 복원
- Python
- 데이터 전처리
- Phase Map 이미지
- horse2zebra
- gan
- json 파일로 image 라벨링
- Generative Adversarial Networks
- CT 영상에서 U-Net 기반 변형가능 컨볼루션 GAN을이용한 잡음제거
- 백준
- 이미지 특징
- 논문리뷰
- 자체 데이터 제작
- 이미지파일 특성으로 폴더분류
- 2D 이미지 높이 측정
- AI 대회
- PAPER
- Generative Adversarial Nets
- mnist
- json 파일 정보 csv파일로 저장
- Coherent Semantic Attention for Image Inpainting
- 논문 리뷰
- labeling
- Phase Map
- Moire 이미지
- music data
Archives
- Today
- Total
Deep Learning through deep learning
백준 5565 영수증 본문
코드 해석
더보기
- 첫번째 줄에 책 10권의 합이 입력 = (A+B+C+D+E+F+G+H+I+J)
- 2-10번째 줄에 책 9권의 가격이 각각 입력
- 남은 한권의 가격을 알기 위해, 수식 (A+B+C+D+E+F+G+H+I+J)-(A+B+C+D+E+F+G+H+I)=J 사용
코드
#include <iostream>
#include <math.h>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int a; cin >> a;
int b;
for (int i = 0; i < 9; i++)
{
cin >> b;
a -= b;
}
cout << a;
}
'Baekjoon_algorithm_heuristic' 카테고리의 다른 글
백준 15820번 맞았는데 왜 틀리죠? (0) | 2023.02.02 |
---|---|
백준 23806번 골뱅이 찍기 - ㅁ (0) | 2023.02.02 |
백준 10992 별 찍기-17 (0) | 2023.02.02 |
백준 25630번 팰린드롬 소떡소떡 (0) | 2023.02.02 |
백준 2480번 주사위 세개 (2) | 2023.02.02 |