Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- AI 경진대회
- 우분투
- 편스토랑 우승상품
- Baekjoon
- 프로그래머스
- 금융문자분석경진대회
- dacon
- 맥북
- 편스토랑
- Kaggle
- 자연어처리
- github
- PYTHON
- gs25
- Git
- Docker
- 파이썬
- 데이콘
- 더현대서울 맛집
- 코로나19
- Real or Not? NLP with Disaster Tweets
- hackerrank
- 백준
- 프로그래머스 파이썬
- ubuntu
- ChatGPT
- 캐치카페
- SW Expert Academy
- programmers
- leetcode
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 372. Super Pow (Python) 본문
728x90
반응형
Your task is to calculate ab mod 1337 where a is a positive integer and b is an extremely large positive integer given in the form of an array.
Example 1:
Input: a = 2, b = [3]
Output: 8
Example 2:
Input: a = 2, b = [1,0]
Output: 1024
Solution
class Solution:
def superPow(self, a: int, b: List[int]) -> int:
answer = 1
for b_val in b[::-1]:
answer = answer * a ** b_val % 1337
a = pow(a, 10) % 1337
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 9. Palindrome Number (Python) (0) | 2020.07.18 |
---|---|
[leetCode] 819. Most Common Word (Python) (0) | 2020.07.17 |
[leetCode] 371. Sum of Two Integers (Python) (0) | 2020.07.14 |
[leetCode] 1. Two Sum (Python) (0) | 2020.07.13 |
[leetCode] 231. Power of Two (Python) (0) | 2020.07.12 |
Comments