일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Combination
- 11057
- 1260
- itertools
- 홈화면
- 나머지
- 안드로이드
- 매일11시
- lcm
- LCS
- 11기
- Android
- 괄호
- 11053
- 6603
- 최소공배수
- 9095
- 앱
- 1182
- expo
- 11054
- 코틀린
- Python
- permutation
- 순열
- Kotlin
- 파이썬
- 뒤로가기
- 코테
- 백준
Archives
- Today
- Total
목록굴리기 (1)
황소개발자
백준 14499 파이썬 python : 주사위 굴리기 @@황소처럼 우직하게@@ 깔끔하게 풀기
import sys input = sys.stdin.readline mat = [] n, m, y, x, k = map(int, input().split()) for i in range(n): mat.append(list(map(int, input().split()))) orders = list(map(int, input().split())) class Dice: def __init__(self): self.west = 0 self.north = 0 self.east = 0 self.south = 0 self.up = 0 self.down = 0 def go_south(self): self.north, self.up, self.south, self.down = self.down, self.north, s..
백준 문제 풀이
2020. 2. 26. 04:27