5 solutions
-
0
Guest MOD
- 1
Information
- ID
- 410
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 4
- Tags
- (None)
- # Submissions
- 113
- Accepted
- 52
- Uploaded By
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int luogu=11+n3; int bendi=5n; if(luogu>bendi){ cout<<"Local"; } else{ cout<<"Luogu"; } return 0; }
#include<bits/stdc++.h>
#define int long long
using namespace std;
int n,a,b;
signed main() {
cin>>n;
a=n*5;
b=n*3+11;
if(a<b){
cout<<"Local";
}else{
cout<<"Luogu";
}
return 0;
}
`#include<bits/stdc++.h> #define int long long using namespace std;
int n,a,b;
signed main() { cin>>n; a=n5; b=n3+11; if(a<b){ cout<<"Local"; }else{ cout<<"Luogu"; } return 0; }`
#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; }
6
foo.cc:6:19: error: stray '' in program 6 | int luogu=11+n*3; | ^ foo.cc:7:16: error: stray '' in program 7 | int bendi=5*n; | ^
0分
By signing up a Hydro universal account, you can submit code and join discussions in all online judging services provided by us.