일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- ctf-d
- 써니나타스
- crack
- Reversing
- 리버싱핵심원리
- ZIP
- upx
- 파일해시생성
- K-shield Jr 10기
- Autoware
- SW에듀서포터즈
- CodeEngn
- Interceptor
- shadow
- Android
- Multimedia
- 케쉴주
- John the ripper
- K-sheild Jr
- 디스크
- 모바일프로그래밍
- disk
- tar
- Mobile
- 침해사고대응
- 포렌식
- swing
- Frida
- 안티디버깅
Archives
- Today
- Total
물먹는산세베리아
[BOJ] 2775번: 부녀회장이 될테야 본문
#include <iostream>
using namespace std;
int main() {
int answer = 0;
int test;
cin >> test;
int* k = new int[test];
int* n = new int[test];
//int a[14] = { 1,2,3,4,5,6,7,8,9,10,11,12,13,14 };
for (int i = 0; i < test; i++) {
cin >> k[i];
cin >> n[i];
}
for (int i = 0; i < test; i++) {
int a[14] = { 1,2,3,4,5,6,7,8,9,10,11,12,13,14 };
for (int j = 0; j < k[i]; j++) {
answer = 0;
for (int m = 0; m < n[i]; m++) {
answer += a[m];
//cout << "answer=" << answer << endl;
a[m] = answer;
/*for (int h = 0; h < 14; h++) {
cout << a[h] << " ";
}*/
}
}
cout << answer<<endl;
}
return 0;
}
'Algorithm > 백준' 카테고리의 다른 글
[BOJ] 4153번: 직사각형 C++ (0) | 2021.02.28 |
---|---|
[BOJ] 1085번: 직사각형에서 탈출 (0) | 2021.02.23 |
[BOJ]1193번: 분수찾기 (0) | 2021.02.15 |