日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

康复题21

發(fā)布時(shí)間:2023/12/3 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 康复题21 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

For a positive integer n let's define a function f:

f(n)?=??-?1?+?2?-?3?+?..?+?(?-?1)nn

Your task is to calculate f(n) for a given integer n.

Input

The single line contains the positive integer n (1?≤?n?≤?1015).

Output

Print f(n) in a single line.

Examples

Input

4

Output

2

Input

5

Output

-3

Note

f(4)?=??-?1?+?2?-?3?+?4?=?2

f(5)?=??-?1?+?2?-?3?+?4?-?5?=??-?3

問題分析;注意n很大要用long long int,利用等差數(shù)列求和公式

AC代碼:

#include<iostream> using namespace std; int main() {long long int n,a,b,c;while (cin >> n){if (n % 2 == 0){c = n / 2;a = c * 2 + c * (c - 1);b = c + c * (c - 1);cout << a - b << endl;}else{c = (n - 1) / 2;a = c * 2 + c * (c - 1);b = c + c * (c - 1)+n;cout << a - b << endl;}} }

?

總結(jié)

以上是生活随笔為你收集整理的康复题21的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。