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 |
Tags
- 프로그래머스 파이썬
- ChatGPT
- gs25
- SW Expert Academy
- 우분투
- 더현대서울 맛집
- 자연어처리
- Docker
- 캐치카페
- 데이콘
- PYTHON
- 금융문자분석경진대회
- ubuntu
- leetcode
- dacon
- Kaggle
- 파이썬
- 프로그래머스
- programmers
- hackerrank
- 코로나19
- 맥북
- AI 경진대회
- Git
- Baekjoon
- Real or Not? NLP with Disaster Tweets
- 편스토랑 우승상품
- 편스토랑
- github
- 백준
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



SOMJANG/CODINGTEST_PRACTICE
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'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 |