18 条题解

  • -1
    @ 2025-2-14 10:55:26

    #include<bits/stdc++.h> using namespace std; int main(){ int n,x,y; cin>>n>>x>>y; if(y%x==0){ cout<<n-y/x; } else cout<<n-(y/x+1); return 0; }

    信息

    ID
    2129
    时间
    1000ms
    内存
    256MiB
    难度
    1
    标签
    递交数
    1156
    已通过
    549
    上传者