일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 설치
- 알고리즘
- 오픈한글
- ubuntu
- 자바스크립트
- 토네이도
- 백준
- Python
- AWS
- 자료형
- 프레임워크
- 배열
- 저지
- 연결
- 파이썬
- BAEKJOON
- MongoDB
- 이클립스
- Framework
- r script
- spring
- mariadb
- OrientDB
- r
- API
- Java
- Judge
- 연동
- online
- Tornado
Archives
- Today
- Total
맛동산
(파이썬)백준 알고리즘 1966번 프린터 큐 본문
백준 알고리즘 저지 1966번 문제 (https://www.acmicpc.net/problem/1966)
for _ in range(int(input())): array_size, index = map(int, input().split(' ')) que = list(map(int, input().split(' '))) chk = [0 for _ in range(array_size)] chk[index] = 'T' count = 0 while True: if que[0] == max(que): count += 1 if chk[0] == 'T': print(count) break else: que.pop(0) chk.pop(0) else: que.append(que.pop(0)) chk.append(chk.pop(0))
'파이썬 > 알고리즘' 카테고리의 다른 글
(파이썬)백준 알고리즘 1978번 소수 찾기 (0) | 2017.11.03 |
---|---|
(파이썬)백준 알고리즘 1932번 숫자삼각형 (0) | 2017.05.29 |
(파이썬)백준 알고리즘 1929번 소수 구하기 (0) | 2017.05.29 |
(파이썬)백준 알고리즘 1924번 2007년 (0) | 2017.05.29 |
(파이썬)백준 알고리즘 1912번 연속합 (0) | 2017.05.29 |
Comments