1 条题解

  • 0
    @ 2024-1-26 16:25:56

    #include<bits/stdc++.h> using namespace std; int main(){ double a,b; int cnt=1; cin>>a>>b; while(cnt*b<=a){ cnt++; } if((cnt-1)*b==a){ cout<<0; } else{ cout<<a-(cnt-1)*b; } return 0;

    }

    • 1

    信息

    ID
    30
    时间
    1000ms
    内存
    128MiB
    难度
    9
    标签
    (无)
    递交数
    13
    已通过
    5
    上传者