백준 16394번 : 홍익대학교

M1ndCon·2024년 7월 4일
0

Algorithm

목록 보기
19/32

  • Solved.ac 기준 : 브론즈 5
  • 사용언어 C++

문제 해석 및 풀이

  • n - 1946하면 되는 쉬운 문제
#include <iostream>
using namespace std;

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

    int n;

    cin >> n;

    cout << n - 1946;

    return 0;
}
profile
게임 개발자 지망생

0개의 댓글