일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 문자열
- NEXT
- DP
- pytorch
- 자바스크립트
- c++
- 우선 순위 큐
- 세그먼트 트리
- 이분 탐색
- lazy propagation
- 조합론
- 가끔은 말로
- 알고리즘
- BFS
- 분할 정복
- 회고록
- 2023
- 플로이드 와샬
- tensorflow
- dropout
- 미래는_현재와_과거로
- back propagation
- Overfitting
- 크루스칼
- 가끔은_말로
- 다익스트라
- object detection
- dfs
- 백트래킹
- 너비 우선 탐색
Archives
- Today
- Total
Doby's Lab
백준 23572번: 승택이의 은밀한 비밀번호 (Python) 본문
https://www.acmicpc.net/problem/25372
Solved By:
T = int(input())
arr = ['' for i in range(0, T)]
for i in range(0, T):
arr[i] = input()
for i in range(0, T):
if len(arr[i]) >= 6 and len(arr[i]) <= 9:
print('yes')
else:
print('no')
728x90
'Code about AI > Python' 카테고리의 다른 글
Python의 Iterator에 대하여 (0) | 2023.01.09 |
---|---|
파이썬의 클래스(Class)에 대하여 (2) | 2022.12.08 |
Python, Adj List, Global Variable, Recursive call (0) | 2022.07.07 |
코드업 Python 기초 100제 정리 (0) | 2022.06.26 |
[파이썬] 백준 1350번: 진짜 공간, 리스트(List) (0) | 2022.03.01 |