avatar

目录
题解 P5713 【【深基3.例5】洛谷团队系统】

按照题意计算即可。

在洛谷上花的时间为 $11 + 3 \times n$,在本地花的时间为 $5 \times n$,比较两个式子的值即可。

代码:

cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include<bits/stdc++.h>
using namespace std;

int main(){
int n;
cin>>n;
int luogu=11+n*3;
int bendi=5*n;
if(luogu>bendi){
cout<<"Local";
}else{
cout<<"Luogu";
}
return 0;
}

文章作者: lianjiaming
文章链接: http://lianjiaming.github.io/2020/03/16/solution-P5713/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Jimmy_Lian的博客

评论