2 条题解

  • 1
    @ 2023-3-19 14:18:33

    #include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; int shen; shen=n%m; n-=shen; cout<<n/m<<" "<<shen; return 0; }

    • -1
      @ 2022-10-29 11:23:34
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      int n,m;
      cin>>n>>m;
      int shen;
      shen=n%m;
      n-=shen;
      cout<<n/m<<" "<<shen;
      	return 0;
      	}
      
      
      • 1

      信息

      ID
      308
      时间
      1000ms
      内存
      16MiB
      难度
      2
      标签
      递交数
      112
      已通过
      67
      上传者