40分不是大小写求助错哪了QAQ
查看原帖
40分不是大小写求助错哪了QAQ
800905
S3146256792楼主2022/9/21 11:57

已经注意大小写了,还是40

#include <iostream>
using namespace std;

int main()
{
    int t1, t2, n;
    cin >> n;
    t1 = n * 5;//本地运行时间
    t2 = 11 + n * 3;// 洛谷运行时间
    if (t1 >= t2)
    cout << "Luogu" << endl;
    else cout << "Local" << endl;
    return 0;
}
2022/9/21 11:57
加载中...