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 | 29 | 30 |
Tags
- dispatchqueue
- 네트워크
- swift concurrency
- 멋쟁이사자처럼
- SwiftUI
- 문법
- 영남대
- 위젯킷
- uikit
- 백준
- 대외활동
- 스유
- Swift
- 웹
- 리액트
- widgetkit
- cs
- 알고리즘
- 멋사
- widget
- 1일1알골
- 컴퓨터그래픽스
- c++
- TCA
- 운영체제
- 스위프트
- Protocol
- spritekit
- composable architecture
- 후기
Archives
- Today
- Total
목록10816 (1)
맛동산이
(백준 10816 c++) 숫자카드 2
문제 https://www.acmicpc.net/problem/10816 10816번: 숫자 카드 2 첫째 줄에 상근이가 가지고 있는 숫자 카드의 개수 N(1 ≤ N ≤ 500,000)이 주어진다. 둘째 줄에는 숫자 카드에 적혀있는 정수가 주어진다. 숫자 카드에 적혀있는 수는 -10,000,000보다 크거나 같고, 10, www.acmicpc.net 정답코드 #include #include #include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); int n, m; cin >> n; int number1, number2; vector arr1; for (int a = 0; a < n; a++)..
알고리즘/백준
2022. 7. 7. 16:38