全部评论 4

  • #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int n;
        cin>>n;
        if(n==1){
            cout<<"AC"<<endl;
        }if(n==2){
            cout<<"Wrong Answer"<<endl;
        }if(n==3){
            while(1){
                continue;
                cout<<"TLE"<<endl;
            }
        }if(n==4){
            vector<string> lst;
            cout<<lst[114514]<<endl;
            cout<<"RE"<<endl;
        }if(n==5){
            vector<string> lst;
            while(1){
    lst.push_back(string(1919810,'MLE'));
            }
                cout<<"MLE"<<endl;
            
        }if(n==6){
            cout<<"P E"<<endl;
        }if(n==7){
            while(1){
                cout<<"OLEOLEOLE"<<endl;
            }
        }
        return 0;
    }
    

    2025-05-11 来自 上海

    0
  • n = input()
    if n == '1': print('AC')
    if n == '2': print('WA')
    if n == '3':
        print('TLE')
    if n == '4':
        print('RE')
    if n == '5':
        print('MLE')
    if n == '6': print('PE')
    if n == '7':
        print('OLE')
    

    2025-02-09 来自 上海

    0
    • 2025-02-09 来自 广东

      0
    • 看看这个:

      #include<bits/stdc++.h>
      using namespace std;
      int main(){
          int n;
          cin>>n;
          if(n==1){
              cout<<"AC"<<endl;
          }if(n==2){
              cout<<"Wrong Answer"<<endl;
          }if(n==3){
              while(1){
                  continue;
                  cout<<"TLE"<<endl;
              }
          }if(n==4){
              vector<string> lst;
              cout<<lst[114514]<<endl;
              cout<<"RE"<<endl;
          }if(n==5){
              vector<string> lst;
              while(1){
      lst.push_back(string(1919810,'MLE'));
              }
                  cout<<"MLE"<<endl;
              
          }if(n==6){
              cout<<"P E"<<endl;
          }if(n==7){
              while(1){
                  cout<<"OLEOLEOLE"<<endl;
              }
          }
          return 0;
      }
      

      2025-05-11 来自 上海

      1
    • C++版

      2025-05-11 来自 上海

      0
  • 2024-08-08 来自 湖南

    0
  • 2024-08-06 来自 湖南

    0

热门讨论