Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
109554 陈奕涵 11整数的除法 C++ Accepted 1 MS 208 KB 143 2025-02-09 14:57:37

Tests(10/10):


Code:

#include<cstdio> using namespace std; int main(){ int n,m; scanf("%d%d",&n,&m); printf("%d %d",(n/m),(n%m)); return 0; }