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

def can_you_add_this(num1, num2): return num1 + num2 if __name__ == "__main__": for _ in range(int(input())): num1, num2 = map(int, input().split()) print(can_you_add_this(num1, num2)) 코딩 1일 1문제! 오늘의 문제는 백준의 Can you add this? 입니다. 7891번: Can you add this? The input contains several test cases. The first line contains and integer t (t ≤ 100) denoting the number of test cases. Then t tests follow,..
Programming/코딩 1일 1문제
2022. 8. 9. 06:47
반응형