Post

[D2] 간단한 369게임 - 1926

[D2] 간단한 369게임 - 1926

문제 링크

문제 링크

성능 요약

메모리: 13,372 KB, 시간: 8 ms

코드길이: 425 Bytes

출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do

코드

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
34
35
#include <iostream>
#include<algorithm>
#include<vector>
#include<string>

using namespace std;


int main(int argc, char** argv)
{
	int n;
	cin >> n;

	for (int i = 1; i < n + 1; i++)
	{
		int a = i;
		int cnt = 0;
		while (a) {
			int b = a % 10;
			a /= 10;
			if (b == 3 || b == 6 || b == 9) cnt++;
		}
		if (cnt) {
			while (cnt--)
				cout << "-";

			cout << " ";
		}
		else {
			cout << i << " ";
		}
	}

	return 0;
}
This post is licensed under CC BY 4.0 by the author.