작성일 :

문제 링크

25642번 - 젓가락 게임

설명

간단한 시뮬레이션 및 구현 문제입니다.

문제에서 주어진 게임의 진행 과정 에 따라서 시뮬레이션을 구현합니다.

문제의 게임 진행과정 설명은 다소 딱딱하게 설명되어 있지만,
문제의 제목처럼, 어렸을 때 친구들과 즐겨 했던 젓가락 게임 을 연상하시면 쉽게 이해가 가능합니다.


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

      string[]? input = Console.ReadLine()?.Split();

      int.TryParse(input![0], out int a);
      int.TryParse(input![1], out int b);

      while (true) {
        b += a;
        if (b >= 5) {
          Console.WriteLine("yt");
          return ;
        }

        a += b;
        if (a >= 5) {
          Console.WriteLine("yj");
          return ;
        }
      }

    }
  }
}



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

using namespace std;

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

  int a, b; cin >> a >> b;

  while (true) {
    b += a;
    if (b >= 5) {
      cout << "yt\n"; return 0;
    }

    a += b;
    if (a >= 5) {
      cout << "yj\n"; return 0;
    }
  }

  return 0;
}