# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
83698 | jvalsortav | Geppetto (COCI15_geppetto) | C++14 | 1087 ms | 25708 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <cctype>
#include <ctime>
#include <set>
#include <string>
#include <map>
using namespace std;
int n, m, x, y, a[800];
long long c = 1, r;
set <long long> s;
int bin (long long b, int e){
int i = 1;
while(b){
if(i == e){
if (b%2){
return 1;
}
else{
return 0;
}
}
b /= 2;
i++;
}
}
int main() {
cin >> n;
c = c*(2<<(n-1));
cout << c << endl;
cin >> m;
for (int i = 0; i < 2*m; i += 2){
cin >> x;
cin >> y;
for (long long j = 0; j < c; j++){
if (bin(j, x) and bin(j, y)){
cout << j << endl;
s.insert(j);
}
}
}
cout << c - s.size();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |