Notice
Recent Posts
Recent Comments
Link
«   2025/10   »
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
Archives
Today
Total
관리 메뉴

코딩로그

[백준/BOJ/C++] 15802번 타노스 본문

YJ/C++

[백준/BOJ/C++] 15802번 타노스

Team DAON 2021. 10. 26. 14:46

[문제]

이 일이 끝나면 인류의 절반은 살아남을 것이다.

타노스가 당신 앞에 나타났다.

당신은 살아남을 수 있을까?

 

[입력]

이 문제는 입력이 주어지지 않는다.

 

[출력]

당신이 살아남는다면 1을, 살아남지 못한다면 0을 출력한다.

 

[Source Code]

#include <stdio.h>
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <sstream>
using namespace std;


int main() {
    cout << "0";
}