본문 바로가기

Algorithm

C++(씨쁠쁠)(cplusplus)-백준(baekjoon)(BaekJoon)코딩 13701번:중복 제거 답

반응형
1
2
3
4
5
6
7
8
9
10
11
#include<iostream>
using namespace std;
int main() {
    int a[<< 20= { }, t;
    while (~scanf("%d"&t)) {
        if (!((a[t / 32>> (t % 32)) & 1)) {
            printf("%d ", t);
            a[t / 32+= << (t % 32);
        }
    }
}
cs