Problem1212--水题

1212: 水题

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

hx073269认为做水题就是在浪费时间,所以他并不打算给你很复杂的故事背景,你只需要复制下面的代码并提交即可通过此题。


#include<stdio.h>
 
long long f(long long n)
{
    if (n<20180001)return n+2017;
    return f(f(n-2018));
}
int main()
{
    long long n;
    scanf("%lld",&n);
    printf("%lld\n",f(n));
    return 0;
}

Input

输入一个整数n(1<=n<=10^18)

Output

输出一个整数表示答案

Sample Input Copy

20182017

Sample Output Copy

20182017

HINT

不会真的有人直接复制提交吧

Source/Category