[백준/BOJ] 백준 7287번 : 등록

2020. 11. 6. 19:42알고리즘 문제풀이

www.acmicpc.net/problem/7287

 

7287번: 등록

첫 줄에 자신이 맞은 문제의 수, 둘째 줄에 아이디를 출력한다.

www.acmicpc.net

자신이 맞은 문제의 수와, 자신의 아이디를 출력

 

코드

#include <iostream>
#include <algorithm>
using namespace std;

int main()
{
	cin.tie(NULL);
	ios_base::sync_with_stdio(false);

	cout << 271 << "\n"; //맞은 문제 수 출력
	cout << "geniusjo16" << "\n"; //아이디 출력

	return 0;
}