작성일 :

문제 링크

26772번 - Poziome serca

설명

간단한 구현 문제입니다.

문제에 나타나 있는 하트 모양 문자열을 입력으로 주어지는 n 개 만큼 가로로 출력합니다.

주의해야 할 점은 하트와 하트 사이가 반드시 1개의 공백으로 구분되어져야 된다는 점 입니다.

또한, C# 으로 풀이할 시 StringBuilder 를 사용하지 않으면 시간 초과가 됩니다.


Code

[ C# ]

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
32
33
namespace Solution {
  class Program {
    static void Main(string[] args) {

      string[] heart = {
        " @@@   @@@ ",
        "@   @ @   @",
        "@    @    @",
        "@         @",
        " @       @ ",
        "  @     @  ",
        "   @   @   ",
        "    @ @    ",
        "     @     "
      };

      var sb = new System.Text.StringBuilder();

      var n = int.Parse(Console.ReadLine()!);

      for (var i = 0; i < 9; i++) {
        for (var j = 0; j < n; j++) {
          sb.Append(heart[i]);
          if (j != n - 1) sb.Append(" ");
        }
        sb.AppendLine();
      }

      Console.Write(sb.ToString());

    }
  }
}



[ C++ ]

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
32
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  const string heart[9] = {
    " @@@   @@@ ",
    "@   @ @   @",
    "@    @    @",
    "@         @",
    " @       @ ",
    "  @     @  ",
    "   @   @   ",
    "    @ @    ",
    "     @     "
  };

  int n; cin >> n;

  for (int i = 0; i < 9; i++) {
    for (int j = 0; j < n; j++) {
      cout << heart[i];
      if (j != n - 1) cout << " ";
    }
    cout << "\n";
  }

  return 0;
}