记录编号 | 512262 | 评测结果 | A | ||
---|---|---|---|---|---|
题目名称 | 简单的数论题 | 最终得分 | 100 | ||
用户昵称 | 观、一世沧桑如画 | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.000 s | ||
提交时间 | 2018-10-02 19:30:52 | 内存使用 | 0.00 MiB | ||
#include <cstdio> typedef long long int ll; int Main() { freopen("easy-math.in","r",stdin); freopen("easy-math.out","w",stdout); ll n,k;scanf("%lld%lld",&n,&k); printf("%lld\n",n/k); fclose(stdin);fclose(stdout); return 0; } int haha=Main(); int main(){;}