Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
9259 顾郁铭 小鱼的航程(改进版) C++ 解答错误 50 2 MS 256 KB 235 2020-11-10 20:08:46

Tests(2/4):


#include<bits/stdc++.h> using namespace std; int x,n,day,ans; int main(){ cin>>x>>n; for(int i=x;i<=x+n;i++){ //判断是否为周末 if(i%7==6 || i%7==0) i++; else day++; } ans=day*250; cout<<ans; return 0; }


测评信息: