我是新手。。。。但这题太。。。。

P1150 Peter 的烟

豪气冲天 @ 2017-02-18 13:48:53

可以自己模拟一下。。。

。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 答案来了。。

。 。 。 。 。

#include<iostream>
using namespace std;
int main()
{
    int n,k,tou,ans;
    cin>>n>>k;
    ans=n;
    while(n>0)
    {
        n--;
        tou++;
        if(tou==k)
        {
            n++;
            tou=0;
            ans++;
        }
    }
    cout<<ans;
    return 0;
}

by Darker @ 2017-02-20 13:31:13

tou 应该初始化为 0;正解如下:

#include<iostream>
using namespace std;
int main()
{
    int n=0,k=0,tou=0,ans=0;
    cin>>n>>k;
    ans=n;
    while(n>0)
    {
        n--;
        tou++;
        if(tou==k)
        {
            n++;
            tou=0;
            ans++;
        }
    }
    cout<<ans;
    return 0;
}

by 盐汽水泡面 @ 2017-03-14 13:03:22

Var
a,b,c:int64; 
begin         //老板,来包玉溪!
read(a,b);   //饭后一包烟,赛过活神仙
c:=a div b;  //看起来是需要切肺手术了
a:=a+c;       //让他的肺坏了
write(a);    //顶他的肺
end.         //全是焦油,肺癌晚期

by wabcy @ 2017-04-01 11:42:30

@FSA003 注解666


by 中2少年雷耶斯 @ 2017-04-16 20:07:48

@FSA003 神奇的注释


by 盐汽水泡面 @ 2017-04-20 21:47:54

@magooli 迷之注解


by 盐汽水泡面 @ 2017-04-21 19:26:52

@magooli 看不懂吗


by 中2少年雷耶斯 @ 2017-04-21 21:42:07

@FSA003 what???


|