Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
135459 周宸宇 14小鱼游泳 C++ Wrong Answer 1 MS 272 KB 468 2025-11-03 18:26:08

Tests(1/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int x,n; cin>>x>>n; if(x==5) cout<<250*(n-n/7*2-2); else{ if(x==4) cout<<250*(n-n/7*2-1); else cout<<250*(n-n/7*2); } return 0; }


Run Info:

------Input------
2 47
------Answer-----
8500
------Your output-----
8750