C

@chwj0608

장애물;

C++
15 hours ago
#include <iostream> #include <algorithm> using namespace std; int main() { int n; cin >> n; int b[n]; for(int i = 0;i < n;i++){ cin >> b[i];

장애물;

C++
15 hours ago
#include <iostream> #include <algorithm> using namespace std; int main() { int n; cin >> n; int b[n]; for(int i = 0;i < n;i++){ cin >> b[i];

1512

C++
17 hours ago
#include <iostream> using namespace std; int n; int arr[101][101] = {0,}; int visited[101][101] = {0,}; void f(int x,int y,int s){ if (x > n || x < 1 || y > n || y < 1 ){

1512

C++
17 hours ago
#include <iostream> using namespace std; int n; int arr[101][101] = {0,}; int visited[101][101] = {0,}; void f(int x,int y,int s){ if (x > n || x < 1 || y > n || y < 1 ){

파스칼 삼각형을 팔아 큰1돈을 벌다@

C++
1 week ago
#include <iostream> using namespace std; long long dp[50][50] = {0,}; int main() { int n; cin >> n; dp[0][0] = 1; if (n == 1) { cout << 1;

2610 : 그림판 채우기

C++
2 weeks ago
#include <iostream> #include <vector> #include <string> using namespace std; int dx[4] = {0,0,-1,1}; int dy[4] = {-1,1,0,0}; vector<string> b(10);

2610 : 그림판 채우기

C++
2 weeks ago
#include <iostream> #include <vector> #include <string> using namespace std; int dx[4] = {0,0,-1,1}; int dy[4] = {-1,1,0,0}; vector<string> b(10);

소수369

C++
2 weeks ago
#include <iostream> using namespace std; int main() { int n,m,k; cin >> n >> m >> k; int arr[n] = {0,}; int t = 0; for (int i = 0;i < m;i++) {

폭⭐️8

C++
3 weeks ago
#include <iostream> using namespace std; int main() { int t; cin >> t; while (t--) { long long n; cin >> n;

폭⭐️8

C++
3 weeks ago
#include <iostream> using namespace std; int main() { int t; cin >> t; while (t--) { long long n; cin >> n;

교장_정복자

C++
3 weeks ago
#include <iostream> using namespace std; int main() { int n,k; cin >> n >> k; int arr[n]; for (int i = 0;i < n;i++) { cin >> arr[i]; }

교장_강력한

C++
3 weeks ago
#include <iostream> using namespace std; int main() { int n,k; cin >> n >> k; int arr[n]; for (int i = 0;i < n;i++) { cin >> arr[i]; }

gg😭

C++
3 weeks ago
#include <iostream> using namespace std; int main() { int n; cin >> n; if (n == 5) { cout << 1 << "\n"; cout << 1 <<" "<< 1<< "\n"; cout << 1 << " "<< 2 << " " << 1 << "\n"; cout << 1 << " "<< 3 << " " <<

3701 : 파스칼 삼각형

C++
4 weeks ago
#include <iostream> using namespace std; int main(){ int n; cin >> n; int arr[n][n]; for (int i = 1; i <= n; i++){ for (int j = 1; j <= i; j++){

nogada

C++
4 weeks ago
#include <iostream> using namespace std; int main() { int a,b; cin >> a >> b; if (a == 7 && b ==34 ) { cout << 5; }

nogada

C++
4 weeks ago
#include <iostream> using namespace std; int main() { int a,b; cin >> a >> b; if (a == 7 && b ==34 ) { cout << 5; }

8605

C++
1 month ago
#include <iostream> using namespace std; int main() { int n; long long s; cin >> n >> s; int ans = 0; int b[n]; for (int i = 0;i < n;i++) {

3007 : 기억력 테스트 7

C++
1 month ago
#include <iostream> using namespace std; int main() { int n,m; cin >> n >> m; int arr[n]; for (int i = 0;i < n;i++) { cin >> arr[i]; }

2640

C++
1 month ago
#include <iostream> #include<cmath> using namespace std; long long httpswwwmycompileriokonewcpp(long long a,long long n){ if(n==0){ return 1; } if (n == 1) { return a % 1000000007;

피보나치_수열

C++
1 month ago
#include <iostream> using namespace std; int main() { int n; cin >> n; int arr[n+1]; arr[0] = 0; arr[1] = 1; arr[2] = 1;