[ZJ]b681: 高中組第一題-山洞探險

題目:
http://zerojudge.tw/ShowProblem?problemid=b681

----------------------------------------------------------------------------------------

#include<cstdio>
int main(void)
{
long long int L;
while(scanf("%lld",&L)!=EOF)
{
printf("%lld\n",(L>0)?L*2-1:L*2*-1);
}
return 0;
}

留言

這個網誌中的熱門文章

[ZJ]b513: 判斷質數-商競103

[ZJ]d212: 東東爬階梯