2010年9月17日 星期五

ACM 11150 - Cola

#include <stdio.h>

int main()
{
int n;
while (scanf("%d", &n) == 1)
{
int total = n, recode;
for (;n > 2;)
{
total += n / 3;
recode = n / 3;
n = (n % 3 + recode);
}
if (n == 2) total ++;
printf("%d\n", total);
}
return 0;
}


回目錄
回首頁

沒有留言 :

張貼留言

Related Posts Plugin for WordPress, Blogger...