일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- c#
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- github
- 프로그래머스 월간 코드 챌린지
- WPF
- Python
- 프로그래머스 코딩 테스트 연습
- 프로그래머스 코딩테스트 연습문제
- Word Cloud
- 디자인 패턴
- 파이썬
- terraform
- github actions
- 프로그래머스 월간 코드 챌린지 시즌1
- 스코페2021
- Codeforces
- git
- 브랜디
- 애드센스
- pycharm
- Firefox
- 바이오데이터 엔지니어
- Spring Boot
- 클린 코드
- 프로그래머스 코딩테스트 연습
- PostgreSQL 설치 시 에러
- PostgreSQL
- heroku
- FastAPI
- selenium
Archives
- Today
- Total
프로그래밍 연습하기
Suborrays 본문
반응형
Codeforces Round #663 (Div. 2)
A. Suborrays
https://codeforces.com/contest/1391/problem/A
문제 전문은 위 링크에서 확인하실 수 있습니다.
# https://codeforces.com/contest/1391/problem/A
t = int(input())
for _ in range(t):
n = int(input())
print(" ".join([str(i) for i in range(1,n+1)]))
문제를 보니까
그냥 오름차순으로 하면 조건을 만족해서 오름차순으로 출력했습니다.
반응형
'Codeforces' 카테고리의 다른 글
New Colony (0) | 2021.02.09 |
---|---|
Space Navigation (0) | 2021.02.06 |
Hotelier (0) | 2021.02.03 |
Wrong Subtraction (0) | 2021.02.03 |
Nezzar and Lucky Number (0) | 2021.01.31 |
Comments