Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
107374 | 陈铎文 | 14小鱼游泳 | C++ | Wrong Answer | 1 MS | 268 KB | 269 | 2025-01-17 15:37:56 |
#include<iostream> using namespace std; int main(){ int n,m,s=0; cin>>n>>m; for(int i=1;i<=m;i++){ n%=8; if(n>=6){ continue; } else{ s+=250; } } cout<<s; return 0; }
------Input------
5 52
------Answer-----
9000
------Your output-----
13000