Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
98551 | 刘子锐 | 07苹果和虫子 | C++ | Wrong Answer | 0 MS | 272 KB | 156 | 2024-11-23 11:28:42 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int x; cin>>x; int y; cin>>y; cout<<n-y/x-y%x; return 0; }
------Input------
453 8 30
------Answer-----
449
------Your output-----
444