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
- music data
- labeling
- gan
- 논문리뷰
- Phase Map
- json 파일 정보 csv파일로 저장
- Coherent Semantic Attention for Image Inpainting
- Generative Adversarial Networks
- horse2zebra
- json 파일로 image 라벨링
- 자체 데이터 제작
- 이미지 특징
- PAPER
- 이미지 복원
- Phase Map 이미지
- C-RNN-GAN:Continuous recurrent neural networkswith adversarial training
- 이미지파일 특성으로 폴더분류
- Image Inpainting
- CT 영상에서 U-Net 기반 변형가능 컨볼루션 GAN을이용한 잡음제거
- CelebA
- mnist
- 2D 이미지 높이 측정
- Generative Adversarial Nets
- 백준
- 데이터 전처리
- Python
- JSON
- 논문 리뷰
- Moire 이미지
- AI 대회
Archives
- Today
- Total
Deep Learning through deep learning
백준 13752번 히스토그램 본문
Baekjoon Online Judge
Baekjoon Online Judge 프로그래밍 문제를 풀고 온라인으로 채점받을 수 있는 곳입니다.
www.acmicpc.net
코드 해석
더보기
- 첫줄에 숫자 N 주어지고, N개의 줄에 숫자 하나씩 주어짐
- 각 숫자 수만큼 '='출력해주고 줄바꿈
코드
#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 n, k;
cin >> n;
for (int i = 0; i < n; i++)
{
cin >> k;
for (int i = 0; i < k; i++)
{
cout << "=";
}
cout << endl;
}
}'Baekjoon_algorithm_heuristic' 카테고리의 다른 글
| 백준 10991번 별 찍기-16 (0) | 2023.02.02 |
|---|---|
| 백준 27159번 노 땡스! (0) | 2023.02.02 |
| 백준 10708번 크리스마스 파티 (0) | 2023.02.02 |
| 백준 15820번 맞았는데 왜 틀리죠? (0) | 2023.02.02 |
| 백준 23806번 골뱅이 찍기 - ㅁ (0) | 2023.02.02 |