| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143591 | 丁陆永新 | 07苹果和虫子 | C++ | Wrong Answer | 0 MS | 272 KB | 185 | 2026-01-17 10:20:04 |
#include<iostream> using namespace std; int main() { int n,x,y; cin>>n>>x>>y; if(y/x>=15) cout<<0; else if(y%x>0) cout<<15-y/x-1; else cout<<15-y/x; return 0; }
------Input------
389 1 24
------Answer-----
365
------Your output-----
0