2 条题解

  • 1
    @ 2023-10-22 12:38:27
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int n;
        cin>>n;
        if (n * 5 > n * 3 + 11)
        {
            cout<<"Luogu";
        }
        else
        {
            cout<<"Local";
        }
        return 0;
    }
    
    • 0
      @ 2024-4-26 17:59:16
      #include <bits/stdc++.h>
      using namespace std;
      long long x;
      int main() {
      	cin>>x;
      	if ((x*5)<(11+x*3)) cout<<"Local";
      	else cout<<"Luogu";
      	return 0;
      }
      
      • 1

      信息

      ID
      4635
      时间
      1000ms
      内存
      125MiB
      难度
      1
      标签
      (无)
      递交数
      33
      已通过
      25
      上传者