[[TableOfContents]] = 오늘의 문제 = * [http://www.acmicpc.net/problem/1932|숫자 삼각형] = 참가자 = * 박인서 * 15이원준 = 코드 = == 15이원준 == {{{ #include #include #include using namespace std; int main(){ vector in; vector vec; int N; scanf("%d", &N); int size; size = N * (N + 1) / 2; for(int i = 0; i #include int a[501][501], dp[501][501]; int main() { int n; std::cin >> n; for (int i = 0; i> a[i][j]; } } dp[0][0] = a[0][0]; for (int i = 1; i