Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 일상
- 타입스크립트
- 리덕스장바구니
- 협업
- Operating System
- error
- react-redux
- react
- 알고리즘
- web
- 기초100제
- CPU 스케줄링
- 정렬
- 분할메모리할당
- Spring
- Java
- memory
- 파이썬
- js to ts
- 스프링
- 토이프로젝트
- Redux
- 백준
- codeup
- OS
- 공부
- 자료구조
- 코드업
- 프로그래머스
- C++
Archives
- Today
- Total
감자튀김 공장🍟
[백준/15552] 빠른 A+B (with 파이썬) 본문
반응형
✔ 문제
✔ 풀이
import sys
T = int(input())
for _ in range(T):
a, b = map(int, sys.stdin.readline().split())
print(a+b)
✔ 후기
sys.stdin.readline().split()을 자동완성 도움 없이 썼더니 stdin() 이러고 있었다...
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[백준/11022] A+B - 8 (with 파이썬) (0) | 2022.10.03 |
---|---|
[백준/11021] A+B - 7 (with 파이썬) (0) | 2022.10.02 |
[백준/25304] 영수증 (with 파이썬) (0) | 2022.10.02 |
[백준/8393] 합 (with 파이썬) (0) | 2022.10.01 |
[백준/10950] A+B - 3 (with 파이썬) (0) | 2022.10.01 |
Comments