일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Attention Is All You Need 리뷰
- ImageNet Classification with Deep ConvolutionalNeural Networks 리뷰
- NLP 논문 리뷰
- Multi Task Learning Objectives for Natural Language Processing 리뷰
- BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding 논문리뷰
- Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer
- Evaluate Multiwoz
- 다양한 모듈에서 log쓰기
- TOD 논문리뷰
- BERT 사용방법
- 길찾기
- Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer 리뷰
- BERT란
- 바닥부터 배우는 강화 학습
- CNN 논문리뷰
- UBAR: Towards Fully End-to-End Task-Oriented Dialog System with GPT-2
- Zero-shot Generalization in Dialog State Tracking through GenerativeQuestion Answering
- 뉴텝스 400
- The Natural Language Decathlon:Multitask Learning as Question Answering
- T5 논문 리뷰
- MMTOD
- Multi Task Learning Objectives for Natural Language Processing
- RuntimeError: DataLoader worker (pid(s) ) exited unexpectedly
- attention 설명
- 정책기반 agent
- BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding 리뷰
- hugging face tokenizer에서 special case 추가하기
- BART 논문리뷰
- Attention Is All You Need
- A Neural Attention Model for Abstractive Sentence Summarization
Archives
- Today
- Total
one by one ◼◻◼◻
백준 1009, 분산처리 본문
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import sys
N = int(sys.stdin.readline())
for _ in range(N):
items = list(map(int, sys.stdin.readline().split()))
a,b = items[0]%10, items[1]
temp = a
last_part = [a]
if a == 0:
print(10)
continue
while True:
temp*= a
if len(last_part)!=1 and temp%10 == a:
break
else:
last_part.append(temp%10)
loop_len = len(last_part)
print(last_part[b%loop_len-1])
|
cs |
'코딩문제' 카테고리의 다른 글
백준 2667 단지번호 붙이기 (0) | 2022.06.16 |
---|---|
백준 2178 , 미로탐색 (0) | 2022.06.16 |
정수 삼각형 (코딩테스트 연습동적계획법(Dynamic Programming)) (0) | 2022.06.10 |
베스트 앨범(코딩테스트 연습-해시) (0) | 2022.06.10 |
위장 (프로그래머스 코딩테스트 연습-해시) (0) | 2022.06.10 |
Comments