Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
74726 sh25_shenpy 带余除法 C++ 通过 1 MS 244 KB 171 2025-11-30 22:30:05

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main( ) { int n,i,p,j; cin>>n>>i; j=int(1.0*n/i); p=n-i*j; cout<<j<<" "<<p; return 0; }


测评信息: