已经注意大小写了,还是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; }