과제 안 내신 분?
2023. 1. 28. 23:33ㆍ개인공부/코딩테스트
5597번: 과제 안 내신 분..? (acmicpc.net)
오랜만에 비트 연산자를 활용했다.
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
|
#include <iostream>
using namespace std;
int main()
{
unsigned int Bit = 0;
int StudentNumber = 0;
for (int i = 0; i < 28; ++i)
{
cin >> StudentNumber;
Bit = Bit | (1 << (StudentNumber - 1));
}
for (int i = 0; i < 30; ++i)
{
if ((Bit & (1 << i)) == 0)
{
cout << i + 1 << endl;
}
}
return 0;
}
|
cs |